@seamapi/types 1.754.0 → 1.756.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.
@@ -88537,16 +88537,25 @@ declare const _default: {
88537
88537
  get: {
88538
88538
  description: string;
88539
88539
  operationId: string;
88540
- parameters: {
88540
+ parameters: ({
88541
88541
  in: string;
88542
88542
  name: string;
88543
- required: boolean;
88544
88543
  schema: {
88545
88544
  description: string;
88546
88545
  format: string;
88547
88546
  type: string;
88547
+ minLength?: never;
88548
88548
  };
88549
- }[];
88549
+ } | {
88550
+ in: string;
88551
+ name: string;
88552
+ schema: {
88553
+ description: string;
88554
+ minLength: number;
88555
+ type: string;
88556
+ format?: never;
88557
+ };
88558
+ })[];
88550
88559
  responses: {
88551
88560
  200: {
88552
88561
  content: {
@@ -88620,6 +88629,11 @@ declare const _default: {
88620
88629
  format: string;
88621
88630
  type: string;
88622
88631
  };
88632
+ access_grant_key: {
88633
+ description: string;
88634
+ minLength: number;
88635
+ type: string;
88636
+ };
88623
88637
  acs_entrance_id: {
88624
88638
  description: string;
88625
88639
  format: string;
@@ -88636,7 +88650,6 @@ declare const _default: {
88636
88650
  type: string;
88637
88651
  };
88638
88652
  };
88639
- required: string[];
88640
88653
  type: string;
88641
88654
  };
88642
88655
  };
@@ -112134,6 +112147,9 @@ declare const _default: {
112134
112147
  enum: string[];
112135
112148
  type: string;
112136
112149
  };
112150
+ prefer_guest_phone_last4_as_code: {
112151
+ type: string;
112152
+ };
112137
112153
  };
112138
112154
  required: string[];
112139
112155
  type: string;
@@ -112433,6 +112449,9 @@ declare const _default: {
112433
112449
  enum: string[];
112434
112450
  type: string;
112435
112451
  };
112452
+ prefer_guest_phone_last4_as_code: {
112453
+ type: string;
112454
+ };
112436
112455
  };
112437
112456
  required: string[];
112438
112457
  type: string;
@@ -112719,6 +112738,9 @@ declare const _default: {
112719
112738
  enum: string[];
112720
112739
  type: string;
112721
112740
  };
112741
+ prefer_guest_phone_last4_as_code: {
112742
+ type: string;
112743
+ };
112722
112744
  };
112723
112745
  required: string[];
112724
112746
  type: string;
@@ -113028,6 +113050,9 @@ declare const _default: {
113028
113050
  enum: string[];
113029
113051
  type: string;
113030
113052
  };
113053
+ prefer_guest_phone_last4_as_code: {
113054
+ type: string;
113055
+ };
113031
113056
  };
113032
113057
  required: string[];
113033
113058
  type: string;
@@ -114466,6 +114491,9 @@ declare const _default: {
114466
114491
  enum: string[];
114467
114492
  type: string;
114468
114493
  };
114494
+ prefer_guest_phone_last4_as_code: {
114495
+ type: string;
114496
+ };
114469
114497
  };
114470
114498
  required: string[];
114471
114499
  type: string;
@@ -114751,6 +114779,9 @@ declare const _default: {
114751
114779
  enum: string[];
114752
114780
  type: string;
114753
114781
  };
114782
+ prefer_guest_phone_last4_as_code: {
114783
+ type: string;
114784
+ };
114754
114785
  };
114755
114786
  required: string[];
114756
114787
  type: string;
@@ -115036,6 +115067,9 @@ declare const _default: {
115036
115067
  enum: string[];
115037
115068
  type: string;
115038
115069
  };
115070
+ prefer_guest_phone_last4_as_code: {
115071
+ type: string;
115072
+ };
115039
115073
  };
115040
115074
  required: string[];
115041
115075
  type: string;
