Skip to content

Commit e936aa1

Browse files
committed
feat: Sync with Seam API via 56ee5485cca03bd728c12ea45aecd1ad40773ea3
1 parent 6db3978 commit e936aa1

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

src/lib/seam/connect/openapi.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74377,6 +74377,15 @@ const openapi: OpenAPISpec = {
7437774377
type: 'string',
7437874378
},
7437974379
},
74380+
{
74381+
in: 'query',
74382+
name: 'user_identity_id',
74383+
schema: {
74384+
description: 'Filter reservations by the guest user identity ID.',
74385+
format: 'uuid',
74386+
type: 'string',
74387+
},
74388+
},
7438074389
{
7438174390
in: 'query',
7438274391
name: 'limit',
@@ -74751,6 +74760,12 @@ const openapi: OpenAPISpec = {
7475174760
description: 'Filter reservations by space key.',
7475274761
type: 'string',
7475374762
},
74763+
user_identity_id: {
74764+
description:
74765+
'Filter reservations by the guest user identity ID.',
74766+
format: 'uuid',
74767+
type: 'string',
74768+
},
7475474769
},
7475574770
type: 'object',
7475674771
},

src/lib/seam/connect/route-types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96331,6 +96331,8 @@ export type Routes = {
9633196331
space_id?: string | undefined
9633296332
/** Filter reservations by the connected account whose connector discovered them. */
9633396333
connected_account_id?: string | undefined
96334+
/** Filter reservations by the guest user identity ID. */
96335+
user_identity_id?: string | undefined
9633496336
/** Maximum number of records to return per page. */
9633596337
limit?: number
9633696338
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */

0 commit comments

Comments
 (0)