@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.
@@ -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 define an exclusive interval containing the reservations that you want to list. */
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.787.0",
3
+ "version": "1.788.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -69054,7 +69054,7 @@ export default {
69054
69054
  name: 'between',
69055
69055
  schema: {
69056
69056
  description:
69057
- 'Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.',
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 define an exclusive interval containing the reservations that you want to list.',
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 define an exclusive interval containing the reservations that you want to list. */
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