@seamapi/types 1.759.0 → 1.761.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 +54 -32
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +253 -36
- package/dist/index.cjs +54 -32
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +12 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/openapi.d.ts +0 -32
- package/lib/seam/connect/openapi.js +44 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +140 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +52 -32
- package/src/lib/seam/connect/route-types.ts +160 -4
package/dist/connect.d.cts
CHANGED
|
@@ -14922,6 +14922,19 @@ declare const batch: z.ZodObject<{
|
|
|
14922
14922
|
}>, z.ZodObject<{
|
|
14923
14923
|
message: z.ZodString;
|
|
14924
14924
|
created_at: z.ZodString;
|
|
14925
|
+
} & {
|
|
14926
|
+
warning_code: z.ZodLiteral<"unreliable_online_status">;
|
|
14927
|
+
}, "strip", z.ZodTypeAny, {
|
|
14928
|
+
message: string;
|
|
14929
|
+
created_at: string;
|
|
14930
|
+
warning_code: "unreliable_online_status";
|
|
14931
|
+
}, {
|
|
14932
|
+
message: string;
|
|
14933
|
+
created_at: string;
|
|
14934
|
+
warning_code: "unreliable_online_status";
|
|
14935
|
+
}>, z.ZodObject<{
|
|
14936
|
+
message: z.ZodString;
|
|
14937
|
+
created_at: z.ZodString;
|
|
14925
14938
|
} & {
|
|
14926
14939
|
warning_code: z.ZodLiteral<"max_access_codes_reached">;
|
|
14927
14940
|
active_access_code_count: z.ZodNumber;
|
|
@@ -15180,6 +15193,10 @@ declare const batch: z.ZodObject<{
|
|
|
15180
15193
|
message: string;
|
|
15181
15194
|
created_at: string;
|
|
15182
15195
|
warning_code: "accessory_keypad_setup_required";
|
|
15196
|
+
} | {
|
|
15197
|
+
message: string;
|
|
15198
|
+
created_at: string;
|
|
15199
|
+
warning_code: "unreliable_online_status";
|
|
15183
15200
|
} | {
|
|
15184
15201
|
message: string;
|
|
15185
15202
|
created_at: string;
|
|
@@ -15893,6 +15910,10 @@ declare const batch: z.ZodObject<{
|
|
|
15893
15910
|
message: string;
|
|
15894
15911
|
created_at: string;
|
|
15895
15912
|
warning_code: "accessory_keypad_setup_required";
|
|
15913
|
+
} | {
|
|
15914
|
+
message: string;
|
|
15915
|
+
created_at: string;
|
|
15916
|
+
warning_code: "unreliable_online_status";
|
|
15896
15917
|
} | {
|
|
15897
15918
|
message: string;
|
|
15898
15919
|
created_at: string;
|
|
@@ -27240,6 +27261,19 @@ declare const batch: z.ZodObject<{
|
|
|
27240
27261
|
}>, z.ZodObject<{
|
|
27241
27262
|
message: z.ZodString;
|
|
27242
27263
|
created_at: z.ZodString;
|
|
27264
|
+
} & {
|
|
27265
|
+
warning_code: z.ZodLiteral<"unreliable_online_status">;
|
|
27266
|
+
}, "strip", z.ZodTypeAny, {
|
|
27267
|
+
message: string;
|
|
27268
|
+
created_at: string;
|
|
27269
|
+
warning_code: "unreliable_online_status";
|
|
27270
|
+
}, {
|
|
27271
|
+
message: string;
|
|
27272
|
+
created_at: string;
|
|
27273
|
+
warning_code: "unreliable_online_status";
|
|
27274
|
+
}>, z.ZodObject<{
|
|
27275
|
+
message: z.ZodString;
|
|
27276
|
+
created_at: z.ZodString;
|
|
27243
27277
|
} & {
|
|
27244
27278
|
warning_code: z.ZodLiteral<"max_access_codes_reached">;
|
|
27245
27279
|
active_access_code_count: z.ZodNumber;
|
|
@@ -27653,6 +27687,10 @@ declare const batch: z.ZodObject<{
|
|
|
27653
27687
|
message: string;
|
|
27654
27688
|
created_at: string;
|
|
27655
27689
|
warning_code: "accessory_keypad_setup_required";
|
|
27690
|
+
} | {
|
|
27691
|
+
message: string;
|
|
27692
|
+
created_at: string;
|
|
27693
|
+
warning_code: "unreliable_online_status";
|
|
27656
27694
|
} | {
|
|
27657
27695
|
message: string;
|
|
27658
27696
|
created_at: string;
|
|
@@ -27904,6 +27942,10 @@ declare const batch: z.ZodObject<{
|
|
|
27904
27942
|
message: string;
|
|
27905
27943
|
created_at: string;
|
|
27906
27944
|
warning_code: "accessory_keypad_setup_required";
|
|
27945
|
+
} | {
|
|
27946
|
+
message: string;
|
|
27947
|
+
created_at: string;
|
|
27948
|
+
warning_code: "unreliable_online_status";
|
|
27907
27949
|
} | {
|
|
27908
27950
|
message: string;
|
|
27909
27951
|
created_at: string;
|
|
@@ -37116,6 +37158,10 @@ declare const batch: z.ZodObject<{
|
|
|
37116
37158
|
message: string;
|
|
37117
37159
|
created_at: string;
|
|
37118
37160
|
warning_code: "accessory_keypad_setup_required";
|
|
37161
|
+
} | {
|
|
37162
|
+
message: string;
|
|
37163
|
+
created_at: string;
|
|
37164
|
+
warning_code: "unreliable_online_status";
|
|
37119
37165
|
} | {
|
|
37120
37166
|
message: string;
|
|
37121
37167
|
created_at: string;
|
|
@@ -39397,6 +39443,10 @@ declare const batch: z.ZodObject<{
|
|
|
39397
39443
|
message: string;
|
|
39398
39444
|
created_at: string;
|
|
39399
39445
|
warning_code: "accessory_keypad_setup_required";
|
|
39446
|
+
} | {
|
|
39447
|
+
message: string;
|
|
39448
|
+
created_at: string;
|
|
39449
|
+
warning_code: "unreliable_online_status";
|
|
39400
39450
|
} | {
|
|
39401
39451
|
message: string;
|
|
39402
39452
|
created_at: string;
|
|
@@ -41920,6 +41970,10 @@ declare const batch: z.ZodObject<{
|
|
|
41920
41970
|
message: string;
|
|
41921
41971
|
created_at: string;
|
|
41922
41972
|
warning_code: "accessory_keypad_setup_required";
|
|
41973
|
+
} | {
|
|
41974
|
+
message: string;
|
|
41975
|
+
created_at: string;
|
|
41976
|
+
warning_code: "unreliable_online_status";
|
|
41923
41977
|
} | {
|
|
41924
41978
|
message: string;
|
|
41925
41979
|
created_at: string;
|
|
@@ -44201,6 +44255,10 @@ declare const batch: z.ZodObject<{
|
|
|
44201
44255
|
message: string;
|
|
44202
44256
|
created_at: string;
|
|
44203
44257
|
warning_code: "accessory_keypad_setup_required";
|
|
44258
|
+
} | {
|
|
44259
|
+
message: string;
|
|
44260
|
+
created_at: string;
|
|
44261
|
+
warning_code: "unreliable_online_status";
|
|
44204
44262
|
} | {
|
|
44205
44263
|
message: string;
|
|
44206
44264
|
created_at: string;
|
|
@@ -47947,6 +48005,19 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
47947
48005
|
}>, z.ZodObject<{
|
|
47948
48006
|
message: z.ZodString;
|
|
47949
48007
|
created_at: z.ZodString;
|
|
48008
|
+
} & {
|
|
48009
|
+
warning_code: z.ZodLiteral<"unreliable_online_status">;
|
|
48010
|
+
}, "strip", z.ZodTypeAny, {
|
|
48011
|
+
message: string;
|
|
48012
|
+
created_at: string;
|
|
48013
|
+
warning_code: "unreliable_online_status";
|
|
48014
|
+
}, {
|
|
48015
|
+
message: string;
|
|
48016
|
+
created_at: string;
|
|
48017
|
+
warning_code: "unreliable_online_status";
|
|
48018
|
+
}>, z.ZodObject<{
|
|
48019
|
+
message: z.ZodString;
|
|
48020
|
+
created_at: z.ZodString;
|
|
47950
48021
|
} & {
|
|
47951
48022
|
warning_code: z.ZodLiteral<"max_access_codes_reached">;
|
|
47952
48023
|
active_access_code_count: z.ZodNumber;
|
|
@@ -50934,6 +51005,19 @@ declare const device: z.ZodObject<{
|
|
|
50934
51005
|
}>, z.ZodObject<{
|
|
50935
51006
|
message: z.ZodString;
|
|
50936
51007
|
created_at: z.ZodString;
|
|
51008
|
+
} & {
|
|
51009
|
+
warning_code: z.ZodLiteral<"unreliable_online_status">;
|
|
51010
|
+
}, "strip", z.ZodTypeAny, {
|
|
51011
|
+
message: string;
|
|
51012
|
+
created_at: string;
|
|
51013
|
+
warning_code: "unreliable_online_status";
|
|
51014
|
+
}, {
|
|
51015
|
+
message: string;
|
|
51016
|
+
created_at: string;
|
|
51017
|
+
warning_code: "unreliable_online_status";
|
|
51018
|
+
}>, z.ZodObject<{
|
|
51019
|
+
message: z.ZodString;
|
|
51020
|
+
created_at: z.ZodString;
|
|
50937
51021
|
} & {
|
|
50938
51022
|
warning_code: z.ZodLiteral<"max_access_codes_reached">;
|
|
50939
51023
|
active_access_code_count: z.ZodNumber;
|
|
@@ -51192,6 +51276,10 @@ declare const device: z.ZodObject<{
|
|
|
51192
51276
|
message: string;
|
|
51193
51277
|
created_at: string;
|
|
51194
51278
|
warning_code: "accessory_keypad_setup_required";
|
|
51279
|
+
} | {
|
|
51280
|
+
message: string;
|
|
51281
|
+
created_at: string;
|
|
51282
|
+
warning_code: "unreliable_online_status";
|
|
51195
51283
|
} | {
|
|
51196
51284
|
message: string;
|
|
51197
51285
|
created_at: string;
|
|
@@ -51905,6 +51993,10 @@ declare const device: z.ZodObject<{
|
|
|
51905
51993
|
message: string;
|
|
51906
51994
|
created_at: string;
|
|
51907
51995
|
warning_code: "accessory_keypad_setup_required";
|
|
51996
|
+
} | {
|
|
51997
|
+
message: string;
|
|
51998
|
+
created_at: string;
|
|
51999
|
+
warning_code: "unreliable_online_status";
|
|
51908
52000
|
} | {
|
|
51909
52001
|
message: string;
|
|
51910
52002
|
created_at: string;
|
|
@@ -55529,6 +55621,19 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
55529
55621
|
}>, z.ZodObject<{
|
|
55530
55622
|
message: z.ZodString;
|
|
55531
55623
|
created_at: z.ZodString;
|
|
55624
|
+
} & {
|
|
55625
|
+
warning_code: z.ZodLiteral<"unreliable_online_status">;
|
|
55626
|
+
}, "strip", z.ZodTypeAny, {
|
|
55627
|
+
message: string;
|
|
55628
|
+
created_at: string;
|
|
55629
|
+
warning_code: "unreliable_online_status";
|
|
55630
|
+
}, {
|
|
55631
|
+
message: string;
|
|
55632
|
+
created_at: string;
|
|
55633
|
+
warning_code: "unreliable_online_status";
|
|
55634
|
+
}>, z.ZodObject<{
|
|
55635
|
+
message: z.ZodString;
|
|
55636
|
+
created_at: z.ZodString;
|
|
55532
55637
|
} & {
|
|
55533
55638
|
warning_code: z.ZodLiteral<"max_access_codes_reached">;
|
|
55534
55639
|
active_access_code_count: z.ZodNumber;
|
|
@@ -55942,6 +56047,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
55942
56047
|
message: string;
|
|
55943
56048
|
created_at: string;
|
|
55944
56049
|
warning_code: "accessory_keypad_setup_required";
|
|
56050
|
+
} | {
|
|
56051
|
+
message: string;
|
|
56052
|
+
created_at: string;
|
|
56053
|
+
warning_code: "unreliable_online_status";
|
|
55945
56054
|
} | {
|
|
55946
56055
|
message: string;
|
|
55947
56056
|
created_at: string;
|
|
@@ -56193,6 +56302,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
56193
56302
|
message: string;
|
|
56194
56303
|
created_at: string;
|
|
56195
56304
|
warning_code: "accessory_keypad_setup_required";
|
|
56305
|
+
} | {
|
|
56306
|
+
message: string;
|
|
56307
|
+
created_at: string;
|
|
56308
|
+
warning_code: "unreliable_online_status";
|
|
56196
56309
|
} | {
|
|
56197
56310
|
message: string;
|
|
56198
56311
|
created_at: string;
|
|
@@ -112184,10 +112297,6 @@ declare const _default: {
|
|
|
112184
112297
|
minimum: number;
|
|
112185
112298
|
type: string;
|
|
112186
112299
|
};
|
|
112187
|
-
code_count_on_reservation_create: {
|
|
112188
|
-
minimum: number;
|
|
112189
|
-
type: string;
|
|
112190
|
-
};
|
|
112191
112300
|
instant_key_max_use_count: {
|
|
112192
112301
|
minimum: number;
|
|
112193
112302
|
type: string;
|
|
@@ -112489,10 +112598,6 @@ declare const _default: {
|
|
|
112489
112598
|
minimum: number;
|
|
112490
112599
|
type: string;
|
|
112491
112600
|
};
|
|
112492
|
-
code_count_on_reservation_create: {
|
|
112493
|
-
minimum: number;
|
|
112494
|
-
type: string;
|
|
112495
|
-
};
|
|
112496
112601
|
instant_key_max_use_count: {
|
|
112497
112602
|
minimum: number;
|
|
112498
112603
|
type: string;
|
|
@@ -112781,10 +112886,6 @@ declare const _default: {
|
|
|
112781
112886
|
minimum: number;
|
|
112782
112887
|
type: string;
|
|
112783
112888
|
};
|
|
112784
|
-
code_count_on_reservation_create: {
|
|
112785
|
-
minimum: number;
|
|
112786
|
-
type: string;
|
|
112787
|
-
};
|
|
112788
112889
|
instant_key_max_use_count: {
|
|
112789
112890
|
minimum: number;
|
|
112790
112891
|
type: string;
|
|
@@ -113096,10 +113197,6 @@ declare const _default: {
|
|
|
113096
113197
|
minimum: number;
|
|
113097
113198
|
type: string;
|
|
113098
113199
|
};
|
|
113099
|
-
code_count_on_reservation_create: {
|
|
113100
|
-
minimum: number;
|
|
113101
|
-
type: string;
|
|
113102
|
-
};
|
|
113103
113200
|
instant_key_max_use_count: {
|
|
113104
113201
|
minimum: number;
|
|
113105
113202
|
type: string;
|
|
@@ -114540,10 +114637,6 @@ declare const _default: {
|
|
|
114540
114637
|
minimum: number;
|
|
114541
114638
|
type: string;
|
|
114542
114639
|
};
|
|
114543
|
-
code_count_on_reservation_create: {
|
|
114544
|
-
minimum: number;
|
|
114545
|
-
type: string;
|
|
114546
|
-
};
|
|
114547
114640
|
instant_key_max_use_count: {
|
|
114548
114641
|
minimum: number;
|
|
114549
114642
|
type: string;
|
|
@@ -114831,10 +114924,6 @@ declare const _default: {
|
|
|
114831
114924
|
minimum: number;
|
|
114832
114925
|
type: string;
|
|
114833
114926
|
};
|
|
114834
|
-
code_count_on_reservation_create: {
|
|
114835
|
-
minimum: number;
|
|
114836
|
-
type: string;
|
|
114837
|
-
};
|
|
114838
114927
|
instant_key_max_use_count: {
|
|
114839
114928
|
minimum: number;
|
|
114840
114929
|
type: string;
|
|
@@ -115122,10 +115211,6 @@ declare const _default: {
|
|
|
115122
115211
|
minimum: number;
|
|
115123
115212
|
type: string;
|
|
115124
115213
|
};
|
|
115125
|
-
code_count_on_reservation_create: {
|
|
115126
|
-
minimum: number;
|
|
115127
|
-
type: string;
|
|
115128
|
-
};
|
|
115129
115214
|
instant_key_max_use_count: {
|
|
115130
115215
|
minimum: number;
|
|
115131
115216
|
type: string;
|
|
@@ -115428,10 +115513,6 @@ declare const _default: {
|
|
|
115428
115513
|
minimum: number;
|
|
115429
115514
|
type: string;
|
|
115430
115515
|
};
|
|
115431
|
-
code_count_on_reservation_create: {
|
|
115432
|
-
minimum: number;
|
|
115433
|
-
type: string;
|
|
115434
|
-
};
|
|
115435
115516
|
instant_key_max_use_count: {
|
|
115436
115517
|
minimum: number;
|
|
115437
115518
|
type: string;
|
|
@@ -144635,6 +144716,13 @@ type Routes = {
|
|
|
144635
144716
|
created_at: string;
|
|
144636
144717
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144637
144718
|
warning_code: 'accessory_keypad_setup_required';
|
|
144719
|
+
} | {
|
|
144720
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144721
|
+
message: string;
|
|
144722
|
+
/** Date and time at which Seam created the warning. */
|
|
144723
|
+
created_at: string;
|
|
144724
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144725
|
+
warning_code: 'unreliable_online_status';
|
|
144638
144726
|
} | {
|
|
144639
144727
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144640
144728
|
message: string;
|
|
@@ -148865,6 +148953,13 @@ type Routes = {
|
|
|
148865
148953
|
created_at: string;
|
|
148866
148954
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
148867
148955
|
warning_code: 'accessory_keypad_setup_required';
|
|
148956
|
+
} | {
|
|
148957
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
148958
|
+
message: string;
|
|
148959
|
+
/** Date and time at which Seam created the warning. */
|
|
148960
|
+
created_at: string;
|
|
148961
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
148962
|
+
warning_code: 'unreliable_online_status';
|
|
148868
148963
|
} | {
|
|
148869
148964
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
148870
148965
|
message: string;
|
|
@@ -165011,6 +165106,13 @@ type Routes = {
|
|
|
165011
165106
|
created_at: string;
|
|
165012
165107
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
165013
165108
|
warning_code: 'accessory_keypad_setup_required';
|
|
165109
|
+
} | {
|
|
165110
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
165111
|
+
message: string;
|
|
165112
|
+
/** Date and time at which Seam created the warning. */
|
|
165113
|
+
created_at: string;
|
|
165114
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
165115
|
+
warning_code: 'unreliable_online_status';
|
|
165014
165116
|
} | {
|
|
165015
165117
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
165016
165118
|
message: string;
|
|
@@ -166367,6 +166469,13 @@ type Routes = {
|
|
|
166367
166469
|
created_at: string;
|
|
166368
166470
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
166369
166471
|
warning_code: 'accessory_keypad_setup_required';
|
|
166472
|
+
} | {
|
|
166473
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
166474
|
+
message: string;
|
|
166475
|
+
/** Date and time at which Seam created the warning. */
|
|
166476
|
+
created_at: string;
|
|
166477
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
166478
|
+
warning_code: 'unreliable_online_status';
|
|
166370
166479
|
} | {
|
|
166371
166480
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
166372
166481
|
message: string;
|
|
@@ -166904,6 +167013,13 @@ type Routes = {
|
|
|
166904
167013
|
created_at: string;
|
|
166905
167014
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
166906
167015
|
warning_code: 'accessory_keypad_setup_required';
|
|
167016
|
+
} | {
|
|
167017
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
167018
|
+
message: string;
|
|
167019
|
+
/** Date and time at which Seam created the warning. */
|
|
167020
|
+
created_at: string;
|
|
167021
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
167022
|
+
warning_code: 'unreliable_online_status';
|
|
166907
167023
|
} | {
|
|
166908
167024
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
166909
167025
|
message: string;
|
|
@@ -167377,6 +167493,13 @@ type Routes = {
|
|
|
167377
167493
|
created_at: string;
|
|
167378
167494
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
167379
167495
|
warning_code: 'accessory_keypad_setup_required';
|
|
167496
|
+
} | {
|
|
167497
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
167498
|
+
message: string;
|
|
167499
|
+
/** Date and time at which Seam created the warning. */
|
|
167500
|
+
created_at: string;
|
|
167501
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
167502
|
+
warning_code: 'unreliable_online_status';
|
|
167380
167503
|
} | {
|
|
167381
167504
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
167382
167505
|
message: string;
|
|
@@ -174509,6 +174632,13 @@ type Routes = {
|
|
|
174509
174632
|
created_at: string;
|
|
174510
174633
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
174511
174634
|
warning_code: 'accessory_keypad_setup_required';
|
|
174635
|
+
} | {
|
|
174636
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174637
|
+
message: string;
|
|
174638
|
+
/** Date and time at which Seam created the warning. */
|
|
174639
|
+
created_at: string;
|
|
174640
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
174641
|
+
warning_code: 'unreliable_online_status';
|
|
174512
174642
|
} | {
|
|
174513
174643
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174514
174644
|
message: string;
|
|
@@ -175815,6 +175945,13 @@ type Routes = {
|
|
|
175815
175945
|
created_at: string;
|
|
175816
175946
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
175817
175947
|
warning_code: 'accessory_keypad_setup_required';
|
|
175948
|
+
} | {
|
|
175949
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
175950
|
+
message: string;
|
|
175951
|
+
/** Date and time at which Seam created the warning. */
|
|
175952
|
+
created_at: string;
|
|
175953
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
175954
|
+
warning_code: 'unreliable_online_status';
|
|
175818
175955
|
} | {
|
|
175819
175956
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
175820
175957
|
message: string;
|
|
@@ -177171,6 +177308,13 @@ type Routes = {
|
|
|
177171
177308
|
created_at: string;
|
|
177172
177309
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
177173
177310
|
warning_code: 'accessory_keypad_setup_required';
|
|
177311
|
+
} | {
|
|
177312
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
177313
|
+
message: string;
|
|
177314
|
+
/** Date and time at which Seam created the warning. */
|
|
177315
|
+
created_at: string;
|
|
177316
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
177317
|
+
warning_code: 'unreliable_online_status';
|
|
177174
177318
|
} | {
|
|
177175
177319
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
177176
177320
|
message: string;
|
|
@@ -178476,6 +178620,13 @@ type Routes = {
|
|
|
178476
178620
|
created_at: string;
|
|
178477
178621
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
178478
178622
|
warning_code: 'accessory_keypad_setup_required';
|
|
178623
|
+
} | {
|
|
178624
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
178625
|
+
message: string;
|
|
178626
|
+
/** Date and time at which Seam created the warning. */
|
|
178627
|
+
created_at: string;
|
|
178628
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
178629
|
+
warning_code: 'unreliable_online_status';
|
|
178479
178630
|
} | {
|
|
178480
178631
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
178481
178632
|
message: string;
|
|
@@ -184938,6 +185089,13 @@ type Routes = {
|
|
|
184938
185089
|
created_at: string;
|
|
184939
185090
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
184940
185091
|
warning_code: 'accessory_keypad_setup_required';
|
|
185092
|
+
} | {
|
|
185093
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
185094
|
+
message: string;
|
|
185095
|
+
/** Date and time at which Seam created the warning. */
|
|
185096
|
+
created_at: string;
|
|
185097
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
185098
|
+
warning_code: 'unreliable_online_status';
|
|
184941
185099
|
} | {
|
|
184942
185100
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
184943
185101
|
message: string;
|
|
@@ -186243,6 +186401,13 @@ type Routes = {
|
|
|
186243
186401
|
created_at: string;
|
|
186244
186402
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186245
186403
|
warning_code: 'accessory_keypad_setup_required';
|
|
186404
|
+
} | {
|
|
186405
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186406
|
+
message: string;
|
|
186407
|
+
/** Date and time at which Seam created the warning. */
|
|
186408
|
+
created_at: string;
|
|
186409
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186410
|
+
warning_code: 'unreliable_online_status';
|
|
186246
186411
|
} | {
|
|
186247
186412
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186248
186413
|
message: string;
|
|
@@ -192568,7 +192733,6 @@ type Routes = {
|
|
|
192568
192733
|
access_methods: ('card' | 'mobile_key' | 'code')[];
|
|
192569
192734
|
method_issuance_strategy: 'first_available' | 'first_two_available' | 'all_available';
|
|
192570
192735
|
card_count_on_reservation_create?: number | undefined;
|
|
192571
|
-
code_count_on_reservation_create?: number | undefined;
|
|
192572
192736
|
instant_key_max_use_count?: number | undefined;
|
|
192573
192737
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
192574
192738
|
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
@@ -192652,7 +192816,6 @@ type Routes = {
|
|
|
192652
192816
|
access_methods: ('card' | 'mobile_key' | 'code')[];
|
|
192653
192817
|
method_issuance_strategy: 'first_available' | 'first_two_available' | 'all_available';
|
|
192654
192818
|
card_count_on_reservation_create?: number | undefined;
|
|
192655
|
-
code_count_on_reservation_create?: number | undefined;
|
|
192656
192819
|
instant_key_max_use_count?: number | undefined;
|
|
192657
192820
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
192658
192821
|
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
@@ -192949,7 +193112,6 @@ type Routes = {
|
|
|
192949
193112
|
access_methods: ('card' | 'mobile_key' | 'code')[];
|
|
192950
193113
|
method_issuance_strategy: 'first_available' | 'first_two_available' | 'all_available';
|
|
192951
193114
|
card_count_on_reservation_create?: number | undefined;
|
|
192952
|
-
code_count_on_reservation_create?: number | undefined;
|
|
192953
193115
|
instant_key_max_use_count?: number | undefined;
|
|
192954
193116
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
192955
193117
|
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
@@ -193032,7 +193194,6 @@ type Routes = {
|
|
|
193032
193194
|
access_methods: ('card' | 'mobile_key' | 'code')[];
|
|
193033
193195
|
method_issuance_strategy: 'first_available' | 'first_two_available' | 'all_available';
|
|
193034
193196
|
card_count_on_reservation_create?: number | undefined;
|
|
193035
|
-
code_count_on_reservation_create?: number | undefined;
|
|
193036
193197
|
instant_key_max_use_count?: number | undefined;
|
|
193037
193198
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
193038
193199
|
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
@@ -198810,6 +198971,13 @@ type Routes = {
|
|
|
198810
198971
|
created_at: string;
|
|
198811
198972
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
198812
198973
|
warning_code: 'accessory_keypad_setup_required';
|
|
198974
|
+
} | {
|
|
198975
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
198976
|
+
message: string;
|
|
198977
|
+
/** Date and time at which Seam created the warning. */
|
|
198978
|
+
created_at: string;
|
|
198979
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
198980
|
+
warning_code: 'unreliable_online_status';
|
|
198813
198981
|
} | {
|
|
198814
198982
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
198815
198983
|
message: string;
|
|
@@ -204709,6 +204877,13 @@ type Routes = {
|
|
|
204709
204877
|
created_at: string;
|
|
204710
204878
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
204711
204879
|
warning_code: 'accessory_keypad_setup_required';
|
|
204880
|
+
} | {
|
|
204881
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
204882
|
+
message: string;
|
|
204883
|
+
/** Date and time at which Seam created the warning. */
|
|
204884
|
+
created_at: string;
|
|
204885
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
204886
|
+
warning_code: 'unreliable_online_status';
|
|
204712
204887
|
} | {
|
|
204713
204888
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
204714
204889
|
message: string;
|
|
@@ -208631,6 +208806,13 @@ type Routes = {
|
|
|
208631
208806
|
created_at: string;
|
|
208632
208807
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
208633
208808
|
warning_code: 'accessory_keypad_setup_required';
|
|
208809
|
+
} | {
|
|
208810
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
208811
|
+
message: string;
|
|
208812
|
+
/** Date and time at which Seam created the warning. */
|
|
208813
|
+
created_at: string;
|
|
208814
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
208815
|
+
warning_code: 'unreliable_online_status';
|
|
208634
208816
|
} | {
|
|
208635
208817
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
208636
208818
|
message: string;
|
|
@@ -209936,6 +210118,13 @@ type Routes = {
|
|
|
209936
210118
|
created_at: string;
|
|
209937
210119
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
209938
210120
|
warning_code: 'accessory_keypad_setup_required';
|
|
210121
|
+
} | {
|
|
210122
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
210123
|
+
message: string;
|
|
210124
|
+
/** Date and time at which Seam created the warning. */
|
|
210125
|
+
created_at: string;
|
|
210126
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
210127
|
+
warning_code: 'unreliable_online_status';
|
|
209939
210128
|
} | {
|
|
209940
210129
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
209941
210130
|
message: string;
|
|
@@ -217287,6 +217476,13 @@ type Routes = {
|
|
|
217287
217476
|
created_at: string;
|
|
217288
217477
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
217289
217478
|
warning_code: 'accessory_keypad_setup_required';
|
|
217479
|
+
} | {
|
|
217480
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
217481
|
+
message: string;
|
|
217482
|
+
/** Date and time at which Seam created the warning. */
|
|
217483
|
+
created_at: string;
|
|
217484
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
217485
|
+
warning_code: 'unreliable_online_status';
|
|
217290
217486
|
} | {
|
|
217291
217487
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
217292
217488
|
message: string;
|
|
@@ -218594,6 +218790,13 @@ type Routes = {
|
|
|
218594
218790
|
created_at: string;
|
|
218595
218791
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
218596
218792
|
warning_code: 'accessory_keypad_setup_required';
|
|
218793
|
+
} | {
|
|
218794
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
218795
|
+
message: string;
|
|
218796
|
+
/** Date and time at which Seam created the warning. */
|
|
218797
|
+
created_at: string;
|
|
218798
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
218799
|
+
warning_code: 'unreliable_online_status';
|
|
218597
218800
|
} | {
|
|
218598
218801
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
218599
218802
|
message: string;
|
|
@@ -220879,6 +221082,13 @@ type Routes = {
|
|
|
220879
221082
|
created_at: string;
|
|
220880
221083
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
220881
221084
|
warning_code: 'accessory_keypad_setup_required';
|
|
221085
|
+
} | {
|
|
221086
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
221087
|
+
message: string;
|
|
221088
|
+
/** Date and time at which Seam created the warning. */
|
|
221089
|
+
created_at: string;
|
|
221090
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
221091
|
+
warning_code: 'unreliable_online_status';
|
|
220882
221092
|
} | {
|
|
220883
221093
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
220884
221094
|
message: string;
|
|
@@ -223587,6 +223797,13 @@ type Routes = {
|
|
|
223587
223797
|
created_at: string;
|
|
223588
223798
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
223589
223799
|
warning_code: 'accessory_keypad_setup_required';
|
|
223800
|
+
} | {
|
|
223801
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
223802
|
+
message: string;
|
|
223803
|
+
/** Date and time at which Seam created the warning. */
|
|
223804
|
+
created_at: string;
|
|
223805
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
223806
|
+
warning_code: 'unreliable_online_status';
|
|
223590
223807
|
} | {
|
|
223591
223808
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
223592
223809
|
message: string;
|