@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.
@@ -43890,6 +43890,7 @@ declare const _default: {
43890
43890
  default?: never;
43891
43891
  exclusiveMinimum?: never;
43892
43892
  minimum?: never;
43893
+ minLength?: never;
43893
43894
  nullable?: never;
43894
43895
  };
43895
43896
  } | {
@@ -43902,6 +43903,7 @@ declare const _default: {
43902
43903
  default?: never;
43903
43904
  exclusiveMinimum?: never;
43904
43905
  minimum?: never;
43906
+ minLength?: never;
43905
43907
  nullable?: never;
43906
43908
  };
43907
43909
  } | {
@@ -43914,6 +43916,20 @@ declare const _default: {
43914
43916
  minimum: number;
43915
43917
  type: string;
43916
43918
  format?: never;
43919
+ minLength?: never;
43920
+ nullable?: never;
43921
+ };
43922
+ } | {
43923
+ in: string;
43924
+ name: string;
43925
+ schema: {
43926
+ description: string;
43927
+ minLength: number;
43928
+ type: string;
43929
+ format?: never;
43930
+ default?: never;
43931
+ exclusiveMinimum?: never;
43932
+ minimum?: never;
43917
43933
  nullable?: never;
43918
43934
  };
43919
43935
  } | {
@@ -43927,6 +43943,7 @@ declare const _default: {
43927
43943
  default?: never;
43928
43944
  exclusiveMinimum?: never;
43929
43945
  minimum?: never;
43946
+ minLength?: never;
43930
43947
  };
43931
43948
  })[];
43932
43949
  responses: {
@@ -44057,6 +44074,11 @@ declare const _default: {
44057
44074
  nullable: boolean;
44058
44075
  type: string;
44059
44076
  };
44077
+ search: {
44078
+ description: string;
44079
+ minLength: number;
44080
+ type: string;
44081
+ };
44060
44082
  space_id: {
44061
44083
  description: string;
44062
44084
  format: string;
@@ -49095,6 +49095,15 @@ export default {
49095
49095
  type: 'string',
49096
49096
  },
49097
49097
  },
49098
+ {
49099
+ in: 'query',
49100
+ name: 'search',
49101
+ schema: {
49102
+ description: '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.',
49103
+ minLength: 1,
49104
+ type: 'string',
49105
+ },
49106
+ },
49098
49107
  {
49099
49108
  in: 'query',
49100
49109
  name: 'page_cursor',
@@ -49211,6 +49220,11 @@ export default {
49211
49220
  nullable: true,
49212
49221
  type: 'string',
49213
49222
  },
49223
+ search: {
49224
+ description: '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.',
49225
+ minLength: 1,
49226
+ type: 'string',
49227
+ },
49214
49228
  space_id: {
49215
49229
  description: 'Filter reservations by space ID (UUID).',
49216
49230
  format: 'uuid',