@seamapi/types 1.758.0 → 1.760.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 +90 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +307 -0
- package/dist/index.cjs +90 -4
- 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 +41 -0
- package/lib/seam/connect/openapi.js +78 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +153 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +90 -2
- package/src/lib/seam/connect/route-types.ts +173 -0
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;
|
|
@@ -86542,6 +86655,8 @@ declare const _default: {
|
|
|
86542
86655
|
description: string;
|
|
86543
86656
|
format: string;
|
|
86544
86657
|
type: string;
|
|
86658
|
+
default?: never;
|
|
86659
|
+
nullable?: never;
|
|
86545
86660
|
};
|
|
86546
86661
|
} | {
|
|
86547
86662
|
in: string;
|
|
@@ -86550,6 +86665,28 @@ declare const _default: {
|
|
|
86550
86665
|
description: string;
|
|
86551
86666
|
type: string;
|
|
86552
86667
|
format?: never;
|
|
86668
|
+
default?: never;
|
|
86669
|
+
nullable?: never;
|
|
86670
|
+
};
|
|
86671
|
+
} | {
|
|
86672
|
+
in: string;
|
|
86673
|
+
name: string;
|
|
86674
|
+
schema: {
|
|
86675
|
+
default: number;
|
|
86676
|
+
description: string;
|
|
86677
|
+
format: string;
|
|
86678
|
+
type: string;
|
|
86679
|
+
nullable?: never;
|
|
86680
|
+
};
|
|
86681
|
+
} | {
|
|
86682
|
+
in: string;
|
|
86683
|
+
name: string;
|
|
86684
|
+
schema: {
|
|
86685
|
+
description: string;
|
|
86686
|
+
nullable: boolean;
|
|
86687
|
+
type: string;
|
|
86688
|
+
format?: never;
|
|
86689
|
+
default?: never;
|
|
86553
86690
|
};
|
|
86554
86691
|
})[];
|
|
86555
86692
|
responses: {
|
|
@@ -86982,6 +87119,9 @@ declare const _default: {
|
|
|
86982
87119
|
ok: {
|
|
86983
87120
|
type: string;
|
|
86984
87121
|
};
|
|
87122
|
+
pagination: {
|
|
87123
|
+
$ref: string;
|
|
87124
|
+
};
|
|
86985
87125
|
};
|
|
86986
87126
|
required: string[];
|
|
86987
87127
|
type: string;
|
|
@@ -87045,6 +87185,17 @@ declare const _default: {
|
|
|
87045
87185
|
format: string;
|
|
87046
87186
|
type: string;
|
|
87047
87187
|
};
|
|
87188
|
+
limit: {
|
|
87189
|
+
default: number;
|
|
87190
|
+
description: string;
|
|
87191
|
+
format: string;
|
|
87192
|
+
type: string;
|
|
87193
|
+
};
|
|
87194
|
+
page_cursor: {
|
|
87195
|
+
description: string;
|
|
87196
|
+
nullable: boolean;
|
|
87197
|
+
type: string;
|
|
87198
|
+
};
|
|
87048
87199
|
reservation_key: {
|
|
87049
87200
|
description: string;
|
|
87050
87201
|
type: string;
|
|
@@ -87490,6 +87641,9 @@ declare const _default: {
|
|
|
87490
87641
|
ok: {
|
|
87491
87642
|
type: string;
|
|
87492
87643
|
};
|
|
87644
|
+
pagination: {
|
|
87645
|
+
$ref: string;
|
|
87646
|
+
};
|
|
87493
87647
|
};
|
|
87494
87648
|
required: string[];
|
|
87495
87649
|
type: string;
|
|
@@ -144594,6 +144748,13 @@ type Routes = {
|
|
|
144594
144748
|
created_at: string;
|
|
144595
144749
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144596
144750
|
warning_code: 'accessory_keypad_setup_required';
|
|
144751
|
+
} | {
|
|
144752
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144753
|
+
message: string;
|
|
144754
|
+
/** Date and time at which Seam created the warning. */
|
|
144755
|
+
created_at: string;
|
|
144756
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144757
|
+
warning_code: 'unreliable_online_status';
|
|
144597
144758
|
} | {
|
|
144598
144759
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144599
144760
|
message: string;
|
|
@@ -145917,6 +146078,10 @@ type Routes = {
|
|
|
145917
146078
|
acs_entrance_id?: string | undefined;
|
|
145918
146079
|
/** Filter unmanaged Access Grants by reservation_key. */
|
|
145919
146080
|
reservation_key?: string | undefined;
|
|
146081
|
+
/** Numerical limit on the number of unmanaged access grants to return. */
|
|
146082
|
+
limit?: number;
|
|
146083
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
146084
|
+
page_cursor?: (string | undefined) | null;
|
|
145920
146085
|
};
|
|
145921
146086
|
formData: {};
|
|
145922
146087
|
jsonResponse: {
|
|
@@ -146069,6 +146234,15 @@ type Routes = {
|
|
|
146069
146234
|
/** ID of user identity to which the Access Grant gives access. */
|
|
146070
146235
|
user_identity_id?: string | undefined;
|
|
146071
146236
|
}[];
|
|
146237
|
+
/** Information about the current page of results. */
|
|
146238
|
+
pagination: {
|
|
146239
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
146240
|
+
next_page_cursor: string | null;
|
|
146241
|
+
/** Indicates whether there is another page of results after this one. */
|
|
146242
|
+
has_next_page: boolean;
|
|
146243
|
+
/** URL to get the next page of results. */
|
|
146244
|
+
next_page_url: string | null;
|
|
146245
|
+
};
|
|
146072
146246
|
};
|
|
146073
146247
|
maxDuration: undefined;
|
|
146074
146248
|
};
|
|
@@ -148811,6 +148985,13 @@ type Routes = {
|
|
|
148811
148985
|
created_at: string;
|
|
148812
148986
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
148813
148987
|
warning_code: 'accessory_keypad_setup_required';
|
|
148988
|
+
} | {
|
|
148989
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
148990
|
+
message: string;
|
|
148991
|
+
/** Date and time at which Seam created the warning. */
|
|
148992
|
+
created_at: string;
|
|
148993
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
148994
|
+
warning_code: 'unreliable_online_status';
|
|
148814
148995
|
} | {
|
|
148815
148996
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
148816
148997
|
message: string;
|
|
@@ -164957,6 +165138,13 @@ type Routes = {
|
|
|
164957
165138
|
created_at: string;
|
|
164958
165139
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
164959
165140
|
warning_code: 'accessory_keypad_setup_required';
|
|
165141
|
+
} | {
|
|
165142
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
165143
|
+
message: string;
|
|
165144
|
+
/** Date and time at which Seam created the warning. */
|
|
165145
|
+
created_at: string;
|
|
165146
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
165147
|
+
warning_code: 'unreliable_online_status';
|
|
164960
165148
|
} | {
|
|
164961
165149
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
164962
165150
|
message: string;
|
|
@@ -166313,6 +166501,13 @@ type Routes = {
|
|
|
166313
166501
|
created_at: string;
|
|
166314
166502
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
166315
166503
|
warning_code: 'accessory_keypad_setup_required';
|
|
166504
|
+
} | {
|
|
166505
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
166506
|
+
message: string;
|
|
166507
|
+
/** Date and time at which Seam created the warning. */
|
|
166508
|
+
created_at: string;
|
|
166509
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
166510
|
+
warning_code: 'unreliable_online_status';
|
|
166316
166511
|
} | {
|
|
166317
166512
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
166318
166513
|
message: string;
|
|
@@ -166850,6 +167045,13 @@ type Routes = {
|
|
|
166850
167045
|
created_at: string;
|
|
166851
167046
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
166852
167047
|
warning_code: 'accessory_keypad_setup_required';
|
|
167048
|
+
} | {
|
|
167049
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
167050
|
+
message: string;
|
|
167051
|
+
/** Date and time at which Seam created the warning. */
|
|
167052
|
+
created_at: string;
|
|
167053
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
167054
|
+
warning_code: 'unreliable_online_status';
|
|
166853
167055
|
} | {
|
|
166854
167056
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
166855
167057
|
message: string;
|
|
@@ -167323,6 +167525,13 @@ type Routes = {
|
|
|
167323
167525
|
created_at: string;
|
|
167324
167526
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
167325
167527
|
warning_code: 'accessory_keypad_setup_required';
|
|
167528
|
+
} | {
|
|
167529
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
167530
|
+
message: string;
|
|
167531
|
+
/** Date and time at which Seam created the warning. */
|
|
167532
|
+
created_at: string;
|
|
167533
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
167534
|
+
warning_code: 'unreliable_online_status';
|
|
167326
167535
|
} | {
|
|
167327
167536
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
167328
167537
|
message: string;
|
|
@@ -174455,6 +174664,13 @@ type Routes = {
|
|
|
174455
174664
|
created_at: string;
|
|
174456
174665
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
174457
174666
|
warning_code: 'accessory_keypad_setup_required';
|
|
174667
|
+
} | {
|
|
174668
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174669
|
+
message: string;
|
|
174670
|
+
/** Date and time at which Seam created the warning. */
|
|
174671
|
+
created_at: string;
|
|
174672
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
174673
|
+
warning_code: 'unreliable_online_status';
|
|
174458
174674
|
} | {
|
|
174459
174675
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
174460
174676
|
message: string;
|
|
@@ -175761,6 +175977,13 @@ type Routes = {
|
|
|
175761
175977
|
created_at: string;
|
|
175762
175978
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
175763
175979
|
warning_code: 'accessory_keypad_setup_required';
|
|
175980
|
+
} | {
|
|
175981
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
175982
|
+
message: string;
|
|
175983
|
+
/** Date and time at which Seam created the warning. */
|
|
175984
|
+
created_at: string;
|
|
175985
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
175986
|
+
warning_code: 'unreliable_online_status';
|
|
175764
175987
|
} | {
|
|
175765
175988
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
175766
175989
|
message: string;
|
|
@@ -177117,6 +177340,13 @@ type Routes = {
|
|
|
177117
177340
|
created_at: string;
|
|
177118
177341
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
177119
177342
|
warning_code: 'accessory_keypad_setup_required';
|
|
177343
|
+
} | {
|
|
177344
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
177345
|
+
message: string;
|
|
177346
|
+
/** Date and time at which Seam created the warning. */
|
|
177347
|
+
created_at: string;
|
|
177348
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
177349
|
+
warning_code: 'unreliable_online_status';
|
|
177120
177350
|
} | {
|
|
177121
177351
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
177122
177352
|
message: string;
|
|
@@ -178422,6 +178652,13 @@ type Routes = {
|
|
|
178422
178652
|
created_at: string;
|
|
178423
178653
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
178424
178654
|
warning_code: 'accessory_keypad_setup_required';
|
|
178655
|
+
} | {
|
|
178656
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
178657
|
+
message: string;
|
|
178658
|
+
/** Date and time at which Seam created the warning. */
|
|
178659
|
+
created_at: string;
|
|
178660
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
178661
|
+
warning_code: 'unreliable_online_status';
|
|
178425
178662
|
} | {
|
|
178426
178663
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
178427
178664
|
message: string;
|
|
@@ -184884,6 +185121,13 @@ type Routes = {
|
|
|
184884
185121
|
created_at: string;
|
|
184885
185122
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
184886
185123
|
warning_code: 'accessory_keypad_setup_required';
|
|
185124
|
+
} | {
|
|
185125
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
185126
|
+
message: string;
|
|
185127
|
+
/** Date and time at which Seam created the warning. */
|
|
185128
|
+
created_at: string;
|
|
185129
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
185130
|
+
warning_code: 'unreliable_online_status';
|
|
184887
185131
|
} | {
|
|
184888
185132
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
184889
185133
|
message: string;
|
|
@@ -186189,6 +186433,13 @@ type Routes = {
|
|
|
186189
186433
|
created_at: string;
|
|
186190
186434
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186191
186435
|
warning_code: 'accessory_keypad_setup_required';
|
|
186436
|
+
} | {
|
|
186437
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186438
|
+
message: string;
|
|
186439
|
+
/** Date and time at which Seam created the warning. */
|
|
186440
|
+
created_at: string;
|
|
186441
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186442
|
+
warning_code: 'unreliable_online_status';
|
|
186192
186443
|
} | {
|
|
186193
186444
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186194
186445
|
message: string;
|
|
@@ -198756,6 +199007,13 @@ type Routes = {
|
|
|
198756
199007
|
created_at: string;
|
|
198757
199008
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
198758
199009
|
warning_code: 'accessory_keypad_setup_required';
|
|
199010
|
+
} | {
|
|
199011
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
199012
|
+
message: string;
|
|
199013
|
+
/** Date and time at which Seam created the warning. */
|
|
199014
|
+
created_at: string;
|
|
199015
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
199016
|
+
warning_code: 'unreliable_online_status';
|
|
198759
199017
|
} | {
|
|
198760
199018
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
198761
199019
|
message: string;
|
|
@@ -204655,6 +204913,13 @@ type Routes = {
|
|
|
204655
204913
|
created_at: string;
|
|
204656
204914
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
204657
204915
|
warning_code: 'accessory_keypad_setup_required';
|
|
204916
|
+
} | {
|
|
204917
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
204918
|
+
message: string;
|
|
204919
|
+
/** Date and time at which Seam created the warning. */
|
|
204920
|
+
created_at: string;
|
|
204921
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
204922
|
+
warning_code: 'unreliable_online_status';
|
|
204658
204923
|
} | {
|
|
204659
204924
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
204660
204925
|
message: string;
|
|
@@ -208577,6 +208842,13 @@ type Routes = {
|
|
|
208577
208842
|
created_at: string;
|
|
208578
208843
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
208579
208844
|
warning_code: 'accessory_keypad_setup_required';
|
|
208845
|
+
} | {
|
|
208846
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
208847
|
+
message: string;
|
|
208848
|
+
/** Date and time at which Seam created the warning. */
|
|
208849
|
+
created_at: string;
|
|
208850
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
208851
|
+
warning_code: 'unreliable_online_status';
|
|
208580
208852
|
} | {
|
|
208581
208853
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
208582
208854
|
message: string;
|
|
@@ -209882,6 +210154,13 @@ type Routes = {
|
|
|
209882
210154
|
created_at: string;
|
|
209883
210155
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
209884
210156
|
warning_code: 'accessory_keypad_setup_required';
|
|
210157
|
+
} | {
|
|
210158
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
210159
|
+
message: string;
|
|
210160
|
+
/** Date and time at which Seam created the warning. */
|
|
210161
|
+
created_at: string;
|
|
210162
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
210163
|
+
warning_code: 'unreliable_online_status';
|
|
209885
210164
|
} | {
|
|
209886
210165
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
209887
210166
|
message: string;
|
|
@@ -217233,6 +217512,13 @@ type Routes = {
|
|
|
217233
217512
|
created_at: string;
|
|
217234
217513
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
217235
217514
|
warning_code: 'accessory_keypad_setup_required';
|
|
217515
|
+
} | {
|
|
217516
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
217517
|
+
message: string;
|
|
217518
|
+
/** Date and time at which Seam created the warning. */
|
|
217519
|
+
created_at: string;
|
|
217520
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
217521
|
+
warning_code: 'unreliable_online_status';
|
|
217236
217522
|
} | {
|
|
217237
217523
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
217238
217524
|
message: string;
|
|
@@ -218540,6 +218826,13 @@ type Routes = {
|
|
|
218540
218826
|
created_at: string;
|
|
218541
218827
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
218542
218828
|
warning_code: 'accessory_keypad_setup_required';
|
|
218829
|
+
} | {
|
|
218830
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
218831
|
+
message: string;
|
|
218832
|
+
/** Date and time at which Seam created the warning. */
|
|
218833
|
+
created_at: string;
|
|
218834
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
218835
|
+
warning_code: 'unreliable_online_status';
|
|
218543
218836
|
} | {
|
|
218544
218837
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
218545
218838
|
message: string;
|
|
@@ -220825,6 +221118,13 @@ type Routes = {
|
|
|
220825
221118
|
created_at: string;
|
|
220826
221119
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
220827
221120
|
warning_code: 'accessory_keypad_setup_required';
|
|
221121
|
+
} | {
|
|
221122
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
221123
|
+
message: string;
|
|
221124
|
+
/** Date and time at which Seam created the warning. */
|
|
221125
|
+
created_at: string;
|
|
221126
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
221127
|
+
warning_code: 'unreliable_online_status';
|
|
220828
221128
|
} | {
|
|
220829
221129
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
220830
221130
|
message: string;
|
|
@@ -223533,6 +223833,13 @@ type Routes = {
|
|
|
223533
223833
|
created_at: string;
|
|
223534
223834
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
223535
223835
|
warning_code: 'accessory_keypad_setup_required';
|
|
223836
|
+
} | {
|
|
223837
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
223838
|
+
message: string;
|
|
223839
|
+
/** Date and time at which Seam created the warning. */
|
|
223840
|
+
created_at: string;
|
|
223841
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
223842
|
+
warning_code: 'unreliable_online_status';
|
|
223536
223843
|
} | {
|
|
223537
223844
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
223538
223845
|
message: string;
|