@seamapi/types 1.845.0 → 1.846.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 +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -67731,6 +67731,8 @@ export type Routes = {
|
|
|
67731
67731
|
space_key?: string | undefined;
|
|
67732
67732
|
/** Filter reservations by space ID (UUID). */
|
|
67733
67733
|
space_id?: string | undefined;
|
|
67734
|
+
/** Filter reservations by the connected account whose connector discovered them. */
|
|
67735
|
+
connected_account_id?: string | undefined;
|
|
67734
67736
|
/** Maximum number of records to return per page. */
|
|
67735
67737
|
limit?: number;
|
|
67736
67738
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
package/package.json
CHANGED
|
@@ -70837,6 +70837,16 @@ const openapi: OpenAPISpec = {
|
|
|
70837
70837
|
type: 'string',
|
|
70838
70838
|
},
|
|
70839
70839
|
},
|
|
70840
|
+
{
|
|
70841
|
+
in: 'query',
|
|
70842
|
+
name: 'connected_account_id',
|
|
70843
|
+
schema: {
|
|
70844
|
+
description:
|
|
70845
|
+
'Filter reservations by the connected account whose connector discovered them.',
|
|
70846
|
+
format: 'uuid',
|
|
70847
|
+
type: 'string',
|
|
70848
|
+
},
|
|
70849
|
+
},
|
|
70840
70850
|
{
|
|
70841
70851
|
in: 'query',
|
|
70842
70852
|
name: 'limit',
|
|
@@ -71159,6 +71169,12 @@ const openapi: OpenAPISpec = {
|
|
|
71159
71169
|
minItems: 2,
|
|
71160
71170
|
type: 'array',
|
|
71161
71171
|
},
|
|
71172
|
+
connected_account_id: {
|
|
71173
|
+
description:
|
|
71174
|
+
'Filter reservations by the connected account whose connector discovered them.',
|
|
71175
|
+
format: 'uuid',
|
|
71176
|
+
type: 'string',
|
|
71177
|
+
},
|
|
71162
71178
|
created_after: {
|
|
71163
71179
|
description:
|
|
71164
71180
|
'Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.',
|
|
@@ -80978,6 +80978,8 @@ export type Routes = {
|
|
|
80978
80978
|
space_key?: string | undefined
|
|
80979
80979
|
/** Filter reservations by space ID (UUID). */
|
|
80980
80980
|
space_id?: string | undefined
|
|
80981
|
+
/** Filter reservations by the connected account whose connector discovered them. */
|
|
80982
|
+
connected_account_id?: string | undefined
|
|
80981
80983
|
/** Maximum number of records to return per page. */
|
|
80982
80984
|
limit?: number
|
|
80983
80985
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|