@seamapi/types 1.904.0 → 1.905.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +15 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -80603,6 +80603,8 @@ export type Routes = {
|
|
|
80603
80603
|
space_id?: string | undefined;
|
|
80604
80604
|
/** Filter reservations by the connected account whose connector discovered them. */
|
|
80605
80605
|
connected_account_id?: string | undefined;
|
|
80606
|
+
/** Filter reservations by the guest user identity ID. */
|
|
80607
|
+
user_identity_id?: string | undefined;
|
|
80606
80608
|
/** Maximum number of records to return per page. */
|
|
80607
80609
|
limit?: number;
|
|
80608
80610
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
package/package.json
CHANGED
|
@@ -74377,6 +74377,15 @@ const openapi: OpenAPISpec = {
|
|
|
74377
74377
|
type: 'string',
|
|
74378
74378
|
},
|
|
74379
74379
|
},
|
|
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
|
+
},
|
|
74380
74389
|
{
|
|
74381
74390
|
in: 'query',
|
|
74382
74391
|
name: 'limit',
|
|
@@ -74751,6 +74760,12 @@ const openapi: OpenAPISpec = {
|
|
|
74751
74760
|
description: 'Filter reservations by space key.',
|
|
74752
74761
|
type: 'string',
|
|
74753
74762
|
},
|
|
74763
|
+
user_identity_id: {
|
|
74764
|
+
description:
|
|
74765
|
+
'Filter reservations by the guest user identity ID.',
|
|
74766
|
+
format: 'uuid',
|
|
74767
|
+
type: 'string',
|
|
74768
|
+
},
|
|
74754
74769
|
},
|
|
74755
74770
|
type: 'object',
|
|
74756
74771
|
},
|
|
@@ -96331,6 +96331,8 @@ export type Routes = {
|
|
|
96331
96331
|
space_id?: string | undefined
|
|
96332
96332
|
/** Filter reservations by the connected account whose connector discovered them. */
|
|
96333
96333
|
connected_account_id?: string | undefined
|
|
96334
|
+
/** Filter reservations by the guest user identity ID. */
|
|
96335
|
+
user_identity_id?: string | undefined
|
|
96334
96336
|
/** Maximum number of records to return per page. */
|
|
96335
96337
|
limit?: number
|
|
96336
96338
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|