@seamapi/types 1.608.0 → 1.609.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 +24 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +22 -0
- 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
|
@@ -59050,6 +59050,8 @@ export type Routes = {
|
|
|
59050
59050
|
limit?: number;
|
|
59051
59051
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
|
59052
59052
|
created_before?: Date | undefined;
|
|
59053
|
+
/** String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names. */
|
|
59054
|
+
search?: string | undefined;
|
|
59053
59055
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
59054
59056
|
page_cursor?: ((string | undefined) | null) | undefined;
|
|
59055
59057
|
};
|
package/package.json
CHANGED
|
@@ -53288,6 +53288,16 @@ export default {
|
|
|
53288
53288
|
type: 'string',
|
|
53289
53289
|
},
|
|
53290
53290
|
},
|
|
53291
|
+
{
|
|
53292
|
+
in: 'query',
|
|
53293
|
+
name: 'search',
|
|
53294
|
+
schema: {
|
|
53295
|
+
description:
|
|
53296
|
+
'String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names.',
|
|
53297
|
+
minLength: 1,
|
|
53298
|
+
type: 'string',
|
|
53299
|
+
},
|
|
53300
|
+
},
|
|
53291
53301
|
{
|
|
53292
53302
|
in: 'query',
|
|
53293
53303
|
name: 'page_cursor',
|
|
@@ -53409,6 +53419,12 @@ export default {
|
|
|
53409
53419
|
nullable: true,
|
|
53410
53420
|
type: 'string',
|
|
53411
53421
|
},
|
|
53422
|
+
search: {
|
|
53423
|
+
description:
|
|
53424
|
+
'String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names.',
|
|
53425
|
+
minLength: 1,
|
|
53426
|
+
type: 'string',
|
|
53427
|
+
},
|
|
53412
53428
|
space_id: {
|
|
53413
53429
|
description: 'Filter reservations by space ID (UUID).',
|
|
53414
53430
|
format: 'uuid',
|
|
@@ -70361,6 +70361,8 @@ export type Routes = {
|
|
|
70361
70361
|
limit?: number
|
|
70362
70362
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
|
70363
70363
|
created_before?: Date | undefined
|
|
70364
|
+
/** String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names. */
|
|
70365
|
+
search?: string | undefined
|
|
70364
70366
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
70365
70367
|
page_cursor?: ((string | undefined) | null) | undefined
|
|
70366
70368
|
}
|