@seamapi/types 1.519.0 → 1.520.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.
- package/dist/connect.cjs +24 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +36 -0
- package/dist/index.cjs +24 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/access-grant-resources.d.ts +18 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js +4 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +15 -0
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +30 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -79429,6 +79429,10 @@ declare const _default: {
|
|
|
79429
79429
|
description: string;
|
|
79430
79430
|
type: string;
|
|
79431
79431
|
};
|
|
79432
|
+
preferred_code: {
|
|
79433
|
+
description: string;
|
|
79434
|
+
type: string;
|
|
79435
|
+
};
|
|
79432
79436
|
property_keys: {
|
|
79433
79437
|
description: string;
|
|
79434
79438
|
items: {
|
|
@@ -79531,6 +79535,10 @@ declare const _default: {
|
|
|
79531
79535
|
description: string;
|
|
79532
79536
|
type: string;
|
|
79533
79537
|
};
|
|
79538
|
+
preferred_code: {
|
|
79539
|
+
description: string;
|
|
79540
|
+
type: string;
|
|
79541
|
+
};
|
|
79534
79542
|
property_keys: {
|
|
79535
79543
|
description: string;
|
|
79536
79544
|
items: {
|
|
@@ -79767,6 +79775,10 @@ declare const _default: {
|
|
|
79767
79775
|
description: string;
|
|
79768
79776
|
type: string;
|
|
79769
79777
|
};
|
|
79778
|
+
preferred_code: {
|
|
79779
|
+
description: string;
|
|
79780
|
+
type: string;
|
|
79781
|
+
};
|
|
79770
79782
|
property_keys: {
|
|
79771
79783
|
description: string;
|
|
79772
79784
|
items: {
|
|
@@ -80341,6 +80353,10 @@ declare const _default: {
|
|
|
80341
80353
|
description: string;
|
|
80342
80354
|
type: string;
|
|
80343
80355
|
};
|
|
80356
|
+
preferred_code: {
|
|
80357
|
+
description: string;
|
|
80358
|
+
type: string;
|
|
80359
|
+
};
|
|
80344
80360
|
property_keys: {
|
|
80345
80361
|
description: string;
|
|
80346
80362
|
items: {
|
|
@@ -80443,6 +80459,10 @@ declare const _default: {
|
|
|
80443
80459
|
description: string;
|
|
80444
80460
|
type: string;
|
|
80445
80461
|
};
|
|
80462
|
+
preferred_code: {
|
|
80463
|
+
description: string;
|
|
80464
|
+
type: string;
|
|
80465
|
+
};
|
|
80446
80466
|
property_keys: {
|
|
80447
80467
|
description: string;
|
|
80448
80468
|
items: {
|
|
@@ -80679,6 +80699,10 @@ declare const _default: {
|
|
|
80679
80699
|
description: string;
|
|
80680
80700
|
type: string;
|
|
80681
80701
|
};
|
|
80702
|
+
preferred_code: {
|
|
80703
|
+
description: string;
|
|
80704
|
+
type: string;
|
|
80705
|
+
};
|
|
80682
80706
|
property_keys: {
|
|
80683
80707
|
description: string;
|
|
80684
80708
|
items: {
|
|
@@ -131983,6 +132007,8 @@ type Routes = {
|
|
|
131983
132007
|
starts_at?: string | undefined;
|
|
131984
132008
|
/** Ending date and time for the access grant. */
|
|
131985
132009
|
ends_at?: string | undefined;
|
|
132010
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132011
|
+
preferred_code?: string | undefined;
|
|
131986
132012
|
/** Your unique identifier for the reservation. */
|
|
131987
132013
|
reservation_key: string;
|
|
131988
132014
|
/** Guest key associated with the access grant. */
|
|
@@ -132020,6 +132046,8 @@ type Routes = {
|
|
|
132020
132046
|
starts_at?: string | undefined;
|
|
132021
132047
|
/** Ending date and time for the access grant. */
|
|
132022
132048
|
ends_at?: string | undefined;
|
|
132049
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132050
|
+
preferred_code?: string | undefined;
|
|
132023
132051
|
/** Your unique identifier for the booking. */
|
|
132024
132052
|
booking_key: string;
|
|
132025
132053
|
/** Guest key associated with the access grant. */
|
|
@@ -132057,6 +132085,8 @@ type Routes = {
|
|
|
132057
132085
|
starts_at?: string | undefined;
|
|
132058
132086
|
/** Ending date and time for the access grant. */
|
|
132059
132087
|
ends_at?: string | undefined;
|
|
132088
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132089
|
+
preferred_code?: string | undefined;
|
|
132060
132090
|
/** Your unique identifier for the access grant. */
|
|
132061
132091
|
access_grant_key: string;
|
|
132062
132092
|
/** Guest key associated with the access grant. */
|
|
@@ -132287,6 +132317,8 @@ type Routes = {
|
|
|
132287
132317
|
starts_at?: string | undefined;
|
|
132288
132318
|
/** Ending date and time for the access grant. */
|
|
132289
132319
|
ends_at?: string | undefined;
|
|
132320
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132321
|
+
preferred_code?: string | undefined;
|
|
132290
132322
|
/** Your unique identifier for the reservation. */
|
|
132291
132323
|
reservation_key: string;
|
|
132292
132324
|
/** Guest key associated with the access grant. */
|
|
@@ -132324,6 +132356,8 @@ type Routes = {
|
|
|
132324
132356
|
starts_at?: string | undefined;
|
|
132325
132357
|
/** Ending date and time for the access grant. */
|
|
132326
132358
|
ends_at?: string | undefined;
|
|
132359
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132360
|
+
preferred_code?: string | undefined;
|
|
132327
132361
|
/** Your unique identifier for the booking. */
|
|
132328
132362
|
booking_key: string;
|
|
132329
132363
|
/** Guest key associated with the access grant. */
|
|
@@ -132361,6 +132395,8 @@ type Routes = {
|
|
|
132361
132395
|
starts_at?: string | undefined;
|
|
132362
132396
|
/** Ending date and time for the access grant. */
|
|
132363
132397
|
ends_at?: string | undefined;
|
|
132398
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132399
|
+
preferred_code?: string | undefined;
|
|
132364
132400
|
/** Your unique identifier for the access grant. */
|
|
132365
132401
|
access_grant_key: string;
|
|
132366
132402
|
/** Guest key associated with the access grant. */
|
package/dist/index.cjs
CHANGED
|
@@ -40570,6 +40570,10 @@ var openapi_default = {
|
|
|
40570
40570
|
description: "Your name for this access grant resource.",
|
|
40571
40571
|
type: "string"
|
|
40572
40572
|
},
|
|
40573
|
+
preferred_code: {
|
|
40574
|
+
description: "Preferred PIN code to use when creating access for this reservation.",
|
|
40575
|
+
type: "string"
|
|
40576
|
+
},
|
|
40573
40577
|
property_keys: {
|
|
40574
40578
|
description: "Property keys associated with the access grant.",
|
|
40575
40579
|
items: { type: "string" },
|
|
@@ -40656,6 +40660,10 @@ var openapi_default = {
|
|
|
40656
40660
|
description: "Your name for this access grant resource.",
|
|
40657
40661
|
type: "string"
|
|
40658
40662
|
},
|
|
40663
|
+
preferred_code: {
|
|
40664
|
+
description: "Preferred PIN code to use when creating access for this reservation.",
|
|
40665
|
+
type: "string"
|
|
40666
|
+
},
|
|
40659
40667
|
property_keys: {
|
|
40660
40668
|
description: "Property keys associated with the access grant.",
|
|
40661
40669
|
items: { type: "string" },
|
|
@@ -40876,6 +40884,10 @@ var openapi_default = {
|
|
|
40876
40884
|
description: "Your name for this access grant resource.",
|
|
40877
40885
|
type: "string"
|
|
40878
40886
|
},
|
|
40887
|
+
preferred_code: {
|
|
40888
|
+
description: "Preferred PIN code to use when creating access for this reservation.",
|
|
40889
|
+
type: "string"
|
|
40890
|
+
},
|
|
40879
40891
|
property_keys: {
|
|
40880
40892
|
description: "Property keys associated with the access grant.",
|
|
40881
40893
|
items: { type: "string" },
|
|
@@ -41493,6 +41505,10 @@ var openapi_default = {
|
|
|
41493
41505
|
description: "Your name for this access grant resource.",
|
|
41494
41506
|
type: "string"
|
|
41495
41507
|
},
|
|
41508
|
+
preferred_code: {
|
|
41509
|
+
description: "Preferred PIN code to use when creating access for this reservation.",
|
|
41510
|
+
type: "string"
|
|
41511
|
+
},
|
|
41496
41512
|
property_keys: {
|
|
41497
41513
|
description: "Property keys associated with the access grant.",
|
|
41498
41514
|
items: { type: "string" },
|
|
@@ -41579,6 +41595,10 @@ var openapi_default = {
|
|
|
41579
41595
|
description: "Your name for this access grant resource.",
|
|
41580
41596
|
type: "string"
|
|
41581
41597
|
},
|
|
41598
|
+
preferred_code: {
|
|
41599
|
+
description: "Preferred PIN code to use when creating access for this reservation.",
|
|
41600
|
+
type: "string"
|
|
41601
|
+
},
|
|
41582
41602
|
property_keys: {
|
|
41583
41603
|
description: "Property keys associated with the access grant.",
|
|
41584
41604
|
items: { type: "string" },
|
|
@@ -41799,6 +41819,10 @@ var openapi_default = {
|
|
|
41799
41819
|
description: "Your name for this access grant resource.",
|
|
41800
41820
|
type: "string"
|
|
41801
41821
|
},
|
|
41822
|
+
preferred_code: {
|
|
41823
|
+
description: "Preferred PIN code to use when creating access for this reservation.",
|
|
41824
|
+
type: "string"
|
|
41825
|
+
},
|
|
41802
41826
|
property_keys: {
|
|
41803
41827
|
description: "Property keys associated with the access grant.",
|
|
41804
41828
|
items: { type: "string" },
|