Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70837,6 +70837,16 @@ const openapi: OpenAPISpec = {
type: 'string',
},
},
{
in: 'query',
name: 'connected_account_id',
schema: {
description:
'Filter reservations by the connected account whose connector discovered them.',
format: 'uuid',
type: 'string',
},
},
{
in: 'query',
name: 'limit',
Expand Down Expand Up @@ -71159,6 +71169,12 @@ const openapi: OpenAPISpec = {
minItems: 2,
type: 'array',
},
connected_account_id: {
description:
'Filter reservations by the connected account whose connector discovered them.',
format: 'uuid',
type: 'string',
},
created_after: {
description:
'Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.',
Expand Down
2 changes: 2 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80978,6 +80978,8 @@ export type Routes = {
space_key?: string | undefined
/** Filter reservations by space ID (UUID). */
space_id?: string | undefined
/** Filter reservations by the connected account whose connector discovered them. */
connected_account_id?: string | undefined
/** Maximum number of records to return per page. */
limit?: number
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
Expand Down
Loading