@seamapi/types 1.787.0 → 1.788.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 +2 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +2 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -2
- package/src/lib/seam/connect/route-types.ts +1 -1
|
@@ -66379,7 +66379,7 @@ export type Routes = {
|
|
|
66379
66379
|
created_before?: Date | undefined;
|
|
66380
66380
|
/** Timestamp by which to limit returned reservations. Returns reservations created after this timestamp. */
|
|
66381
66381
|
created_after?: Date | undefined;
|
|
66382
|
-
/** Lower and upper timestamps to
|
|
66382
|
+
/** Lower and upper timestamps to filter reservations whose time range overlaps with the given interval. */
|
|
66383
66383
|
between?: (string | Date)[] | undefined;
|
|
66384
66384
|
/** 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. */
|
|
66385
66385
|
search?: string | undefined;
|
package/package.json
CHANGED
|
@@ -69054,7 +69054,7 @@ export default {
|
|
|
69054
69054
|
name: 'between',
|
|
69055
69055
|
schema: {
|
|
69056
69056
|
description:
|
|
69057
|
-
'Lower and upper timestamps to
|
|
69057
|
+
'Lower and upper timestamps to filter reservations whose time range overlaps with the given interval.',
|
|
69058
69058
|
items: {
|
|
69059
69059
|
oneOf: [
|
|
69060
69060
|
{ type: 'string' },
|
|
@@ -69323,7 +69323,7 @@ export default {
|
|
|
69323
69323
|
properties: {
|
|
69324
69324
|
between: {
|
|
69325
69325
|
description:
|
|
69326
|
-
'Lower and upper timestamps to
|
|
69326
|
+
'Lower and upper timestamps to filter reservations whose time range overlaps with the given interval.',
|
|
69327
69327
|
items: {
|
|
69328
69328
|
oneOf: [
|
|
69329
69329
|
{ type: 'string' },
|
|
@@ -78935,7 +78935,7 @@ export type Routes = {
|
|
|
78935
78935
|
created_before?: Date | undefined
|
|
78936
78936
|
/** Timestamp by which to limit returned reservations. Returns reservations created after this timestamp. */
|
|
78937
78937
|
created_after?: Date | undefined
|
|
78938
|
-
/** Lower and upper timestamps to
|
|
78938
|
+
/** Lower and upper timestamps to filter reservations whose time range overlaps with the given interval. */
|
|
78939
78939
|
between?: (string | Date)[] | undefined
|
|
78940
78940
|
/** 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. */
|
|
78941
78941
|
search?: string | undefined
|