@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
|
@@ -65233,6 +65233,15 @@ const openapi = {
|
|
|
65233
65233
|
type: 'string',
|
|
65234
65234
|
},
|
|
65235
65235
|
},
|
|
65236
|
+
{
|
|
65237
|
+
in: 'query',
|
|
65238
|
+
name: 'connected_account_id',
|
|
65239
|
+
schema: {
|
|
65240
|
+
description: 'Filter reservations by the connected account whose connector discovered them.',
|
|
65241
|
+
format: 'uuid',
|
|
65242
|
+
type: 'string',
|
|
65243
|
+
},
|
|
65244
|
+
},
|
|
65236
65245
|
{
|
|
65237
65246
|
in: 'query',
|
|
65238
65247
|
name: 'limit',
|
|
@@ -65548,6 +65557,11 @@ const openapi = {
|
|
|
65548
65557
|
minItems: 2,
|
|
65549
65558
|
type: 'array',
|
|
65550
65559
|
},
|
|
65560
|
+
connected_account_id: {
|
|
65561
|
+
description: 'Filter reservations by the connected account whose connector discovered them.',
|
|
65562
|
+
format: 'uuid',
|
|
65563
|
+
type: 'string',
|
|
65564
|
+
},
|
|
65551
65565
|
created_after: {
|
|
65552
65566
|
description: 'Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.',
|
|
65553
65567
|
format: 'date-time',
|