@seamapi/types 1.786.0 → 1.787.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.
@@ -57990,6 +57990,9 @@ declare const _default: {
57990
57990
  default?: never;
57991
57991
  exclusiveMinimum?: never;
57992
57992
  minimum?: never;
57993
+ items?: never;
57994
+ maxItems?: never;
57995
+ minItems?: never;
57993
57996
  minLength?: never;
57994
57997
  nullable?: never;
57995
57998
  };
@@ -58003,6 +58006,9 @@ declare const _default: {
58003
58006
  default?: never;
58004
58007
  exclusiveMinimum?: never;
58005
58008
  minimum?: never;
58009
+ items?: never;
58010
+ maxItems?: never;
58011
+ minItems?: never;
58006
58012
  minLength?: never;
58007
58013
  nullable?: never;
58008
58014
  };
@@ -58016,6 +58022,33 @@ declare const _default: {
58016
58022
  minimum: number;
58017
58023
  type: string;
58018
58024
  format?: never;
58025
+ items?: never;
58026
+ maxItems?: never;
58027
+ minItems?: never;
58028
+ minLength?: never;
58029
+ nullable?: never;
58030
+ };
58031
+ } | {
58032
+ in: string;
58033
+ name: string;
58034
+ schema: {
58035
+ description: string;
58036
+ items: {
58037
+ oneOf: ({
58038
+ type: string;
58039
+ format?: never;
58040
+ } | {
58041
+ format: string;
58042
+ type: string;
58043
+ })[];
58044
+ };
58045
+ maxItems: number;
58046
+ minItems: number;
58047
+ type: string;
58048
+ format?: never;
58049
+ default?: never;
58050
+ exclusiveMinimum?: never;
58051
+ minimum?: never;
58019
58052
  minLength?: never;
58020
58053
  nullable?: never;
58021
58054
  };
@@ -58030,6 +58063,9 @@ declare const _default: {
58030
58063
  default?: never;
58031
58064
  exclusiveMinimum?: never;
58032
58065
  minimum?: never;
58066
+ items?: never;
58067
+ maxItems?: never;
58068
+ minItems?: never;
58033
58069
  nullable?: never;
58034
58070
  };
58035
58071
  } | {
@@ -58043,6 +58079,9 @@ declare const _default: {
58043
58079
  default?: never;
58044
58080
  exclusiveMinimum?: never;
58045
58081
  minimum?: never;
58082
+ items?: never;
58083
+ maxItems?: never;
58084
+ minItems?: never;
58046
58085
  minLength?: never;
58047
58086
  };
58048
58087
  })[];
@@ -58302,6 +58341,26 @@ declare const _default: {
58302
58341
  'application/json': {
58303
58342
  schema: {
58304
58343
  properties: {
58344
+ between: {
58345
+ description: string;
58346
+ items: {
58347
+ oneOf: ({
58348
+ type: string;
58349
+ format?: never;
58350
+ } | {
58351
+ format: string;
58352
+ type: string;
58353
+ })[];
58354
+ };
58355
+ maxItems: number;
58356
+ minItems: number;
58357
+ type: string;
58358
+ };
58359
+ created_after: {
58360
+ description: string;
58361
+ format: string;
58362
+ type: string;
58363
+ };
58305
58364
  created_before: {
58306
58365
  description: string;
58307
58366
  format: string;
@@ -63576,6 +63576,31 @@ export default {
63576
63576
  type: 'string',
63577
63577
  },
63578
63578
  },
63579
+ {
63580
+ in: 'query',
63581
+ name: 'created_after',
63582
+ schema: {
63583
+ description: 'Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.',
63584
+ format: 'date-time',
63585
+ type: 'string',
63586
+ },
63587
+ },
63588
+ {
63589
+ in: 'query',
63590
+ name: 'between',
63591
+ schema: {
63592
+ description: 'Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.',
63593
+ items: {
63594
+ oneOf: [
63595
+ { type: 'string' },
63596
+ { format: 'date-time', type: 'string' },
63597
+ ],
63598
+ },
63599
+ maxItems: 2,
63600
+ minItems: 2,
63601
+ type: 'array',
63602
+ },
63603
+ },
63579
63604
  {
63580
63605
  in: 'query',
63581
63606
  name: 'search',
@@ -63828,6 +63853,23 @@ export default {
63828
63853
  'application/json': {
63829
63854
  schema: {
63830
63855
  properties: {
63856
+ between: {
63857
+ description: 'Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.',
63858
+ items: {
63859
+ oneOf: [
63860
+ { type: 'string' },
63861
+ { format: 'date-time', type: 'string' },
63862
+ ],
63863
+ },
63864
+ maxItems: 2,
63865
+ minItems: 2,
63866
+ type: 'array',
63867
+ },
63868
+ created_after: {
63869
+ description: 'Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.',
63870
+ format: 'date-time',
63871
+ type: 'string',
63872
+ },
63831
63873
  created_before: {
63832
63874
  description: 'Timestamp by which to limit returned reservations. Returns reservations created before this timestamp.',
63833
63875
  format: 'date-time',