@seamapi/types 1.518.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 +26 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +39 -1
- package/dist/index.cjs +26 -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 +26 -0
- package/lib/seam/connect/openapi.js +26 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -1
- 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 +32 -0
- package/src/lib/seam/connect/route-types.ts +13 -1
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: {
|
|
@@ -88440,6 +88464,7 @@ declare const _default: {
|
|
|
88440
88464
|
};
|
|
88441
88465
|
partner_resource_id: {
|
|
88442
88466
|
format: string;
|
|
88467
|
+
nullable: boolean;
|
|
88443
88468
|
type: string;
|
|
88444
88469
|
};
|
|
88445
88470
|
workspace_id: {
|
|
@@ -88603,6 +88628,7 @@ declare const _default: {
|
|
|
88603
88628
|
};
|
|
88604
88629
|
partner_resource_id: {
|
|
88605
88630
|
format: string;
|
|
88631
|
+
nullable: boolean;
|
|
88606
88632
|
type: string;
|
|
88607
88633
|
};
|
|
88608
88634
|
workspace_id: {
|
|
@@ -131981,6 +132007,8 @@ type Routes = {
|
|
|
131981
132007
|
starts_at?: string | undefined;
|
|
131982
132008
|
/** Ending date and time for the access grant. */
|
|
131983
132009
|
ends_at?: string | undefined;
|
|
132010
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132011
|
+
preferred_code?: string | undefined;
|
|
131984
132012
|
/** Your unique identifier for the reservation. */
|
|
131985
132013
|
reservation_key: string;
|
|
131986
132014
|
/** Guest key associated with the access grant. */
|
|
@@ -132018,6 +132046,8 @@ type Routes = {
|
|
|
132018
132046
|
starts_at?: string | undefined;
|
|
132019
132047
|
/** Ending date and time for the access grant. */
|
|
132020
132048
|
ends_at?: string | undefined;
|
|
132049
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132050
|
+
preferred_code?: string | undefined;
|
|
132021
132051
|
/** Your unique identifier for the booking. */
|
|
132022
132052
|
booking_key: string;
|
|
132023
132053
|
/** Guest key associated with the access grant. */
|
|
@@ -132055,6 +132085,8 @@ type Routes = {
|
|
|
132055
132085
|
starts_at?: string | undefined;
|
|
132056
132086
|
/** Ending date and time for the access grant. */
|
|
132057
132087
|
ends_at?: string | undefined;
|
|
132088
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132089
|
+
preferred_code?: string | undefined;
|
|
132058
132090
|
/** Your unique identifier for the access grant. */
|
|
132059
132091
|
access_grant_key: string;
|
|
132060
132092
|
/** Guest key associated with the access grant. */
|
|
@@ -132285,6 +132317,8 @@ type Routes = {
|
|
|
132285
132317
|
starts_at?: string | undefined;
|
|
132286
132318
|
/** Ending date and time for the access grant. */
|
|
132287
132319
|
ends_at?: string | undefined;
|
|
132320
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132321
|
+
preferred_code?: string | undefined;
|
|
132288
132322
|
/** Your unique identifier for the reservation. */
|
|
132289
132323
|
reservation_key: string;
|
|
132290
132324
|
/** Guest key associated with the access grant. */
|
|
@@ -132322,6 +132356,8 @@ type Routes = {
|
|
|
132322
132356
|
starts_at?: string | undefined;
|
|
132323
132357
|
/** Ending date and time for the access grant. */
|
|
132324
132358
|
ends_at?: string | undefined;
|
|
132359
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132360
|
+
preferred_code?: string | undefined;
|
|
132325
132361
|
/** Your unique identifier for the booking. */
|
|
132326
132362
|
booking_key: string;
|
|
132327
132363
|
/** Guest key associated with the access grant. */
|
|
@@ -132359,6 +132395,8 @@ type Routes = {
|
|
|
132359
132395
|
starts_at?: string | undefined;
|
|
132360
132396
|
/** Ending date and time for the access grant. */
|
|
132361
132397
|
ends_at?: string | undefined;
|
|
132398
|
+
/** Preferred PIN code to use when creating access for this reservation. */
|
|
132399
|
+
preferred_code?: string | undefined;
|
|
132362
132400
|
/** Your unique identifier for the access grant. */
|
|
132363
132401
|
access_grant_key: string;
|
|
132364
132402
|
/** Guest key associated with the access grant. */
|
|
@@ -156362,7 +156400,7 @@ type Routes = {
|
|
|
156362
156400
|
automation_run_id: string;
|
|
156363
156401
|
workspace_id: string;
|
|
156364
156402
|
automation_id: string;
|
|
156365
|
-
partner_resource_id: string;
|
|
156403
|
+
partner_resource_id: string | null;
|
|
156366
156404
|
automation_result?: {
|
|
156367
156405
|
success: boolean;
|
|
156368
156406
|
rule: 'reservation_created' | 'reservation_time_updated' | 'reservation_deleted';
|
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" },
|
|
@@ -49390,6 +49414,7 @@ var openapi_default = {
|
|
|
49390
49414
|
created_at: { type: "string" },
|
|
49391
49415
|
partner_resource_id: {
|
|
49392
49416
|
format: "uuid",
|
|
49417
|
+
nullable: true,
|
|
49393
49418
|
type: "string"
|
|
49394
49419
|
},
|
|
49395
49420
|
workspace_id: { format: "uuid", type: "string" }
|
|
@@ -49538,6 +49563,7 @@ var openapi_default = {
|
|
|
49538
49563
|
created_at: { type: "string" },
|
|
49539
49564
|
partner_resource_id: {
|
|
49540
49565
|
format: "uuid",
|
|
49566
|
+
nullable: true,
|
|
49541
49567
|
type: "string"
|
|
49542
49568
|
},
|
|
49543
49569
|
workspace_id: { format: "uuid", type: "string" }
|