@@ -115336,6 +115370,9 @@ declare const _default: {
115336
115370
  enum: string[];
115337
115371
  type: string;
115338
115372
  };
115373
+ prefer_guest_phone_last4_as_code: {
115374
+ type: string;
115375
+ };
115339
115376
  };
115340
115377
  required: string[];
115341
115378
  type: string;
@@ -149397,7 +149434,9 @@ type Routes = {
149397
149434
  jsonBody: {};
149398
149435
  commonParams: {
149399
149436
  /** ID of Access Grant to list access methods for. */
149400
- access_grant_id: string;
149437
+ access_grant_id?: string | undefined;
149438
+ /** Key of Access Grant to list access methods for. */
149439
+ access_grant_key?: string | undefined;
149401
149440
  /** ID of the device for which you want to retrieve all access methods. */
149402
149441
  device_id?: string | undefined;
149403
149442
  /** ID of the entrance for which you want to retrieve all access methods. */
@@ -192446,6 +192485,7 @@ type Routes = {
192446
192485
  card_count_on_reservation_create?: number | undefined;
192447
192486
  code_count_on_reservation_create?: number | undefined;
192448
192487
  instant_key_max_use_count?: number | undefined;
192488
+ prefer_guest_phone_last4_as_code?: boolean | undefined;
192449
192489
  };
192450
192490
  } | undefined;
192451
192491
  reservation_time_updated?: {
@@ -192528,6 +192568,7 @@ type Routes = {
192528
192568
  card_count_on_reservation_create?: number | undefined;
192529
192569
  code_count_on_reservation_create?: number | undefined;
192530
192570
  instant_key_max_use_count?: number | undefined;
192571
+ prefer_guest_phone_last4_as_code?: boolean | undefined;
192531
192572
  };
192532
192573
  } | undefined;
192533
192574
  reservation_time_updated?: {
@@ -192823,6 +192864,7 @@ type Routes = {
192823
192864
  card_count_on_reservation_create?: number | undefined;
192824
192865
  code_count_on_reservation_create?: number | undefined;
192825
192866
  instant_key_max_use_count?: number | undefined;
192867
+ prefer_guest_phone_last4_as_code?: boolean | undefined;
192826
192868
  };
192827
192869
  } | undefined;
192828
192870
  reservation_time_updated?: {
@@ -192904,6 +192946,7 @@ type Routes = {
192904
192946
  card_count_on_reservation_create?: number | undefined;
192905
192947
  code_count_on_reservation_create?: number | undefined;
192906
192948
  instant_key_max_use_count?: number | undefined;
192949
+ prefer_guest_phone_last4_as_code?: boolean | undefined;
192907
192950
  };
192908
192951
  } | undefined;
192909
192952
  reservation_time_updated?: {
package/dist/index.cjs CHANGED
@@ -40956,17 +40956,24 @@ var openapi_default = {
40956
40956
  {
40957
40957
  in: "query",
40958
40958
  name: "access_grant_id",
40959
- required: true,
40960
40959
  schema: {
40961
40960
  description: "ID of Access Grant to list access methods for.",
40962
40961
  format: "uuid",
40963
40962
  type: "string"
40964
40963
  }
40965
40964
  },
40965
+ {
40966
+ in: "query",
40967
+ name: "access_grant_key",
40968
+ schema: {
40969
+ description: "Key of Access Grant to list access methods for.",
40970
+ minLength: 1,
40971
+ type: "string"
40972
+ }
40973
+ },
40966
40974
  {
40967
40975
  in: "query",
40968
40976
  name: "device_id",
40969
- required: false,
40970
40977
  schema: {
40971
40978
  description: "ID of the device for which you want to retrieve all access methods.",
40972
40979
  format: "uuid",
@@ -40976,7 +40983,6 @@ var openapi_default = {
40976
40983
  {
40977
40984
  in: "query",
40978
40985
  name: "acs_entrance_id",
40979
- required: false,
40980
40986
  schema: {
40981
40987
  description: "ID of the entrance for which you want to retrieve all access methods.",
40982
40988
  format: "uuid",
@@ -40986,7 +40992,6 @@ var openapi_default = {
40986
40992
  {
40987
40993
  in: "query",
40988
40994
  name: "space_id",
40989
- required: false,
40990
40995
  schema: {
40991
40996
  description: "ID of the space for which you want to retrieve all access methods.",
40992
40997
  format: "uuid",
@@ -41044,6 +41049,11 @@ var openapi_default = {
41044
41049
  format: "uuid",
41045
41050
  type: "string"
41046
41051
  },
41052
+ access_grant_key: {
41053
+ description: "Key of Access Grant to list access methods for.",
41054
+ minLength: 1,
41055
+ type: "string"
41056
+ },
41047
41057
  acs_entrance_id: {
41048
41058
  description: "ID of the entrance for which you want to retrieve all access methods.",
41049
41059
  format: "uuid",
@@ -41060,7 +41070,6 @@ var openapi_default = {
41060
41070
  type: "string"
41061
41071
  }
41062
41072
  },
41063
- required: ["access_grant_id"],
41064
41073
  type: "object"
41065
41074
  }
41066
41075
  }
@@ -62818,6 +62827,9 @@ var openapi_default = {
62818
62827
  "all_available"
62819
62828
  ],
62820
62829
  type: "string"
62830
+ },
62831
+ prefer_guest_phone_last4_as_code: {
62832
+ type: "boolean"
62821
62833
  }
62822
62834
  },
62823
62835
  required: [
@@ -63114,6 +63126,9 @@ var openapi_default = {
63114
63126
  "all_available"
63115
63127
  ],
63116
63128
  type: "string"
63129
+ },
63130
+ prefer_guest_phone_last4_as_code: {
63131
+ type: "boolean"
63117
63132
  }
63118
63133
  },
63119
63134
  required: [
@@ -63397,6 +63412,9 @@ var openapi_default = {
63397
63412
  "all_available"
63398
63413
  ],
63399
63414
  type: "string"
63415
+ },
63416
+ prefer_guest_phone_last4_as_code: {
63417
+ type: "boolean"
63400
63418
  }
63401
63419
  },
63402
63420
  required: [
@@ -63680,6 +63698,9 @@ var openapi_default = {
63680
63698
  "all_available"
63681
63699
  ],
63682
63700
  type: "string"
63701
+ },
63702
+ prefer_guest_phone_last4_as_code: {
63703
+ type: "boolean"
63683
63704
  }
63684
63705
  },
63685
63706
  required: [
@@ -64922,6 +64943,9 @@ var openapi_default = {
64922
64943
  "all_available"
64923
64944
  ],
64924
64945
  type: "string"
64946
+ },
64947
+ prefer_guest_phone_last4_as_code: {
64948
+ type: "boolean"
64925
64949
  }
64926
64950
  },
64927
64951
  required: [
@@ -65218,6 +65242,9 @@ var openapi_default = {
65218
65242
  "all_available"
65219
65243
  ],
65220
65244
  type: "string"
65245
+ },
65246
+ prefer_guest_phone_last4_as_code: {
65247
+ type: "boolean"
65221
65248
  }
65222
65249
  },
65223
65250
  required: [
@@ -65514,6 +65541,9 @@ var openapi_default = {
65514
65541
  "all_available"
65515
65542
  ],
65516
65543
  type: "string"
65544
+ },
65545
+ prefer_guest_phone_last4_as_code: {
65546
+ type: "boolean"
65517
65547
  }
65518
65548
  },
65519
65549
  required: [
@@ -65798,6 +65828,9 @@ var openapi_default = {
65798
65828
  "all_available"
65799
65829
  ],
65800
65830
  type: "string"
65831
+ },
65832
+ prefer_guest_phone_last4_as_code: {
65833
+ type: "boolean"
65801
65834
  }
65802
65835
  },
65803
65836
  required: [