@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.
@@ -95416,6 +95416,7 @@ declare const _default: {
95416
95416
  default?: never;
95417
95417
  exclusiveMinimum?: never;
95418
95418
  minimum?: never;
95419
+ minLength?: never;
95419
95420
  nullable?: never;
95420
95421
  };
95421
95422
  } | {
@@ -95428,6 +95429,7 @@ declare const _default: {
95428
95429
  default?: never;
95429
95430
  exclusiveMinimum?: never;
95430
95431
  minimum?: never;
95432
+ minLength?: never;
95431
95433
  nullable?: never;
95432
95434
  };
95433
95435
  } | {
@@ -95440,6 +95442,20 @@ declare const _default: {
95440
95442
  minimum: number;
95441
95443
  type: string;
95442
95444
  format?: never;
95445
+ minLength?: never;
95446
+ nullable?: never;
95447
+ };
95448
+ } | {
95449
+ in: string;
95450
+ name: string;
95451
+ schema: {
95452
+ description: string;
95453
+ minLength: number;
95454
+ type: string;
95455
+ format?: never;
95456
+ default?: never;
95457
+ exclusiveMinimum?: never;
95458
+ minimum?: never;
95443
95459
  nullable?: never;
95444
95460
  };
95445
95461
  } | {
@@ -95453,6 +95469,7 @@ declare const _default: {
95453
95469
  default?: never;
95454
95470
  exclusiveMinimum?: never;
95455
95471
  minimum?: never;
95472
+ minLength?: never;
95456
95473
  };
95457
95474
  })[];
95458
95475
  responses: {
@@ -95583,6 +95600,11 @@ declare const _default: {
95583
95600
  nullable: boolean;
95584
95601
  type: string;
95585
95602
  };
95603
+ search: {
95604
+ description: string;
95605
+ minLength: number;
95606
+ type: string;
95607
+ };
95586
95608
  space_id: {
95587
95609
  description: string;
95588
95610
  format: string;
@@ -167864,6 +167886,8 @@ type Routes = {
167864
167886
  limit?: number;
167865
167887
  /** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
167866
167888
  created_before?: Date | undefined;
167889
+ /** 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. */
167890
+ search?: string | undefined;
167867
167891
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
167868
167892
  page_cursor?: ((string | undefined) | null) | undefined;
167869
167893
  };
package/dist/index.cjs CHANGED
@@ -54903,6 +54903,15 @@ var openapi_default = {
54903
54903
  type: "string"
54904
54904
  }
54905
54905
  },
54906
+ {
54907
+ in: "query",
54908
+ name: "search",
54909
+ schema: {
54910
+ 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.",
54911
+ minLength: 1,
54912
+ type: "string"
54913
+ }
54914
+ },
54906
54915
  {
54907
54916
  in: "query",
54908
54917
  name: "page_cursor",
@@ -55019,6 +55028,11 @@ var openapi_default = {
55019
55028
  nullable: true,
55020
55029
  type: "string"
55021
55030
  },
55031
+ search: {
55032
+ 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.",
55033
+ minLength: 1,
55034
+ type: "string"
55035
+ },
55022
55036
  space_id: {
55023
55037
  description: "Filter reservations by space ID (UUID).",
55024
55038
  format: "uuid",