File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 },
Original file line number Diff line number Diff 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. */
You can’t perform that action at this time.
0 commit comments