@seamapi/types 1.959.0 → 1.961.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 +51 -519
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -1392
- package/dist/index.cjs +51 -519
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +58 -78
- package/lib/seam/connect/models/access-codes/managed-access-code.js +11 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +21 -78
- package/lib/seam/connect/models/devices/device.d.ts +0 -319
- package/lib/seam/connect/models/devices/device.js +0 -59
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -99
- package/lib/seam/connect/openapi.js +42 -468
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -977
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -0
- package/src/lib/seam/connect/models/devices/device.ts +0 -63
- package/src/lib/seam/connect/openapi.ts +55 -543
- package/src/lib/seam/connect/route-types.ts +88 -1090
package/dist/connect.d.cts
CHANGED
|
@@ -318,6 +318,19 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
318
318
|
message: string;
|
|
319
319
|
warning_code: "being_deleted";
|
|
320
320
|
created_at?: string | undefined;
|
|
321
|
+
}>, z.ZodObject<{
|
|
322
|
+
message: z.ZodString;
|
|
323
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
324
|
+
} & {
|
|
325
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_access_code">;
|
|
326
|
+
}, "strip", z.ZodTypeAny, {
|
|
327
|
+
message: string;
|
|
328
|
+
warning_code: "unknown_issue_with_access_code";
|
|
329
|
+
created_at?: string | undefined;
|
|
330
|
+
}, {
|
|
331
|
+
message: string;
|
|
332
|
+
warning_code: "unknown_issue_with_access_code";
|
|
333
|
+
created_at?: string | undefined;
|
|
321
334
|
}>]>;
|
|
322
335
|
type AccessCodeWarning = z.infer<typeof access_code_warning>;
|
|
323
336
|
declare const access_code: z.ZodObject<{
|
|
@@ -730,22 +743,6 @@ declare const access_code: z.ZodObject<{
|
|
|
730
743
|
created_at: string;
|
|
731
744
|
error_code: "august_lock_not_authorized";
|
|
732
745
|
is_device_error: true;
|
|
733
|
-
}> | z.ZodObject<{
|
|
734
|
-
message: z.ZodString;
|
|
735
|
-
is_device_error: z.ZodLiteral<true>;
|
|
736
|
-
created_at: z.ZodString;
|
|
737
|
-
} & {
|
|
738
|
-
error_code: z.ZodLiteral<"august_lock_missing_bridge">;
|
|
739
|
-
}, "strip", z.ZodTypeAny, {
|
|
740
|
-
message: string;
|
|
741
|
-
created_at: string;
|
|
742
|
-
error_code: "august_lock_missing_bridge";
|
|
743
|
-
is_device_error: true;
|
|
744
|
-
}, {
|
|
745
|
-
message: string;
|
|
746
|
-
created_at: string;
|
|
747
|
-
error_code: "august_lock_missing_bridge";
|
|
748
|
-
is_device_error: true;
|
|
749
746
|
}> | z.ZodObject<{
|
|
750
747
|
message: z.ZodString;
|
|
751
748
|
created_at: z.ZodString;
|
|
@@ -788,22 +785,6 @@ declare const access_code: z.ZodObject<{
|
|
|
788
785
|
message: z.ZodString;
|
|
789
786
|
is_device_error: z.ZodLiteral<true>;
|
|
790
787
|
created_at: z.ZodString;
|
|
791
|
-
} & {
|
|
792
|
-
error_code: z.ZodLiteral<"ttlock_lock_not_paired_to_gateway">;
|
|
793
|
-
}, "strip", z.ZodTypeAny, {
|
|
794
|
-
message: string;
|
|
795
|
-
created_at: string;
|
|
796
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
797
|
-
is_device_error: true;
|
|
798
|
-
}, {
|
|
799
|
-
message: string;
|
|
800
|
-
created_at: string;
|
|
801
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
802
|
-
is_device_error: true;
|
|
803
|
-
}> | z.ZodObject<{
|
|
804
|
-
message: z.ZodString;
|
|
805
|
-
is_device_error: z.ZodLiteral<true>;
|
|
806
|
-
created_at: z.ZodString;
|
|
807
788
|
} & {
|
|
808
789
|
error_code: z.ZodLiteral<"missing_device_credentials">;
|
|
809
790
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -848,22 +829,6 @@ declare const access_code: z.ZodObject<{
|
|
|
848
829
|
created_at: string;
|
|
849
830
|
error_code: "subscription_required";
|
|
850
831
|
is_device_error: true;
|
|
851
|
-
}> | z.ZodObject<{
|
|
852
|
-
message: z.ZodString;
|
|
853
|
-
is_device_error: z.ZodLiteral<true>;
|
|
854
|
-
created_at: z.ZodString;
|
|
855
|
-
} & {
|
|
856
|
-
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
857
|
-
}, "strip", z.ZodTypeAny, {
|
|
858
|
-
message: string;
|
|
859
|
-
created_at: string;
|
|
860
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
861
|
-
is_device_error: true;
|
|
862
|
-
}, {
|
|
863
|
-
message: string;
|
|
864
|
-
created_at: string;
|
|
865
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
866
|
-
is_device_error: true;
|
|
867
832
|
}>)[]]>, "many">;
|
|
868
833
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
869
834
|
message: z.ZodString;
|
|
@@ -1021,6 +986,19 @@ declare const access_code: z.ZodObject<{
|
|
|
1021
986
|
message: string;
|
|
1022
987
|
warning_code: "being_deleted";
|
|
1023
988
|
created_at?: string | undefined;
|
|
989
|
+
}>, z.ZodObject<{
|
|
990
|
+
message: z.ZodString;
|
|
991
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
992
|
+
} & {
|
|
993
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_access_code">;
|
|
994
|
+
}, "strip", z.ZodTypeAny, {
|
|
995
|
+
message: string;
|
|
996
|
+
warning_code: "unknown_issue_with_access_code";
|
|
997
|
+
created_at?: string | undefined;
|
|
998
|
+
}, {
|
|
999
|
+
message: string;
|
|
1000
|
+
warning_code: "unknown_issue_with_access_code";
|
|
1001
|
+
created_at?: string | undefined;
|
|
1024
1002
|
}>]>, "many">;
|
|
1025
1003
|
is_managed: z.ZodLiteral<true>;
|
|
1026
1004
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1306,11 +1284,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1306
1284
|
created_at: string;
|
|
1307
1285
|
error_code: "august_lock_not_authorized";
|
|
1308
1286
|
is_device_error: true;
|
|
1309
|
-
} | {
|
|
1310
|
-
message: string;
|
|
1311
|
-
created_at: string;
|
|
1312
|
-
error_code: "august_lock_missing_bridge";
|
|
1313
|
-
is_device_error: true;
|
|
1314
1287
|
} | {
|
|
1315
1288
|
message: string;
|
|
1316
1289
|
created_at: string;
|
|
@@ -1323,11 +1296,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1323
1296
|
error_code: "dormakaba_sites_disconnected";
|
|
1324
1297
|
is_connected_account_error: true;
|
|
1325
1298
|
is_device_error: false;
|
|
1326
|
-
} | {
|
|
1327
|
-
message: string;
|
|
1328
|
-
created_at: string;
|
|
1329
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
1330
|
-
is_device_error: true;
|
|
1331
1299
|
} | {
|
|
1332
1300
|
message: string;
|
|
1333
1301
|
created_at: string;
|
|
@@ -1343,11 +1311,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1343
1311
|
created_at: string;
|
|
1344
1312
|
error_code: "subscription_required";
|
|
1345
1313
|
is_device_error: true;
|
|
1346
|
-
} | {
|
|
1347
|
-
message: string;
|
|
1348
|
-
created_at: string;
|
|
1349
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
1350
|
-
is_device_error: true;
|
|
1351
1314
|
} | {
|
|
1352
1315
|
message: string;
|
|
1353
1316
|
error_code: "provider_issue";
|
|
@@ -1443,6 +1406,10 @@ declare const access_code: z.ZodObject<{
|
|
|
1443
1406
|
message: string;
|
|
1444
1407
|
warning_code: "being_deleted";
|
|
1445
1408
|
created_at?: string | undefined;
|
|
1409
|
+
} | {
|
|
1410
|
+
message: string;
|
|
1411
|
+
warning_code: "unknown_issue_with_access_code";
|
|
1412
|
+
created_at?: string | undefined;
|
|
1446
1413
|
})[];
|
|
1447
1414
|
is_managed: true;
|
|
1448
1415
|
common_code_key: string | null;
|
|
@@ -1589,11 +1556,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1589
1556
|
created_at: string;
|
|
1590
1557
|
error_code: "august_lock_not_authorized";
|
|
1591
1558
|
is_device_error: true;
|
|
1592
|
-
} | {
|
|
1593
|
-
message: string;
|
|
1594
|
-
created_at: string;
|
|
1595
|
-
error_code: "august_lock_missing_bridge";
|
|
1596
|
-
is_device_error: true;
|
|
1597
1559
|
} | {
|
|
1598
1560
|
message: string;
|
|
1599
1561
|
created_at: string;
|
|
@@ -1606,11 +1568,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1606
1568
|
error_code: "dormakaba_sites_disconnected";
|
|
1607
1569
|
is_connected_account_error: true;
|
|
1608
1570
|
is_device_error: false;
|
|
1609
|
-
} | {
|
|
1610
|
-
message: string;
|
|
1611
|
-
created_at: string;
|
|
1612
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
1613
|
-
is_device_error: true;
|
|
1614
1571
|
} | {
|
|
1615
1572
|
message: string;
|
|
1616
1573
|
created_at: string;
|
|
@@ -1626,11 +1583,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1626
1583
|
created_at: string;
|
|
1627
1584
|
error_code: "subscription_required";
|
|
1628
1585
|
is_device_error: true;
|
|
1629
|
-
} | {
|
|
1630
|
-
message: string;
|
|
1631
|
-
created_at: string;
|
|
1632
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
1633
|
-
is_device_error: true;
|
|
1634
1586
|
} | {
|
|
1635
1587
|
message: string;
|
|
1636
1588
|
error_code: "provider_issue";
|
|
@@ -1726,6 +1678,10 @@ declare const access_code: z.ZodObject<{
|
|
|
1726
1678
|
message: string;
|
|
1727
1679
|
warning_code: "being_deleted";
|
|
1728
1680
|
created_at?: string | undefined;
|
|
1681
|
+
} | {
|
|
1682
|
+
message: string;
|
|
1683
|
+
warning_code: "unknown_issue_with_access_code";
|
|
1684
|
+
created_at?: string | undefined;
|
|
1729
1685
|
})[];
|
|
1730
1686
|
is_managed: true;
|
|
1731
1687
|
common_code_key: string | null;
|
|
@@ -2207,22 +2163,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2207
2163
|
created_at: string;
|
|
2208
2164
|
error_code: "august_lock_not_authorized";
|
|
2209
2165
|
is_device_error: true;
|
|
2210
|
-
}> | z.ZodObject<{
|
|
2211
|
-
message: z.ZodString;
|
|
2212
|
-
is_device_error: z.ZodLiteral<true>;
|
|
2213
|
-
created_at: z.ZodString;
|
|
2214
|
-
} & {
|
|
2215
|
-
error_code: z.ZodLiteral<"august_lock_missing_bridge">;
|
|
2216
|
-
}, "strip", z.ZodTypeAny, {
|
|
2217
|
-
message: string;
|
|
2218
|
-
created_at: string;
|
|
2219
|
-
error_code: "august_lock_missing_bridge";
|
|
2220
|
-
is_device_error: true;
|
|
2221
|
-
}, {
|
|
2222
|
-
message: string;
|
|
2223
|
-
created_at: string;
|
|
2224
|
-
error_code: "august_lock_missing_bridge";
|
|
2225
|
-
is_device_error: true;
|
|
2226
2166
|
}> | z.ZodObject<{
|
|
2227
2167
|
message: z.ZodString;
|
|
2228
2168
|
created_at: z.ZodString;
|
|
@@ -2265,22 +2205,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2265
2205
|
message: z.ZodString;
|
|
2266
2206
|
is_device_error: z.ZodLiteral<true>;
|
|
2267
2207
|
created_at: z.ZodString;
|
|
2268
|
-
} & {
|
|
2269
|
-
error_code: z.ZodLiteral<"ttlock_lock_not_paired_to_gateway">;
|
|
2270
|
-
}, "strip", z.ZodTypeAny, {
|
|
2271
|
-
message: string;
|
|
2272
|
-
created_at: string;
|
|
2273
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
2274
|
-
is_device_error: true;
|
|
2275
|
-
}, {
|
|
2276
|
-
message: string;
|
|
2277
|
-
created_at: string;
|
|
2278
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
2279
|
-
is_device_error: true;
|
|
2280
|
-
}> | z.ZodObject<{
|
|
2281
|
-
message: z.ZodString;
|
|
2282
|
-
is_device_error: z.ZodLiteral<true>;
|
|
2283
|
-
created_at: z.ZodString;
|
|
2284
2208
|
} & {
|
|
2285
2209
|
error_code: z.ZodLiteral<"missing_device_credentials">;
|
|
2286
2210
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2325,22 +2249,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2325
2249
|
created_at: string;
|
|
2326
2250
|
error_code: "subscription_required";
|
|
2327
2251
|
is_device_error: true;
|
|
2328
|
-
}> | z.ZodObject<{
|
|
2329
|
-
message: z.ZodString;
|
|
2330
|
-
is_device_error: z.ZodLiteral<true>;
|
|
2331
|
-
created_at: z.ZodString;
|
|
2332
|
-
} & {
|
|
2333
|
-
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
2334
|
-
}, "strip", z.ZodTypeAny, {
|
|
2335
|
-
message: string;
|
|
2336
|
-
created_at: string;
|
|
2337
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
2338
|
-
is_device_error: true;
|
|
2339
|
-
}, {
|
|
2340
|
-
message: string;
|
|
2341
|
-
created_at: string;
|
|
2342
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
2343
|
-
is_device_error: true;
|
|
2344
2252
|
}>)[]]>, "many">;
|
|
2345
2253
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
2346
2254
|
message: z.ZodString;
|
|
@@ -2498,6 +2406,19 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2498
2406
|
message: string;
|
|
2499
2407
|
warning_code: "being_deleted";
|
|
2500
2408
|
created_at?: string | undefined;
|
|
2409
|
+
}>, z.ZodObject<{
|
|
2410
|
+
message: z.ZodString;
|
|
2411
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2412
|
+
} & {
|
|
2413
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_access_code">;
|
|
2414
|
+
}, "strip", z.ZodTypeAny, {
|
|
2415
|
+
message: string;
|
|
2416
|
+
warning_code: "unknown_issue_with_access_code";
|
|
2417
|
+
created_at?: string | undefined;
|
|
2418
|
+
}, {
|
|
2419
|
+
message: string;
|
|
2420
|
+
warning_code: "unknown_issue_with_access_code";
|
|
2421
|
+
created_at?: string | undefined;
|
|
2501
2422
|
}>]>, "many">;
|
|
2502
2423
|
access_code_id: z.ZodString;
|
|
2503
2424
|
} & {
|
|
@@ -2609,11 +2530,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2609
2530
|
created_at: string;
|
|
2610
2531
|
error_code: "august_lock_not_authorized";
|
|
2611
2532
|
is_device_error: true;
|
|
2612
|
-
} | {
|
|
2613
|
-
message: string;
|
|
2614
|
-
created_at: string;
|
|
2615
|
-
error_code: "august_lock_missing_bridge";
|
|
2616
|
-
is_device_error: true;
|
|
2617
2533
|
} | {
|
|
2618
2534
|
message: string;
|
|
2619
2535
|
created_at: string;
|
|
@@ -2626,11 +2542,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2626
2542
|
error_code: "dormakaba_sites_disconnected";
|
|
2627
2543
|
is_connected_account_error: true;
|
|
2628
2544
|
is_device_error: false;
|
|
2629
|
-
} | {
|
|
2630
|
-
message: string;
|
|
2631
|
-
created_at: string;
|
|
2632
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
2633
|
-
is_device_error: true;
|
|
2634
2545
|
} | {
|
|
2635
2546
|
message: string;
|
|
2636
2547
|
created_at: string;
|
|
@@ -2646,11 +2557,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2646
2557
|
created_at: string;
|
|
2647
2558
|
error_code: "subscription_required";
|
|
2648
2559
|
is_device_error: true;
|
|
2649
|
-
} | {
|
|
2650
|
-
message: string;
|
|
2651
|
-
created_at: string;
|
|
2652
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
2653
|
-
is_device_error: true;
|
|
2654
2560
|
} | {
|
|
2655
2561
|
message: string;
|
|
2656
2562
|
error_code: "provider_issue";
|
|
@@ -2746,6 +2652,10 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2746
2652
|
message: string;
|
|
2747
2653
|
warning_code: "being_deleted";
|
|
2748
2654
|
created_at?: string | undefined;
|
|
2655
|
+
} | {
|
|
2656
|
+
message: string;
|
|
2657
|
+
warning_code: "unknown_issue_with_access_code";
|
|
2658
|
+
created_at?: string | undefined;
|
|
2749
2659
|
})[];
|
|
2750
2660
|
is_managed: false;
|
|
2751
2661
|
access_code_id: string;
|
|
@@ -2839,11 +2749,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2839
2749
|
created_at: string;
|
|
2840
2750
|
error_code: "august_lock_not_authorized";
|
|
2841
2751
|
is_device_error: true;
|
|
2842
|
-
} | {
|
|
2843
|
-
message: string;
|
|
2844
|
-
created_at: string;
|
|
2845
|
-
error_code: "august_lock_missing_bridge";
|
|
2846
|
-
is_device_error: true;
|
|
2847
2752
|
} | {
|
|
2848
2753
|
message: string;
|
|
2849
2754
|
created_at: string;
|
|
@@ -2856,11 +2761,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2856
2761
|
error_code: "dormakaba_sites_disconnected";
|
|
2857
2762
|
is_connected_account_error: true;
|
|
2858
2763
|
is_device_error: false;
|
|
2859
|
-
} | {
|
|
2860
|
-
message: string;
|
|
2861
|
-
created_at: string;
|
|
2862
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
2863
|
-
is_device_error: true;
|
|
2864
2764
|
} | {
|
|
2865
2765
|
message: string;
|
|
2866
2766
|
created_at: string;
|
|
@@ -2876,11 +2776,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2876
2776
|
created_at: string;
|
|
2877
2777
|
error_code: "subscription_required";
|
|
2878
2778
|
is_device_error: true;
|
|
2879
|
-
} | {
|
|
2880
|
-
message: string;
|
|
2881
|
-
created_at: string;
|
|
2882
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
2883
|
-
is_device_error: true;
|
|
2884
2779
|
} | {
|
|
2885
2780
|
message: string;
|
|
2886
2781
|
error_code: "provider_issue";
|
|
@@ -2976,6 +2871,10 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2976
2871
|
message: string;
|
|
2977
2872
|
warning_code: "being_deleted";
|
|
2978
2873
|
created_at?: string | undefined;
|
|
2874
|
+
} | {
|
|
2875
|
+
message: string;
|
|
2876
|
+
warning_code: "unknown_issue_with_access_code";
|
|
2877
|
+
created_at?: string | undefined;
|
|
2979
2878
|
})[];
|
|
2980
2879
|
is_managed: false;
|
|
2981
2880
|
access_code_id: string;
|
|
@@ -14212,38 +14111,6 @@ declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
|
14212
14111
|
message: z.ZodString;
|
|
14213
14112
|
is_device_error: z.ZodLiteral<true>;
|
|
14214
14113
|
created_at: z.ZodString;
|
|
14215
|
-
} & {
|
|
14216
|
-
error_code: z.ZodLiteral<"august_lock_missing_bridge">;
|
|
14217
|
-
}, "strip", z.ZodTypeAny, {
|
|
14218
|
-
message: string;
|
|
14219
|
-
created_at: string;
|
|
14220
|
-
error_code: "august_lock_missing_bridge";
|
|
14221
|
-
is_device_error: true;
|
|
14222
|
-
}, {
|
|
14223
|
-
message: string;
|
|
14224
|
-
created_at: string;
|
|
14225
|
-
error_code: "august_lock_missing_bridge";
|
|
14226
|
-
is_device_error: true;
|
|
14227
|
-
}>, z.ZodObject<{
|
|
14228
|
-
message: z.ZodString;
|
|
14229
|
-
is_device_error: z.ZodLiteral<true>;
|
|
14230
|
-
created_at: z.ZodString;
|
|
14231
|
-
} & {
|
|
14232
|
-
error_code: z.ZodLiteral<"ttlock_lock_not_paired_to_gateway">;
|
|
14233
|
-
}, "strip", z.ZodTypeAny, {
|
|
14234
|
-
message: string;
|
|
14235
|
-
created_at: string;
|
|
14236
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
14237
|
-
is_device_error: true;
|
|
14238
|
-
}, {
|
|
14239
|
-
message: string;
|
|
14240
|
-
created_at: string;
|
|
14241
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
14242
|
-
is_device_error: true;
|
|
14243
|
-
}>, z.ZodObject<{
|
|
14244
|
-
message: z.ZodString;
|
|
14245
|
-
is_device_error: z.ZodLiteral<true>;
|
|
14246
|
-
created_at: z.ZodString;
|
|
14247
14114
|
} & {
|
|
14248
14115
|
error_code: z.ZodLiteral<"missing_device_credentials">;
|
|
14249
14116
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14288,22 +14155,6 @@ declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
|
14288
14155
|
created_at: string;
|
|
14289
14156
|
error_code: "subscription_required";
|
|
14290
14157
|
is_device_error: true;
|
|
14291
|
-
}>, z.ZodObject<{
|
|
14292
|
-
message: z.ZodString;
|
|
14293
|
-
is_device_error: z.ZodLiteral<true>;
|
|
14294
|
-
created_at: z.ZodString;
|
|
14295
|
-
} & {
|
|
14296
|
-
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
14297
|
-
}, "strip", z.ZodTypeAny, {
|
|
14298
|
-
message: string;
|
|
14299
|
-
created_at: string;
|
|
14300
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
14301
|
-
is_device_error: true;
|
|
14302
|
-
}, {
|
|
14303
|
-
message: string;
|
|
14304
|
-
created_at: string;
|
|
14305
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
14306
|
-
is_device_error: true;
|
|
14307
14158
|
}>]>;
|
|
14308
14159
|
type DeviceError = z.infer<typeof device_error>;
|
|
14309
14160
|
declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
@@ -14335,19 +14186,6 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
14335
14186
|
}>, z.ZodObject<{
|
|
14336
14187
|
message: z.ZodString;
|
|
14337
14188
|
created_at: z.ZodString;
|
|
14338
|
-
} & {
|
|
14339
|
-
warning_code: z.ZodLiteral<"wyze_device_missing_gateway">;
|
|
14340
|
-
}, "strip", z.ZodTypeAny, {
|
|
14341
|
-
message: string;
|
|
14342
|
-
created_at: string;
|
|
14343
|
-
warning_code: "wyze_device_missing_gateway";
|
|
14344
|
-
}, {
|
|
14345
|
-
message: string;
|
|
14346
|
-
created_at: string;
|
|
14347
|
-
warning_code: "wyze_device_missing_gateway";
|
|
14348
|
-
}>, z.ZodObject<{
|
|
14349
|
-
message: z.ZodString;
|
|
14350
|
-
created_at: z.ZodString;
|
|
14351
14189
|
} & {
|
|
14352
14190
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
14353
14191
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17457,38 +17295,6 @@ declare const device: z.ZodObject<{
|
|
|
17457
17295
|
message: z.ZodString;
|
|
17458
17296
|
is_device_error: z.ZodLiteral<true>;
|
|
17459
17297
|
created_at: z.ZodString;
|
|
17460
|
-
} & {
|
|
17461
|
-
error_code: z.ZodLiteral<"august_lock_missing_bridge">;
|
|
17462
|
-
}, "strip", z.ZodTypeAny, {
|
|
17463
|
-
message: string;
|
|
17464
|
-
created_at: string;
|
|
17465
|
-
error_code: "august_lock_missing_bridge";
|
|
17466
|
-
is_device_error: true;
|
|
17467
|
-
}, {
|
|
17468
|
-
message: string;
|
|
17469
|
-
created_at: string;
|
|
17470
|
-
error_code: "august_lock_missing_bridge";
|
|
17471
|
-
is_device_error: true;
|
|
17472
|
-
}>, z.ZodObject<{
|
|
17473
|
-
message: z.ZodString;
|
|
17474
|
-
is_device_error: z.ZodLiteral<true>;
|
|
17475
|
-
created_at: z.ZodString;
|
|
17476
|
-
} & {
|
|
17477
|
-
error_code: z.ZodLiteral<"ttlock_lock_not_paired_to_gateway">;
|
|
17478
|
-
}, "strip", z.ZodTypeAny, {
|
|
17479
|
-
message: string;
|
|
17480
|
-
created_at: string;
|
|
17481
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
17482
|
-
is_device_error: true;
|
|
17483
|
-
}, {
|
|
17484
|
-
message: string;
|
|
17485
|
-
created_at: string;
|
|
17486
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
17487
|
-
is_device_error: true;
|
|
17488
|
-
}>, z.ZodObject<{
|
|
17489
|
-
message: z.ZodString;
|
|
17490
|
-
is_device_error: z.ZodLiteral<true>;
|
|
17491
|
-
created_at: z.ZodString;
|
|
17492
17298
|
} & {
|
|
17493
17299
|
error_code: z.ZodLiteral<"missing_device_credentials">;
|
|
17494
17300
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17533,22 +17339,6 @@ declare const device: z.ZodObject<{
|
|
|
17533
17339
|
created_at: string;
|
|
17534
17340
|
error_code: "subscription_required";
|
|
17535
17341
|
is_device_error: true;
|
|
17536
|
-
}>, z.ZodObject<{
|
|
17537
|
-
message: z.ZodString;
|
|
17538
|
-
is_device_error: z.ZodLiteral<true>;
|
|
17539
|
-
created_at: z.ZodString;
|
|
17540
|
-
} & {
|
|
17541
|
-
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
17542
|
-
}, "strip", z.ZodTypeAny, {
|
|
17543
|
-
message: string;
|
|
17544
|
-
created_at: string;
|
|
17545
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
17546
|
-
is_device_error: true;
|
|
17547
|
-
}, {
|
|
17548
|
-
message: string;
|
|
17549
|
-
created_at: string;
|
|
17550
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
17551
|
-
is_device_error: true;
|
|
17552
17342
|
}>, ...(z.ZodObject<{
|
|
17553
17343
|
created_at: z.ZodString;
|
|
17554
17344
|
message: z.ZodString;
|
|
@@ -17703,19 +17493,6 @@ declare const device: z.ZodObject<{
|
|
|
17703
17493
|
}>, z.ZodObject<{
|
|
17704
17494
|
message: z.ZodString;
|
|
17705
17495
|
created_at: z.ZodString;
|
|
17706
|
-
} & {
|
|
17707
|
-
warning_code: z.ZodLiteral<"wyze_device_missing_gateway">;
|
|
17708
|
-
}, "strip", z.ZodTypeAny, {
|
|
17709
|
-
message: string;
|
|
17710
|
-
created_at: string;
|
|
17711
|
-
warning_code: "wyze_device_missing_gateway";
|
|
17712
|
-
}, {
|
|
17713
|
-
message: string;
|
|
17714
|
-
created_at: string;
|
|
17715
|
-
warning_code: "wyze_device_missing_gateway";
|
|
17716
|
-
}>, z.ZodObject<{
|
|
17717
|
-
message: z.ZodString;
|
|
17718
|
-
created_at: z.ZodString;
|
|
17719
17496
|
} & {
|
|
17720
17497
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
17721
17498
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18184,11 +17961,6 @@ declare const device: z.ZodObject<{
|
|
|
18184
17961
|
created_at: string;
|
|
18185
17962
|
error_code: "august_lock_not_authorized";
|
|
18186
17963
|
is_device_error: true;
|
|
18187
|
-
} | {
|
|
18188
|
-
message: string;
|
|
18189
|
-
created_at: string;
|
|
18190
|
-
error_code: "august_lock_missing_bridge";
|
|
18191
|
-
is_device_error: true;
|
|
18192
17964
|
} | {
|
|
18193
17965
|
message: string;
|
|
18194
17966
|
created_at: string;
|
|
@@ -18201,11 +17973,6 @@ declare const device: z.ZodObject<{
|
|
|
18201
17973
|
error_code: "dormakaba_sites_disconnected";
|
|
18202
17974
|
is_connected_account_error: true;
|
|
18203
17975
|
is_device_error: false;
|
|
18204
|
-
} | {
|
|
18205
|
-
message: string;
|
|
18206
|
-
created_at: string;
|
|
18207
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
18208
|
-
is_device_error: true;
|
|
18209
17976
|
} | {
|
|
18210
17977
|
message: string;
|
|
18211
17978
|
created_at: string;
|
|
@@ -18221,11 +17988,6 @@ declare const device: z.ZodObject<{
|
|
|
18221
17988
|
created_at: string;
|
|
18222
17989
|
error_code: "subscription_required";
|
|
18223
17990
|
is_device_error: true;
|
|
18224
|
-
} | {
|
|
18225
|
-
message: string;
|
|
18226
|
-
created_at: string;
|
|
18227
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
18228
|
-
is_device_error: true;
|
|
18229
17991
|
})[];
|
|
18230
17992
|
connected_account_id: string;
|
|
18231
17993
|
warnings: ({
|
|
@@ -18256,10 +18018,6 @@ declare const device: z.ZodObject<{
|
|
|
18256
18018
|
message: string;
|
|
18257
18019
|
created_at: string;
|
|
18258
18020
|
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
18259
|
-
} | {
|
|
18260
|
-
message: string;
|
|
18261
|
-
created_at: string;
|
|
18262
|
-
warning_code: "wyze_device_missing_gateway";
|
|
18263
18021
|
} | {
|
|
18264
18022
|
message: string;
|
|
18265
18023
|
created_at: string;
|
|
@@ -18988,11 +18746,6 @@ declare const device: z.ZodObject<{
|
|
|
18988
18746
|
created_at: string;
|
|
18989
18747
|
error_code: "august_lock_not_authorized";
|
|
18990
18748
|
is_device_error: true;
|
|
18991
|
-
} | {
|
|
18992
|
-
message: string;
|
|
18993
|
-
created_at: string;
|
|
18994
|
-
error_code: "august_lock_missing_bridge";
|
|
18995
|
-
is_device_error: true;
|
|
18996
18749
|
} | {
|
|
18997
18750
|
message: string;
|
|
18998
18751
|
created_at: string;
|
|
@@ -19005,11 +18758,6 @@ declare const device: z.ZodObject<{
|
|
|
19005
18758
|
error_code: "dormakaba_sites_disconnected";
|
|
19006
18759
|
is_connected_account_error: true;
|
|
19007
18760
|
is_device_error: false;
|
|
19008
|
-
} | {
|
|
19009
|
-
message: string;
|
|
19010
|
-
created_at: string;
|
|
19011
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
19012
|
-
is_device_error: true;
|
|
19013
18761
|
} | {
|
|
19014
18762
|
message: string;
|
|
19015
18763
|
created_at: string;
|
|
@@ -19025,11 +18773,6 @@ declare const device: z.ZodObject<{
|
|
|
19025
18773
|
created_at: string;
|
|
19026
18774
|
error_code: "subscription_required";
|
|
19027
18775
|
is_device_error: true;
|
|
19028
|
-
} | {
|
|
19029
|
-
message: string;
|
|
19030
|
-
created_at: string;
|
|
19031
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
19032
|
-
is_device_error: true;
|
|
19033
18776
|
})[];
|
|
19034
18777
|
connected_account_id: string;
|
|
19035
18778
|
warnings: ({
|
|
@@ -19060,10 +18803,6 @@ declare const device: z.ZodObject<{
|
|
|
19060
18803
|
message: string;
|
|
19061
18804
|
created_at: string;
|
|
19062
18805
|
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
19063
|
-
} | {
|
|
19064
|
-
message: string;
|
|
19065
|
-
created_at: string;
|
|
19066
|
-
warning_code: "wyze_device_missing_gateway";
|
|
19067
18806
|
} | {
|
|
19068
18807
|
message: string;
|
|
19069
18808
|
created_at: string;
|
|
@@ -22631,38 +22370,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22631
22370
|
message: z.ZodString;
|
|
22632
22371
|
is_device_error: z.ZodLiteral<true>;
|
|
22633
22372
|
created_at: z.ZodString;
|
|
22634
|
-
} & {
|
|
22635
|
-
error_code: z.ZodLiteral<"august_lock_missing_bridge">;
|
|
22636
|
-
}, "strip", z.ZodTypeAny, {
|
|
22637
|
-
message: string;
|
|
22638
|
-
created_at: string;
|
|
22639
|
-
error_code: "august_lock_missing_bridge";
|
|
22640
|
-
is_device_error: true;
|
|
22641
|
-
}, {
|
|
22642
|
-
message: string;
|
|
22643
|
-
created_at: string;
|
|
22644
|
-
error_code: "august_lock_missing_bridge";
|
|
22645
|
-
is_device_error: true;
|
|
22646
|
-
}>, z.ZodObject<{
|
|
22647
|
-
message: z.ZodString;
|
|
22648
|
-
is_device_error: z.ZodLiteral<true>;
|
|
22649
|
-
created_at: z.ZodString;
|
|
22650
|
-
} & {
|
|
22651
|
-
error_code: z.ZodLiteral<"ttlock_lock_not_paired_to_gateway">;
|
|
22652
|
-
}, "strip", z.ZodTypeAny, {
|
|
22653
|
-
message: string;
|
|
22654
|
-
created_at: string;
|
|
22655
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
22656
|
-
is_device_error: true;
|
|
22657
|
-
}, {
|
|
22658
|
-
message: string;
|
|
22659
|
-
created_at: string;
|
|
22660
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
22661
|
-
is_device_error: true;
|
|
22662
|
-
}>, z.ZodObject<{
|
|
22663
|
-
message: z.ZodString;
|
|
22664
|
-
is_device_error: z.ZodLiteral<true>;
|
|
22665
|
-
created_at: z.ZodString;
|
|
22666
22373
|
} & {
|
|
22667
22374
|
error_code: z.ZodLiteral<"missing_device_credentials">;
|
|
22668
22375
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22707,22 +22414,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22707
22414
|
created_at: string;
|
|
22708
22415
|
error_code: "subscription_required";
|
|
22709
22416
|
is_device_error: true;
|
|
22710
|
-
}>, z.ZodObject<{
|
|
22711
|
-
message: z.ZodString;
|
|
22712
|
-
is_device_error: z.ZodLiteral<true>;
|
|
22713
|
-
created_at: z.ZodString;
|
|
22714
|
-
} & {
|
|
22715
|
-
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
22716
|
-
}, "strip", z.ZodTypeAny, {
|
|
22717
|
-
message: string;
|
|
22718
|
-
created_at: string;
|
|
22719
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
22720
|
-
is_device_error: true;
|
|
22721
|
-
}, {
|
|
22722
|
-
message: string;
|
|
22723
|
-
created_at: string;
|
|
22724
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
22725
|
-
is_device_error: true;
|
|
22726
22417
|
}>, ...(z.ZodObject<{
|
|
22727
22418
|
created_at: z.ZodString;
|
|
22728
22419
|
message: z.ZodString;
|
|
@@ -22877,19 +22568,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22877
22568
|
}>, z.ZodObject<{
|
|
22878
22569
|
message: z.ZodString;
|
|
22879
22570
|
created_at: z.ZodString;
|
|
22880
|
-
} & {
|
|
22881
|
-
warning_code: z.ZodLiteral<"wyze_device_missing_gateway">;
|
|
22882
|
-
}, "strip", z.ZodTypeAny, {
|
|
22883
|
-
message: string;
|
|
22884
|
-
created_at: string;
|
|
22885
|
-
warning_code: "wyze_device_missing_gateway";
|
|
22886
|
-
}, {
|
|
22887
|
-
message: string;
|
|
22888
|
-
created_at: string;
|
|
22889
|
-
warning_code: "wyze_device_missing_gateway";
|
|
22890
|
-
}>, z.ZodObject<{
|
|
22891
|
-
message: z.ZodString;
|
|
22892
|
-
created_at: z.ZodString;
|
|
22893
22571
|
} & {
|
|
22894
22572
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
22895
22573
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23514,11 +23192,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23514
23192
|
created_at: string;
|
|
23515
23193
|
error_code: "august_lock_not_authorized";
|
|
23516
23194
|
is_device_error: true;
|
|
23517
|
-
} | {
|
|
23518
|
-
message: string;
|
|
23519
|
-
created_at: string;
|
|
23520
|
-
error_code: "august_lock_missing_bridge";
|
|
23521
|
-
is_device_error: true;
|
|
23522
23195
|
} | {
|
|
23523
23196
|
message: string;
|
|
23524
23197
|
created_at: string;
|
|
@@ -23531,11 +23204,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23531
23204
|
error_code: "dormakaba_sites_disconnected";
|
|
23532
23205
|
is_connected_account_error: true;
|
|
23533
23206
|
is_device_error: false;
|
|
23534
|
-
} | {
|
|
23535
|
-
message: string;
|
|
23536
|
-
created_at: string;
|
|
23537
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
23538
|
-
is_device_error: true;
|
|
23539
23207
|
} | {
|
|
23540
23208
|
message: string;
|
|
23541
23209
|
created_at: string;
|
|
@@ -23551,11 +23219,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23551
23219
|
created_at: string;
|
|
23552
23220
|
error_code: "subscription_required";
|
|
23553
23221
|
is_device_error: true;
|
|
23554
|
-
} | {
|
|
23555
|
-
message: string;
|
|
23556
|
-
created_at: string;
|
|
23557
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
23558
|
-
is_device_error: true;
|
|
23559
23222
|
})[];
|
|
23560
23223
|
connected_account_id: string;
|
|
23561
23224
|
warnings: ({
|
|
@@ -23586,10 +23249,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23586
23249
|
message: string;
|
|
23587
23250
|
created_at: string;
|
|
23588
23251
|
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
23589
|
-
} | {
|
|
23590
|
-
message: string;
|
|
23591
|
-
created_at: string;
|
|
23592
|
-
warning_code: "wyze_device_missing_gateway";
|
|
23593
23252
|
} | {
|
|
23594
23253
|
message: string;
|
|
23595
23254
|
created_at: string;
|
|
@@ -23807,11 +23466,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23807
23466
|
created_at: string;
|
|
23808
23467
|
error_code: "august_lock_not_authorized";
|
|
23809
23468
|
is_device_error: true;
|
|
23810
|
-
} | {
|
|
23811
|
-
message: string;
|
|
23812
|
-
created_at: string;
|
|
23813
|
-
error_code: "august_lock_missing_bridge";
|
|
23814
|
-
is_device_error: true;
|
|
23815
23469
|
} | {
|
|
23816
23470
|
message: string;
|
|
23817
23471
|
created_at: string;
|
|
@@ -23824,11 +23478,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23824
23478
|
error_code: "dormakaba_sites_disconnected";
|
|
23825
23479
|
is_connected_account_error: true;
|
|
23826
23480
|
is_device_error: false;
|
|
23827
|
-
} | {
|
|
23828
|
-
message: string;
|
|
23829
|
-
created_at: string;
|
|
23830
|
-
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
23831
|
-
is_device_error: true;
|
|
23832
23481
|
} | {
|
|
23833
23482
|
message: string;
|
|
23834
23483
|
created_at: string;
|
|
@@ -23844,11 +23493,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23844
23493
|
created_at: string;
|
|
23845
23494
|
error_code: "subscription_required";
|
|
23846
23495
|
is_device_error: true;
|
|
23847
|
-
} | {
|
|
23848
|
-
message: string;
|
|
23849
|
-
created_at: string;
|
|
23850
|
-
error_code: "lockly_missing_wifi_bridge";
|
|
23851
|
-
is_device_error: true;
|
|
23852
23496
|
})[];
|
|
23853
23497
|
connected_account_id: string;
|
|
23854
23498
|
warnings: ({
|
|
@@ -23879,10 +23523,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23879
23523
|
message: string;
|
|
23880
23524
|
created_at: string;
|
|
23881
23525
|
warning_code: "salto_ks_lock_access_code_support_removed";
|
|
23882
|
-
} | {
|
|
23883
|
-
message: string;
|
|
23884
|
-
created_at: string;
|
|
23885
|
-
warning_code: "wyze_device_missing_gateway";
|
|
23886
23526
|
} | {
|
|
23887
23527
|
message: string;
|
|
23888
23528
|
created_at: string;
|
|
@@ -32150,24 +31790,6 @@ type Routes = {
|
|
|
32150
31790
|
created_at: string;
|
|
32151
31791
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32152
31792
|
error_code: 'august_lock_not_authorized';
|
|
32153
|
-
} | {
|
|
32154
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32155
|
-
message: string;
|
|
32156
|
-
/** Indicates that the error is a device error. */
|
|
32157
|
-
is_device_error: true;
|
|
32158
|
-
/** Date and time at which Seam created the error. */
|
|
32159
|
-
created_at: string;
|
|
32160
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32161
|
-
error_code: 'august_lock_missing_bridge';
|
|
32162
|
-
} | {
|
|
32163
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32164
|
-
message: string;
|
|
32165
|
-
/** Indicates that the error is a device error. */
|
|
32166
|
-
is_device_error: true;
|
|
32167
|
-
/** Date and time at which Seam created the error. */
|
|
32168
|
-
created_at: string;
|
|
32169
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32170
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
32171
31793
|
} | {
|
|
32172
31794
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32173
31795
|
message: string;
|
|
@@ -32195,15 +31817,6 @@ type Routes = {
|
|
|
32195
31817
|
created_at: string;
|
|
32196
31818
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32197
31819
|
error_code: 'subscription_required';
|
|
32198
|
-
} | {
|
|
32199
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32200
|
-
message: string;
|
|
32201
|
-
/** Indicates that the error is a device error. */
|
|
32202
|
-
is_device_error: true;
|
|
32203
|
-
/** Date and time at which Seam created the error. */
|
|
32204
|
-
created_at: string;
|
|
32205
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32206
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
32207
31820
|
} | {
|
|
32208
31821
|
/** Date and time at which Seam created the error. */
|
|
32209
31822
|
created_at: string;
|
|
@@ -32298,6 +31911,13 @@ type Routes = {
|
|
|
32298
31911
|
created_at?: string | undefined;
|
|
32299
31912
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32300
31913
|
warning_code: 'being_deleted';
|
|
31914
|
+
} | {
|
|
31915
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
31916
|
+
message: string;
|
|
31917
|
+
/** Date and time at which Seam created the warning. */
|
|
31918
|
+
created_at?: string | undefined;
|
|
31919
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31920
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
32301
31921
|
})[];
|
|
32302
31922
|
/** Indicates whether Seam manages the access code. */
|
|
32303
31923
|
is_managed: true;
|
|
@@ -32656,24 +32276,6 @@ type Routes = {
|
|
|
32656
32276
|
created_at: string;
|
|
32657
32277
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32658
32278
|
error_code: 'august_lock_not_authorized';
|
|
32659
|
-
} | {
|
|
32660
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32661
|
-
message: string;
|
|
32662
|
-
/** Indicates that the error is a device error. */
|
|
32663
|
-
is_device_error: true;
|
|
32664
|
-
/** Date and time at which Seam created the error. */
|
|
32665
|
-
created_at: string;
|
|
32666
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32667
|
-
error_code: 'august_lock_missing_bridge';
|
|
32668
|
-
} | {
|
|
32669
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32670
|
-
message: string;
|
|
32671
|
-
/** Indicates that the error is a device error. */
|
|
32672
|
-
is_device_error: true;
|
|
32673
|
-
/** Date and time at which Seam created the error. */
|
|
32674
|
-
created_at: string;
|
|
32675
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32676
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
32677
32279
|
} | {
|
|
32678
32280
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32679
32281
|
message: string;
|
|
@@ -32701,15 +32303,6 @@ type Routes = {
|
|
|
32701
32303
|
created_at: string;
|
|
32702
32304
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32703
32305
|
error_code: 'subscription_required';
|
|
32704
|
-
} | {
|
|
32705
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32706
|
-
message: string;
|
|
32707
|
-
/** Indicates that the error is a device error. */
|
|
32708
|
-
is_device_error: true;
|
|
32709
|
-
/** Date and time at which Seam created the error. */
|
|
32710
|
-
created_at: string;
|
|
32711
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32712
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
32713
32306
|
} | {
|
|
32714
32307
|
/** Date and time at which Seam created the error. */
|
|
32715
32308
|
created_at: string;
|
|
@@ -32804,6 +32397,13 @@ type Routes = {
|
|
|
32804
32397
|
created_at?: string | undefined;
|
|
32805
32398
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32806
32399
|
warning_code: 'being_deleted';
|
|
32400
|
+
} | {
|
|
32401
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
32402
|
+
message: string;
|
|
32403
|
+
/** Date and time at which Seam created the warning. */
|
|
32404
|
+
created_at?: string | undefined;
|
|
32405
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32406
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
32807
32407
|
})[];
|
|
32808
32408
|
/** Indicates whether Seam manages the access code. */
|
|
32809
32409
|
is_managed: true;
|
|
@@ -34850,24 +34450,6 @@ type Routes = {
|
|
|
34850
34450
|
created_at: string;
|
|
34851
34451
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34852
34452
|
error_code: 'august_lock_not_authorized';
|
|
34853
|
-
} | {
|
|
34854
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34855
|
-
message: string;
|
|
34856
|
-
/** Indicates that the error is a device error. */
|
|
34857
|
-
is_device_error: true;
|
|
34858
|
-
/** Date and time at which Seam created the error. */
|
|
34859
|
-
created_at: string;
|
|
34860
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34861
|
-
error_code: 'august_lock_missing_bridge';
|
|
34862
|
-
} | {
|
|
34863
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34864
|
-
message: string;
|
|
34865
|
-
/** Indicates that the error is a device error. */
|
|
34866
|
-
is_device_error: true;
|
|
34867
|
-
/** Date and time at which Seam created the error. */
|
|
34868
|
-
created_at: string;
|
|
34869
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34870
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
34871
34453
|
} | {
|
|
34872
34454
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34873
34455
|
message: string;
|
|
@@ -34895,15 +34477,6 @@ type Routes = {
|
|
|
34895
34477
|
created_at: string;
|
|
34896
34478
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34897
34479
|
error_code: 'subscription_required';
|
|
34898
|
-
} | {
|
|
34899
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34900
|
-
message: string;
|
|
34901
|
-
/** Indicates that the error is a device error. */
|
|
34902
|
-
is_device_error: true;
|
|
34903
|
-
/** Date and time at which Seam created the error. */
|
|
34904
|
-
created_at: string;
|
|
34905
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34906
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
34907
34480
|
} | {
|
|
34908
34481
|
/** Date and time at which Seam created the error. */
|
|
34909
34482
|
created_at: string;
|
|
@@ -34998,6 +34571,13 @@ type Routes = {
|
|
|
34998
34571
|
created_at?: string | undefined;
|
|
34999
34572
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35000
34573
|
warning_code: 'being_deleted';
|
|
34574
|
+
} | {
|
|
34575
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
34576
|
+
message: string;
|
|
34577
|
+
/** Date and time at which Seam created the warning. */
|
|
34578
|
+
created_at?: string | undefined;
|
|
34579
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
34580
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
35001
34581
|
})[];
|
|
35002
34582
|
/** Indicates whether Seam manages the access code. */
|
|
35003
34583
|
is_managed: true;
|
|
@@ -35404,24 +34984,6 @@ type Routes = {
|
|
|
35404
34984
|
created_at: string;
|
|
35405
34985
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35406
34986
|
error_code: 'august_lock_not_authorized';
|
|
35407
|
-
} | {
|
|
35408
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35409
|
-
message: string;
|
|
35410
|
-
/** Indicates that the error is a device error. */
|
|
35411
|
-
is_device_error: true;
|
|
35412
|
-
/** Date and time at which Seam created the error. */
|
|
35413
|
-
created_at: string;
|
|
35414
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35415
|
-
error_code: 'august_lock_missing_bridge';
|
|
35416
|
-
} | {
|
|
35417
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35418
|
-
message: string;
|
|
35419
|
-
/** Indicates that the error is a device error. */
|
|
35420
|
-
is_device_error: true;
|
|
35421
|
-
/** Date and time at which Seam created the error. */
|
|
35422
|
-
created_at: string;
|
|
35423
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35424
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
35425
34987
|
} | {
|
|
35426
34988
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35427
34989
|
message: string;
|
|
@@ -35449,15 +35011,6 @@ type Routes = {
|
|
|
35449
35011
|
created_at: string;
|
|
35450
35012
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35451
35013
|
error_code: 'subscription_required';
|
|
35452
|
-
} | {
|
|
35453
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35454
|
-
message: string;
|
|
35455
|
-
/** Indicates that the error is a device error. */
|
|
35456
|
-
is_device_error: true;
|
|
35457
|
-
/** Date and time at which Seam created the error. */
|
|
35458
|
-
created_at: string;
|
|
35459
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35460
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
35461
35014
|
} | {
|
|
35462
35015
|
/** Date and time at which Seam created the error. */
|
|
35463
35016
|
created_at: string;
|
|
@@ -35552,6 +35105,13 @@ type Routes = {
|
|
|
35552
35105
|
created_at?: string | undefined;
|
|
35553
35106
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35554
35107
|
warning_code: 'being_deleted';
|
|
35108
|
+
} | {
|
|
35109
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
35110
|
+
message: string;
|
|
35111
|
+
/** Date and time at which Seam created the warning. */
|
|
35112
|
+
created_at?: string | undefined;
|
|
35113
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35114
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
35555
35115
|
})[];
|
|
35556
35116
|
/** Indicates whether Seam manages the access code. */
|
|
35557
35117
|
is_managed: true;
|
|
@@ -35901,24 +35461,6 @@ type Routes = {
|
|
|
35901
35461
|
created_at: string;
|
|
35902
35462
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35903
35463
|
error_code: 'august_lock_not_authorized';
|
|
35904
|
-
} | {
|
|
35905
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35906
|
-
message: string;
|
|
35907
|
-
/** Indicates that the error is a device error. */
|
|
35908
|
-
is_device_error: true;
|
|
35909
|
-
/** Date and time at which Seam created the error. */
|
|
35910
|
-
created_at: string;
|
|
35911
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35912
|
-
error_code: 'august_lock_missing_bridge';
|
|
35913
|
-
} | {
|
|
35914
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35915
|
-
message: string;
|
|
35916
|
-
/** Indicates that the error is a device error. */
|
|
35917
|
-
is_device_error: true;
|
|
35918
|
-
/** Date and time at which Seam created the error. */
|
|
35919
|
-
created_at: string;
|
|
35920
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35921
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
35922
35464
|
} | {
|
|
35923
35465
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35924
35466
|
message: string;
|
|
@@ -35946,15 +35488,6 @@ type Routes = {
|
|
|
35946
35488
|
created_at: string;
|
|
35947
35489
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35948
35490
|
error_code: 'subscription_required';
|
|
35949
|
-
} | {
|
|
35950
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35951
|
-
message: string;
|
|
35952
|
-
/** Indicates that the error is a device error. */
|
|
35953
|
-
is_device_error: true;
|
|
35954
|
-
/** Date and time at which Seam created the error. */
|
|
35955
|
-
created_at: string;
|
|
35956
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35957
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
35958
35491
|
} | {
|
|
35959
35492
|
/** Date and time at which Seam created the error. */
|
|
35960
35493
|
created_at: string;
|
|
@@ -36049,6 +35582,13 @@ type Routes = {
|
|
|
36049
35582
|
created_at?: string | undefined;
|
|
36050
35583
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36051
35584
|
warning_code: 'being_deleted';
|
|
35585
|
+
} | {
|
|
35586
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
35587
|
+
message: string;
|
|
35588
|
+
/** Date and time at which Seam created the warning. */
|
|
35589
|
+
created_at?: string | undefined;
|
|
35590
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35591
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
36052
35592
|
})[];
|
|
36053
35593
|
/** Indicates whether Seam manages the access code. */
|
|
36054
35594
|
is_managed: true;
|
|
@@ -36375,24 +35915,6 @@ type Routes = {
|
|
|
36375
35915
|
created_at: string;
|
|
36376
35916
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36377
35917
|
error_code: 'august_lock_not_authorized';
|
|
36378
|
-
} | {
|
|
36379
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36380
|
-
message: string;
|
|
36381
|
-
/** Indicates that the error is a device error. */
|
|
36382
|
-
is_device_error: true;
|
|
36383
|
-
/** Date and time at which Seam created the error. */
|
|
36384
|
-
created_at: string;
|
|
36385
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36386
|
-
error_code: 'august_lock_missing_bridge';
|
|
36387
|
-
} | {
|
|
36388
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36389
|
-
message: string;
|
|
36390
|
-
/** Indicates that the error is a device error. */
|
|
36391
|
-
is_device_error: true;
|
|
36392
|
-
/** Date and time at which Seam created the error. */
|
|
36393
|
-
created_at: string;
|
|
36394
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36395
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
36396
35918
|
} | {
|
|
36397
35919
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36398
35920
|
message: string;
|
|
@@ -36420,15 +35942,6 @@ type Routes = {
|
|
|
36420
35942
|
created_at: string;
|
|
36421
35943
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36422
35944
|
error_code: 'subscription_required';
|
|
36423
|
-
} | {
|
|
36424
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36425
|
-
message: string;
|
|
36426
|
-
/** Indicates that the error is a device error. */
|
|
36427
|
-
is_device_error: true;
|
|
36428
|
-
/** Date and time at which Seam created the error. */
|
|
36429
|
-
created_at: string;
|
|
36430
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36431
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
36432
35945
|
} | {
|
|
36433
35946
|
/** Date and time at which Seam created the error. */
|
|
36434
35947
|
created_at: string;
|
|
@@ -36523,6 +36036,13 @@ type Routes = {
|
|
|
36523
36036
|
created_at?: string | undefined;
|
|
36524
36037
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36525
36038
|
warning_code: 'being_deleted';
|
|
36039
|
+
} | {
|
|
36040
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36041
|
+
message: string;
|
|
36042
|
+
/** Date and time at which Seam created the warning. */
|
|
36043
|
+
created_at?: string | undefined;
|
|
36044
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36045
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
36526
36046
|
})[];
|
|
36527
36047
|
/** Indicates whether Seam manages the access code. */
|
|
36528
36048
|
is_managed: true;
|
|
@@ -36882,24 +36402,6 @@ type Routes = {
|
|
|
36882
36402
|
created_at: string;
|
|
36883
36403
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36884
36404
|
error_code: 'august_lock_not_authorized';
|
|
36885
|
-
} | {
|
|
36886
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36887
|
-
message: string;
|
|
36888
|
-
/** Indicates that the error is a device error. */
|
|
36889
|
-
is_device_error: true;
|
|
36890
|
-
/** Date and time at which Seam created the error. */
|
|
36891
|
-
created_at: string;
|
|
36892
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36893
|
-
error_code: 'august_lock_missing_bridge';
|
|
36894
|
-
} | {
|
|
36895
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36896
|
-
message: string;
|
|
36897
|
-
/** Indicates that the error is a device error. */
|
|
36898
|
-
is_device_error: true;
|
|
36899
|
-
/** Date and time at which Seam created the error. */
|
|
36900
|
-
created_at: string;
|
|
36901
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36902
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
36903
36405
|
} | {
|
|
36904
36406
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36905
36407
|
message: string;
|
|
@@ -36927,15 +36429,6 @@ type Routes = {
|
|
|
36927
36429
|
created_at: string;
|
|
36928
36430
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36929
36431
|
error_code: 'subscription_required';
|
|
36930
|
-
} | {
|
|
36931
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36932
|
-
message: string;
|
|
36933
|
-
/** Indicates that the error is a device error. */
|
|
36934
|
-
is_device_error: true;
|
|
36935
|
-
/** Date and time at which Seam created the error. */
|
|
36936
|
-
created_at: string;
|
|
36937
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36938
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
36939
36432
|
} | {
|
|
36940
36433
|
/** Date and time at which Seam created the error. */
|
|
36941
36434
|
created_at: string;
|
|
@@ -37030,6 +36523,13 @@ type Routes = {
|
|
|
37030
36523
|
created_at?: string | undefined;
|
|
37031
36524
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37032
36525
|
warning_code: 'being_deleted';
|
|
36526
|
+
} | {
|
|
36527
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36528
|
+
message: string;
|
|
36529
|
+
/** Date and time at which Seam created the warning. */
|
|
36530
|
+
created_at?: string | undefined;
|
|
36531
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36532
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
37033
36533
|
})[];
|
|
37034
36534
|
/** Indicates that Seam does not manage the access code. */
|
|
37035
36535
|
is_managed: false;
|
|
@@ -38985,24 +38485,6 @@ type Routes = {
|
|
|
38985
38485
|
created_at: string;
|
|
38986
38486
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38987
38487
|
error_code: 'august_lock_not_authorized';
|
|
38988
|
-
} | {
|
|
38989
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38990
|
-
message: string;
|
|
38991
|
-
/** Indicates that the error is a device error. */
|
|
38992
|
-
is_device_error: true;
|
|
38993
|
-
/** Date and time at which Seam created the error. */
|
|
38994
|
-
created_at: string;
|
|
38995
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38996
|
-
error_code: 'august_lock_missing_bridge';
|
|
38997
|
-
} | {
|
|
38998
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38999
|
-
message: string;
|
|
39000
|
-
/** Indicates that the error is a device error. */
|
|
39001
|
-
is_device_error: true;
|
|
39002
|
-
/** Date and time at which Seam created the error. */
|
|
39003
|
-
created_at: string;
|
|
39004
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39005
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
39006
38488
|
} | {
|
|
39007
38489
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39008
38490
|
message: string;
|
|
@@ -39030,15 +38512,6 @@ type Routes = {
|
|
|
39030
38512
|
created_at: string;
|
|
39031
38513
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39032
38514
|
error_code: 'subscription_required';
|
|
39033
|
-
} | {
|
|
39034
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39035
|
-
message: string;
|
|
39036
|
-
/** Indicates that the error is a device error. */
|
|
39037
|
-
is_device_error: true;
|
|
39038
|
-
/** Date and time at which Seam created the error. */
|
|
39039
|
-
created_at: string;
|
|
39040
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39041
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
39042
38515
|
} | {
|
|
39043
38516
|
/** Date and time at which Seam created the error. */
|
|
39044
38517
|
created_at: string;
|
|
@@ -39133,6 +38606,13 @@ type Routes = {
|
|
|
39133
38606
|
created_at?: string | undefined;
|
|
39134
38607
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39135
38608
|
warning_code: 'being_deleted';
|
|
38609
|
+
} | {
|
|
38610
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38611
|
+
message: string;
|
|
38612
|
+
/** Date and time at which Seam created the warning. */
|
|
38613
|
+
created_at?: string | undefined;
|
|
38614
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38615
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
39136
38616
|
})[];
|
|
39137
38617
|
/** Indicates that Seam does not manage the access code. */
|
|
39138
38618
|
is_managed: false;
|
|
@@ -39378,24 +38858,6 @@ type Routes = {
|
|
|
39378
38858
|
created_at: string;
|
|
39379
38859
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39380
38860
|
error_code: 'august_lock_not_authorized';
|
|
39381
|
-
} | {
|
|
39382
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39383
|
-
message: string;
|
|
39384
|
-
/** Indicates that the error is a device error. */
|
|
39385
|
-
is_device_error: true;
|
|
39386
|
-
/** Date and time at which Seam created the error. */
|
|
39387
|
-
created_at: string;
|
|
39388
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39389
|
-
error_code: 'august_lock_missing_bridge';
|
|
39390
|
-
} | {
|
|
39391
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39392
|
-
message: string;
|
|
39393
|
-
/** Indicates that the error is a device error. */
|
|
39394
|
-
is_device_error: true;
|
|
39395
|
-
/** Date and time at which Seam created the error. */
|
|
39396
|
-
created_at: string;
|
|
39397
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39398
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
39399
38861
|
} | {
|
|
39400
38862
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39401
38863
|
message: string;
|
|
@@ -39423,15 +38885,6 @@ type Routes = {
|
|
|
39423
38885
|
created_at: string;
|
|
39424
38886
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39425
38887
|
error_code: 'subscription_required';
|
|
39426
|
-
} | {
|
|
39427
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39428
|
-
message: string;
|
|
39429
|
-
/** Indicates that the error is a device error. */
|
|
39430
|
-
is_device_error: true;
|
|
39431
|
-
/** Date and time at which Seam created the error. */
|
|
39432
|
-
created_at: string;
|
|
39433
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39434
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
39435
38888
|
} | {
|
|
39436
38889
|
/** Date and time at which Seam created the error. */
|
|
39437
38890
|
created_at: string;
|
|
@@ -39526,6 +38979,13 @@ type Routes = {
|
|
|
39526
38979
|
created_at?: string | undefined;
|
|
39527
38980
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39528
38981
|
warning_code: 'being_deleted';
|
|
38982
|
+
} | {
|
|
38983
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38984
|
+
message: string;
|
|
38985
|
+
/** Date and time at which Seam created the warning. */
|
|
38986
|
+
created_at?: string | undefined;
|
|
38987
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38988
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
39529
38989
|
})[];
|
|
39530
38990
|
/** Indicates that Seam does not manage the access code. */
|
|
39531
38991
|
is_managed: false;
|
|
@@ -42994,24 +42454,6 @@ type Routes = {
|
|
|
42994
42454
|
created_at: string;
|
|
42995
42455
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42996
42456
|
error_code: 'august_lock_not_authorized';
|
|
42997
|
-
} | {
|
|
42998
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
42999
|
-
message: string;
|
|
43000
|
-
/** Indicates that the error is a device error. */
|
|
43001
|
-
is_device_error: true;
|
|
43002
|
-
/** Date and time at which Seam created the error. */
|
|
43003
|
-
created_at: string;
|
|
43004
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43005
|
-
error_code: 'august_lock_missing_bridge';
|
|
43006
|
-
} | {
|
|
43007
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43008
|
-
message: string;
|
|
43009
|
-
/** Indicates that the error is a device error. */
|
|
43010
|
-
is_device_error: true;
|
|
43011
|
-
/** Date and time at which Seam created the error. */
|
|
43012
|
-
created_at: string;
|
|
43013
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43014
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
43015
42457
|
} | {
|
|
43016
42458
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43017
42459
|
message: string;
|
|
@@ -43039,15 +42481,6 @@ type Routes = {
|
|
|
43039
42481
|
created_at: string;
|
|
43040
42482
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43041
42483
|
error_code: 'subscription_required';
|
|
43042
|
-
} | {
|
|
43043
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43044
|
-
message: string;
|
|
43045
|
-
/** Indicates that the error is a device error. */
|
|
43046
|
-
is_device_error: true;
|
|
43047
|
-
/** Date and time at which Seam created the error. */
|
|
43048
|
-
created_at: string;
|
|
43049
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43050
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
43051
42484
|
} | {
|
|
43052
42485
|
/** Date and time at which Seam created the error. */
|
|
43053
42486
|
created_at: string;
|
|
@@ -43075,13 +42508,6 @@ type Routes = {
|
|
|
43075
42508
|
created_at: string;
|
|
43076
42509
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43077
42510
|
warning_code: 'many_active_backup_codes';
|
|
43078
|
-
} | {
|
|
43079
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43080
|
-
message: string;
|
|
43081
|
-
/** Date and time at which Seam created the warning. */
|
|
43082
|
-
created_at: string;
|
|
43083
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43084
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
43085
42511
|
} | {
|
|
43086
42512
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43087
42513
|
message: string;
|
|
@@ -49739,24 +49165,6 @@ type Routes = {
|
|
|
49739
49165
|
created_at: string;
|
|
49740
49166
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49741
49167
|
error_code: 'august_lock_not_authorized';
|
|
49742
|
-
} | {
|
|
49743
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49744
|
-
message: string;
|
|
49745
|
-
/** Indicates that the error is a device error. */
|
|
49746
|
-
is_device_error: true;
|
|
49747
|
-
/** Date and time at which Seam created the error. */
|
|
49748
|
-
created_at: string;
|
|
49749
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49750
|
-
error_code: 'august_lock_missing_bridge';
|
|
49751
|
-
} | {
|
|
49752
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49753
|
-
message: string;
|
|
49754
|
-
/** Indicates that the error is a device error. */
|
|
49755
|
-
is_device_error: true;
|
|
49756
|
-
/** Date and time at which Seam created the error. */
|
|
49757
|
-
created_at: string;
|
|
49758
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49759
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
49760
49168
|
} | {
|
|
49761
49169
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49762
49170
|
message: string;
|
|
@@ -49784,15 +49192,6 @@ type Routes = {
|
|
|
49784
49192
|
created_at: string;
|
|
49785
49193
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49786
49194
|
error_code: 'subscription_required';
|
|
49787
|
-
} | {
|
|
49788
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49789
|
-
message: string;
|
|
49790
|
-
/** Indicates that the error is a device error. */
|
|
49791
|
-
is_device_error: true;
|
|
49792
|
-
/** Date and time at which Seam created the error. */
|
|
49793
|
-
created_at: string;
|
|
49794
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49795
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
49796
49195
|
} | {
|
|
49797
49196
|
/** Date and time at which Seam created the error. */
|
|
49798
49197
|
created_at: string;
|
|
@@ -49820,13 +49219,6 @@ type Routes = {
|
|
|
49820
49219
|
created_at: string;
|
|
49821
49220
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49822
49221
|
warning_code: 'many_active_backup_codes';
|
|
49823
|
-
} | {
|
|
49824
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49825
|
-
message: string;
|
|
49826
|
-
/** Date and time at which Seam created the warning. */
|
|
49827
|
-
created_at: string;
|
|
49828
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49829
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
49830
49222
|
} | {
|
|
49831
49223
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49832
49224
|
message: string;
|
|
@@ -72291,24 +71683,6 @@ type Routes = {
|
|
|
72291
71683
|
created_at: string;
|
|
72292
71684
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72293
71685
|
error_code: 'august_lock_not_authorized';
|
|
72294
|
-
} | {
|
|
72295
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72296
|
-
message: string;
|
|
72297
|
-
/** Indicates that the error is a device error. */
|
|
72298
|
-
is_device_error: true;
|
|
72299
|
-
/** Date and time at which Seam created the error. */
|
|
72300
|
-
created_at: string;
|
|
72301
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72302
|
-
error_code: 'august_lock_missing_bridge';
|
|
72303
|
-
} | {
|
|
72304
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72305
|
-
message: string;
|
|
72306
|
-
/** Indicates that the error is a device error. */
|
|
72307
|
-
is_device_error: true;
|
|
72308
|
-
/** Date and time at which Seam created the error. */
|
|
72309
|
-
created_at: string;
|
|
72310
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72311
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
72312
71686
|
} | {
|
|
72313
71687
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72314
71688
|
message: string;
|
|
@@ -72336,15 +71710,6 @@ type Routes = {
|
|
|
72336
71710
|
created_at: string;
|
|
72337
71711
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72338
71712
|
error_code: 'subscription_required';
|
|
72339
|
-
} | {
|
|
72340
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72341
|
-
message: string;
|
|
72342
|
-
/** Indicates that the error is a device error. */
|
|
72343
|
-
is_device_error: true;
|
|
72344
|
-
/** Date and time at which Seam created the error. */
|
|
72345
|
-
created_at: string;
|
|
72346
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72347
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
72348
71713
|
} | {
|
|
72349
71714
|
/** Date and time at which Seam created the error. */
|
|
72350
71715
|
created_at: string;
|
|
@@ -72372,13 +71737,6 @@ type Routes = {
|
|
|
72372
71737
|
created_at: string;
|
|
72373
71738
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72374
71739
|
warning_code: 'many_active_backup_codes';
|
|
72375
|
-
} | {
|
|
72376
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72377
|
-
message: string;
|
|
72378
|
-
/** Date and time at which Seam created the warning. */
|
|
72379
|
-
created_at: string;
|
|
72380
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72381
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
72382
71740
|
} | {
|
|
72383
71741
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72384
71742
|
message: string;
|
|
@@ -73823,24 +73181,6 @@ type Routes = {
|
|
|
73823
73181
|
created_at: string;
|
|
73824
73182
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73825
73183
|
error_code: 'august_lock_not_authorized';
|
|
73826
|
-
} | {
|
|
73827
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73828
|
-
message: string;
|
|
73829
|
-
/** Indicates that the error is a device error. */
|
|
73830
|
-
is_device_error: true;
|
|
73831
|
-
/** Date and time at which Seam created the error. */
|
|
73832
|
-
created_at: string;
|
|
73833
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73834
|
-
error_code: 'august_lock_missing_bridge';
|
|
73835
|
-
} | {
|
|
73836
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73837
|
-
message: string;
|
|
73838
|
-
/** Indicates that the error is a device error. */
|
|
73839
|
-
is_device_error: true;
|
|
73840
|
-
/** Date and time at which Seam created the error. */
|
|
73841
|
-
created_at: string;
|
|
73842
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73843
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
73844
73184
|
} | {
|
|
73845
73185
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73846
73186
|
message: string;
|
|
@@ -73868,15 +73208,6 @@ type Routes = {
|
|
|
73868
73208
|
created_at: string;
|
|
73869
73209
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73870
73210
|
error_code: 'subscription_required';
|
|
73871
|
-
} | {
|
|
73872
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73873
|
-
message: string;
|
|
73874
|
-
/** Indicates that the error is a device error. */
|
|
73875
|
-
is_device_error: true;
|
|
73876
|
-
/** Date and time at which Seam created the error. */
|
|
73877
|
-
created_at: string;
|
|
73878
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73879
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
73880
73211
|
} | {
|
|
73881
73212
|
/** Date and time at which Seam created the error. */
|
|
73882
73213
|
created_at: string;
|
|
@@ -73904,13 +73235,6 @@ type Routes = {
|
|
|
73904
73235
|
created_at: string;
|
|
73905
73236
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73906
73237
|
warning_code: 'many_active_backup_codes';
|
|
73907
|
-
} | {
|
|
73908
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73909
|
-
message: string;
|
|
73910
|
-
/** Date and time at which Seam created the warning. */
|
|
73911
|
-
created_at: string;
|
|
73912
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73913
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
73914
73238
|
} | {
|
|
73915
73239
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73916
73240
|
message: string;
|
|
@@ -74479,24 +73803,6 @@ type Routes = {
|
|
|
74479
73803
|
created_at: string;
|
|
74480
73804
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74481
73805
|
error_code: 'august_lock_not_authorized';
|
|
74482
|
-
} | {
|
|
74483
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74484
|
-
message: string;
|
|
74485
|
-
/** Indicates that the error is a device error. */
|
|
74486
|
-
is_device_error: true;
|
|
74487
|
-
/** Date and time at which Seam created the error. */
|
|
74488
|
-
created_at: string;
|
|
74489
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74490
|
-
error_code: 'august_lock_missing_bridge';
|
|
74491
|
-
} | {
|
|
74492
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74493
|
-
message: string;
|
|
74494
|
-
/** Indicates that the error is a device error. */
|
|
74495
|
-
is_device_error: true;
|
|
74496
|
-
/** Date and time at which Seam created the error. */
|
|
74497
|
-
created_at: string;
|
|
74498
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74499
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
74500
73806
|
} | {
|
|
74501
73807
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74502
73808
|
message: string;
|
|
@@ -74524,15 +73830,6 @@ type Routes = {
|
|
|
74524
73830
|
created_at: string;
|
|
74525
73831
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74526
73832
|
error_code: 'subscription_required';
|
|
74527
|
-
} | {
|
|
74528
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74529
|
-
message: string;
|
|
74530
|
-
/** Indicates that the error is a device error. */
|
|
74531
|
-
is_device_error: true;
|
|
74532
|
-
/** Date and time at which Seam created the error. */
|
|
74533
|
-
created_at: string;
|
|
74534
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74535
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
74536
73833
|
} | {
|
|
74537
73834
|
/** Date and time at which Seam created the error. */
|
|
74538
73835
|
created_at: string;
|
|
@@ -74560,13 +73857,6 @@ type Routes = {
|
|
|
74560
73857
|
created_at: string;
|
|
74561
73858
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74562
73859
|
warning_code: 'many_active_backup_codes';
|
|
74563
|
-
} | {
|
|
74564
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74565
|
-
message: string;
|
|
74566
|
-
/** Date and time at which Seam created the warning. */
|
|
74567
|
-
created_at: string;
|
|
74568
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74569
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
74570
73860
|
} | {
|
|
74571
73861
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74572
73862
|
message: string;
|
|
@@ -75037,24 +74327,6 @@ type Routes = {
|
|
|
75037
74327
|
created_at: string;
|
|
75038
74328
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75039
74329
|
error_code: 'august_lock_not_authorized';
|
|
75040
|
-
} | {
|
|
75041
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75042
|
-
message: string;
|
|
75043
|
-
/** Indicates that the error is a device error. */
|
|
75044
|
-
is_device_error: true;
|
|
75045
|
-
/** Date and time at which Seam created the error. */
|
|
75046
|
-
created_at: string;
|
|
75047
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75048
|
-
error_code: 'august_lock_missing_bridge';
|
|
75049
|
-
} | {
|
|
75050
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75051
|
-
message: string;
|
|
75052
|
-
/** Indicates that the error is a device error. */
|
|
75053
|
-
is_device_error: true;
|
|
75054
|
-
/** Date and time at which Seam created the error. */
|
|
75055
|
-
created_at: string;
|
|
75056
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75057
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
75058
74330
|
} | {
|
|
75059
74331
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75060
74332
|
message: string;
|
|
@@ -75082,15 +74354,6 @@ type Routes = {
|
|
|
75082
74354
|
created_at: string;
|
|
75083
74355
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75084
74356
|
error_code: 'subscription_required';
|
|
75085
|
-
} | {
|
|
75086
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75087
|
-
message: string;
|
|
75088
|
-
/** Indicates that the error is a device error. */
|
|
75089
|
-
is_device_error: true;
|
|
75090
|
-
/** Date and time at which Seam created the error. */
|
|
75091
|
-
created_at: string;
|
|
75092
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
75093
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
75094
74357
|
} | {
|
|
75095
74358
|
/** Date and time at which Seam created the error. */
|
|
75096
74359
|
created_at: string;
|
|
@@ -75118,13 +74381,6 @@ type Routes = {
|
|
|
75118
74381
|
created_at: string;
|
|
75119
74382
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75120
74383
|
warning_code: 'many_active_backup_codes';
|
|
75121
|
-
} | {
|
|
75122
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75123
|
-
message: string;
|
|
75124
|
-
/** Date and time at which Seam created the warning. */
|
|
75125
|
-
created_at: string;
|
|
75126
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75127
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
75128
74384
|
} | {
|
|
75129
74385
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75130
74386
|
message: string;
|
|
@@ -84908,24 +84164,6 @@ type Routes = {
|
|
|
84908
84164
|
created_at: string;
|
|
84909
84165
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84910
84166
|
error_code: 'august_lock_not_authorized';
|
|
84911
|
-
} | {
|
|
84912
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84913
|
-
message: string;
|
|
84914
|
-
/** Indicates that the error is a device error. */
|
|
84915
|
-
is_device_error: true;
|
|
84916
|
-
/** Date and time at which Seam created the error. */
|
|
84917
|
-
created_at: string;
|
|
84918
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84919
|
-
error_code: 'august_lock_missing_bridge';
|
|
84920
|
-
} | {
|
|
84921
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84922
|
-
message: string;
|
|
84923
|
-
/** Indicates that the error is a device error. */
|
|
84924
|
-
is_device_error: true;
|
|
84925
|
-
/** Date and time at which Seam created the error. */
|
|
84926
|
-
created_at: string;
|
|
84927
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84928
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
84929
84167
|
} | {
|
|
84930
84168
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84931
84169
|
message: string;
|
|
@@ -84953,15 +84191,6 @@ type Routes = {
|
|
|
84953
84191
|
created_at: string;
|
|
84954
84192
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84955
84193
|
error_code: 'subscription_required';
|
|
84956
|
-
} | {
|
|
84957
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84958
|
-
message: string;
|
|
84959
|
-
/** Indicates that the error is a device error. */
|
|
84960
|
-
is_device_error: true;
|
|
84961
|
-
/** Date and time at which Seam created the error. */
|
|
84962
|
-
created_at: string;
|
|
84963
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84964
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
84965
84194
|
} | {
|
|
84966
84195
|
/** Date and time at which Seam created the error. */
|
|
84967
84196
|
created_at: string;
|
|
@@ -84989,13 +84218,6 @@ type Routes = {
|
|
|
84989
84218
|
created_at: string;
|
|
84990
84219
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84991
84220
|
warning_code: 'many_active_backup_codes';
|
|
84992
|
-
} | {
|
|
84993
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84994
|
-
message: string;
|
|
84995
|
-
/** Date and time at which Seam created the warning. */
|
|
84996
|
-
created_at: string;
|
|
84997
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84998
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
84999
84221
|
} | {
|
|
85000
84222
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85001
84223
|
message: string;
|
|
@@ -86390,24 +85612,6 @@ type Routes = {
|
|
|
86390
85612
|
created_at: string;
|
|
86391
85613
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86392
85614
|
error_code: 'august_lock_not_authorized';
|
|
86393
|
-
} | {
|
|
86394
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86395
|
-
message: string;
|
|
86396
|
-
/** Indicates that the error is a device error. */
|
|
86397
|
-
is_device_error: true;
|
|
86398
|
-
/** Date and time at which Seam created the error. */
|
|
86399
|
-
created_at: string;
|
|
86400
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86401
|
-
error_code: 'august_lock_missing_bridge';
|
|
86402
|
-
} | {
|
|
86403
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86404
|
-
message: string;
|
|
86405
|
-
/** Indicates that the error is a device error. */
|
|
86406
|
-
is_device_error: true;
|
|
86407
|
-
/** Date and time at which Seam created the error. */
|
|
86408
|
-
created_at: string;
|
|
86409
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86410
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
86411
85615
|
} | {
|
|
86412
85616
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86413
85617
|
message: string;
|
|
@@ -86435,15 +85639,6 @@ type Routes = {
|
|
|
86435
85639
|
created_at: string;
|
|
86436
85640
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86437
85641
|
error_code: 'subscription_required';
|
|
86438
|
-
} | {
|
|
86439
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86440
|
-
message: string;
|
|
86441
|
-
/** Indicates that the error is a device error. */
|
|
86442
|
-
is_device_error: true;
|
|
86443
|
-
/** Date and time at which Seam created the error. */
|
|
86444
|
-
created_at: string;
|
|
86445
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86446
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
86447
85642
|
} | {
|
|
86448
85643
|
/** Date and time at which Seam created the error. */
|
|
86449
85644
|
created_at: string;
|
|
@@ -86471,13 +85666,6 @@ type Routes = {
|
|
|
86471
85666
|
created_at: string;
|
|
86472
85667
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86473
85668
|
warning_code: 'many_active_backup_codes';
|
|
86474
|
-
} | {
|
|
86475
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86476
|
-
message: string;
|
|
86477
|
-
/** Date and time at which Seam created the warning. */
|
|
86478
|
-
created_at: string;
|
|
86479
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86480
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
86481
85669
|
} | {
|
|
86482
85670
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86483
85671
|
message: string;
|
|
@@ -87922,24 +87110,6 @@ type Routes = {
|
|
|
87922
87110
|
created_at: string;
|
|
87923
87111
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87924
87112
|
error_code: 'august_lock_not_authorized';
|
|
87925
|
-
} | {
|
|
87926
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87927
|
-
message: string;
|
|
87928
|
-
/** Indicates that the error is a device error. */
|
|
87929
|
-
is_device_error: true;
|
|
87930
|
-
/** Date and time at which Seam created the error. */
|
|
87931
|
-
created_at: string;
|
|
87932
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87933
|
-
error_code: 'august_lock_missing_bridge';
|
|
87934
|
-
} | {
|
|
87935
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87936
|
-
message: string;
|
|
87937
|
-
/** Indicates that the error is a device error. */
|
|
87938
|
-
is_device_error: true;
|
|
87939
|
-
/** Date and time at which Seam created the error. */
|
|
87940
|
-
created_at: string;
|
|
87941
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87942
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
87943
87113
|
} | {
|
|
87944
87114
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87945
87115
|
message: string;
|
|
@@ -87967,15 +87137,6 @@ type Routes = {
|
|
|
87967
87137
|
created_at: string;
|
|
87968
87138
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87969
87139
|
error_code: 'subscription_required';
|
|
87970
|
-
} | {
|
|
87971
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87972
|
-
message: string;
|
|
87973
|
-
/** Indicates that the error is a device error. */
|
|
87974
|
-
is_device_error: true;
|
|
87975
|
-
/** Date and time at which Seam created the error. */
|
|
87976
|
-
created_at: string;
|
|
87977
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87978
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
87979
87140
|
} | {
|
|
87980
87141
|
/** Date and time at which Seam created the error. */
|
|
87981
87142
|
created_at: string;
|
|
@@ -88003,13 +87164,6 @@ type Routes = {
|
|
|
88003
87164
|
created_at: string;
|
|
88004
87165
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88005
87166
|
warning_code: 'many_active_backup_codes';
|
|
88006
|
-
} | {
|
|
88007
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88008
|
-
message: string;
|
|
88009
|
-
/** Date and time at which Seam created the warning. */
|
|
88010
|
-
created_at: string;
|
|
88011
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88012
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
88013
87167
|
} | {
|
|
88014
87168
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88015
87169
|
message: string;
|
|
@@ -89403,24 +88557,6 @@ type Routes = {
|
|
|
89403
88557
|
created_at: string;
|
|
89404
88558
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
89405
88559
|
error_code: 'august_lock_not_authorized';
|
|
89406
|
-
} | {
|
|
89407
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89408
|
-
message: string;
|
|
89409
|
-
/** Indicates that the error is a device error. */
|
|
89410
|
-
is_device_error: true;
|
|
89411
|
-
/** Date and time at which Seam created the error. */
|
|
89412
|
-
created_at: string;
|
|
89413
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
89414
|
-
error_code: 'august_lock_missing_bridge';
|
|
89415
|
-
} | {
|
|
89416
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89417
|
-
message: string;
|
|
89418
|
-
/** Indicates that the error is a device error. */
|
|
89419
|
-
is_device_error: true;
|
|
89420
|
-
/** Date and time at which Seam created the error. */
|
|
89421
|
-
created_at: string;
|
|
89422
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
89423
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
89424
88560
|
} | {
|
|
89425
88561
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89426
88562
|
message: string;
|
|
@@ -89448,15 +88584,6 @@ type Routes = {
|
|
|
89448
88584
|
created_at: string;
|
|
89449
88585
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
89450
88586
|
error_code: 'subscription_required';
|
|
89451
|
-
} | {
|
|
89452
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89453
|
-
message: string;
|
|
89454
|
-
/** Indicates that the error is a device error. */
|
|
89455
|
-
is_device_error: true;
|
|
89456
|
-
/** Date and time at which Seam created the error. */
|
|
89457
|
-
created_at: string;
|
|
89458
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
89459
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
89460
88587
|
} | {
|
|
89461
88588
|
/** Date and time at which Seam created the error. */
|
|
89462
88589
|
created_at: string;
|
|
@@ -89484,13 +88611,6 @@ type Routes = {
|
|
|
89484
88611
|
created_at: string;
|
|
89485
88612
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89486
88613
|
warning_code: 'many_active_backup_codes';
|
|
89487
|
-
} | {
|
|
89488
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89489
|
-
message: string;
|
|
89490
|
-
/** Date and time at which Seam created the warning. */
|
|
89491
|
-
created_at: string;
|
|
89492
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89493
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
89494
88614
|
} | {
|
|
89495
88615
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89496
88616
|
message: string;
|
|
@@ -97661,24 +96781,6 @@ type Routes = {
|
|
|
97661
96781
|
created_at: string;
|
|
97662
96782
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97663
96783
|
error_code: 'august_lock_not_authorized';
|
|
97664
|
-
} | {
|
|
97665
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97666
|
-
message: string;
|
|
97667
|
-
/** Indicates that the error is a device error. */
|
|
97668
|
-
is_device_error: true;
|
|
97669
|
-
/** Date and time at which Seam created the error. */
|
|
97670
|
-
created_at: string;
|
|
97671
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97672
|
-
error_code: 'august_lock_missing_bridge';
|
|
97673
|
-
} | {
|
|
97674
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97675
|
-
message: string;
|
|
97676
|
-
/** Indicates that the error is a device error. */
|
|
97677
|
-
is_device_error: true;
|
|
97678
|
-
/** Date and time at which Seam created the error. */
|
|
97679
|
-
created_at: string;
|
|
97680
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97681
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
97682
96784
|
} | {
|
|
97683
96785
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97684
96786
|
message: string;
|
|
@@ -97706,15 +96808,6 @@ type Routes = {
|
|
|
97706
96808
|
created_at: string;
|
|
97707
96809
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97708
96810
|
error_code: 'subscription_required';
|
|
97709
|
-
} | {
|
|
97710
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97711
|
-
message: string;
|
|
97712
|
-
/** Indicates that the error is a device error. */
|
|
97713
|
-
is_device_error: true;
|
|
97714
|
-
/** Date and time at which Seam created the error. */
|
|
97715
|
-
created_at: string;
|
|
97716
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97717
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
97718
96811
|
} | {
|
|
97719
96812
|
/** Date and time at which Seam created the error. */
|
|
97720
96813
|
created_at: string;
|
|
@@ -97742,13 +96835,6 @@ type Routes = {
|
|
|
97742
96835
|
created_at: string;
|
|
97743
96836
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97744
96837
|
warning_code: 'many_active_backup_codes';
|
|
97745
|
-
} | {
|
|
97746
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97747
|
-
message: string;
|
|
97748
|
-
/** Date and time at which Seam created the warning. */
|
|
97749
|
-
created_at: string;
|
|
97750
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97751
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
97752
96838
|
} | {
|
|
97753
96839
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97754
96840
|
message: string;
|
|
@@ -99142,24 +98228,6 @@ type Routes = {
|
|
|
99142
98228
|
created_at: string;
|
|
99143
98229
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99144
98230
|
error_code: 'august_lock_not_authorized';
|
|
99145
|
-
} | {
|
|
99146
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99147
|
-
message: string;
|
|
99148
|
-
/** Indicates that the error is a device error. */
|
|
99149
|
-
is_device_error: true;
|
|
99150
|
-
/** Date and time at which Seam created the error. */
|
|
99151
|
-
created_at: string;
|
|
99152
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99153
|
-
error_code: 'august_lock_missing_bridge';
|
|
99154
|
-
} | {
|
|
99155
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99156
|
-
message: string;
|
|
99157
|
-
/** Indicates that the error is a device error. */
|
|
99158
|
-
is_device_error: true;
|
|
99159
|
-
/** Date and time at which Seam created the error. */
|
|
99160
|
-
created_at: string;
|
|
99161
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99162
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
99163
98231
|
} | {
|
|
99164
98232
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99165
98233
|
message: string;
|
|
@@ -99187,15 +98255,6 @@ type Routes = {
|
|
|
99187
98255
|
created_at: string;
|
|
99188
98256
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99189
98257
|
error_code: 'subscription_required';
|
|
99190
|
-
} | {
|
|
99191
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99192
|
-
message: string;
|
|
99193
|
-
/** Indicates that the error is a device error. */
|
|
99194
|
-
is_device_error: true;
|
|
99195
|
-
/** Date and time at which Seam created the error. */
|
|
99196
|
-
created_at: string;
|
|
99197
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99198
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
99199
98258
|
} | {
|
|
99200
98259
|
/** Date and time at which Seam created the error. */
|
|
99201
98260
|
created_at: string;
|
|
@@ -99223,13 +98282,6 @@ type Routes = {
|
|
|
99223
98282
|
created_at: string;
|
|
99224
98283
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99225
98284
|
warning_code: 'many_active_backup_codes';
|
|
99226
|
-
} | {
|
|
99227
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99228
|
-
message: string;
|
|
99229
|
-
/** Date and time at which Seam created the warning. */
|
|
99230
|
-
created_at: string;
|
|
99231
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99232
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
99233
98285
|
} | {
|
|
99234
98286
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99235
98287
|
message: string;
|
|
@@ -115522,24 +114574,6 @@ type Routes = {
|
|
|
115522
114574
|
created_at: string;
|
|
115523
114575
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115524
114576
|
error_code: 'august_lock_not_authorized';
|
|
115525
|
-
} | {
|
|
115526
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115527
|
-
message: string;
|
|
115528
|
-
/** Indicates that the error is a device error. */
|
|
115529
|
-
is_device_error: true;
|
|
115530
|
-
/** Date and time at which Seam created the error. */
|
|
115531
|
-
created_at: string;
|
|
115532
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115533
|
-
error_code: 'august_lock_missing_bridge';
|
|
115534
|
-
} | {
|
|
115535
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115536
|
-
message: string;
|
|
115537
|
-
/** Indicates that the error is a device error. */
|
|
115538
|
-
is_device_error: true;
|
|
115539
|
-
/** Date and time at which Seam created the error. */
|
|
115540
|
-
created_at: string;
|
|
115541
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115542
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
115543
114577
|
} | {
|
|
115544
114578
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115545
114579
|
message: string;
|
|
@@ -115567,15 +114601,6 @@ type Routes = {
|
|
|
115567
114601
|
created_at: string;
|
|
115568
114602
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115569
114603
|
error_code: 'subscription_required';
|
|
115570
|
-
} | {
|
|
115571
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115572
|
-
message: string;
|
|
115573
|
-
/** Indicates that the error is a device error. */
|
|
115574
|
-
is_device_error: true;
|
|
115575
|
-
/** Date and time at which Seam created the error. */
|
|
115576
|
-
created_at: string;
|
|
115577
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115578
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
115579
114604
|
} | {
|
|
115580
114605
|
/** Date and time at which Seam created the error. */
|
|
115581
114606
|
created_at: string;
|
|
@@ -115603,13 +114628,6 @@ type Routes = {
|
|
|
115603
114628
|
created_at: string;
|
|
115604
114629
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115605
114630
|
warning_code: 'many_active_backup_codes';
|
|
115606
|
-
} | {
|
|
115607
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
115608
|
-
message: string;
|
|
115609
|
-
/** Date and time at which Seam created the warning. */
|
|
115610
|
-
created_at: string;
|
|
115611
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115612
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
115613
114631
|
} | {
|
|
115614
114632
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
115615
114633
|
message: string;
|
|
@@ -123018,24 +122036,6 @@ type Routes = {
|
|
|
123018
122036
|
created_at: string;
|
|
123019
122037
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123020
122038
|
error_code: 'august_lock_not_authorized';
|
|
123021
|
-
} | {
|
|
123022
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123023
|
-
message: string;
|
|
123024
|
-
/** Indicates that the error is a device error. */
|
|
123025
|
-
is_device_error: true;
|
|
123026
|
-
/** Date and time at which Seam created the error. */
|
|
123027
|
-
created_at: string;
|
|
123028
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123029
|
-
error_code: 'august_lock_missing_bridge';
|
|
123030
|
-
} | {
|
|
123031
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123032
|
-
message: string;
|
|
123033
|
-
/** Indicates that the error is a device error. */
|
|
123034
|
-
is_device_error: true;
|
|
123035
|
-
/** Date and time at which Seam created the error. */
|
|
123036
|
-
created_at: string;
|
|
123037
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123038
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
123039
122039
|
} | {
|
|
123040
122040
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123041
122041
|
message: string;
|
|
@@ -123063,15 +122063,6 @@ type Routes = {
|
|
|
123063
122063
|
created_at: string;
|
|
123064
122064
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123065
122065
|
error_code: 'subscription_required';
|
|
123066
|
-
} | {
|
|
123067
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123068
|
-
message: string;
|
|
123069
|
-
/** Indicates that the error is a device error. */
|
|
123070
|
-
is_device_error: true;
|
|
123071
|
-
/** Date and time at which Seam created the error. */
|
|
123072
|
-
created_at: string;
|
|
123073
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123074
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
123075
122066
|
} | {
|
|
123076
122067
|
/** Date and time at which Seam created the error. */
|
|
123077
122068
|
created_at: string;
|
|
@@ -123099,13 +122090,6 @@ type Routes = {
|
|
|
123099
122090
|
created_at: string;
|
|
123100
122091
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123101
122092
|
warning_code: 'many_active_backup_codes';
|
|
123102
|
-
} | {
|
|
123103
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123104
|
-
message: string;
|
|
123105
|
-
/** Date and time at which Seam created the warning. */
|
|
123106
|
-
created_at: string;
|
|
123107
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123108
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
123109
122093
|
} | {
|
|
123110
122094
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123111
122095
|
message: string;
|
|
@@ -127926,24 +126910,6 @@ type Routes = {
|
|
|
127926
126910
|
created_at: string;
|
|
127927
126911
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127928
126912
|
error_code: 'august_lock_not_authorized';
|
|
127929
|
-
} | {
|
|
127930
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127931
|
-
message: string;
|
|
127932
|
-
/** Indicates that the error is a device error. */
|
|
127933
|
-
is_device_error: true;
|
|
127934
|
-
/** Date and time at which Seam created the error. */
|
|
127935
|
-
created_at: string;
|
|
127936
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127937
|
-
error_code: 'august_lock_missing_bridge';
|
|
127938
|
-
} | {
|
|
127939
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127940
|
-
message: string;
|
|
127941
|
-
/** Indicates that the error is a device error. */
|
|
127942
|
-
is_device_error: true;
|
|
127943
|
-
/** Date and time at which Seam created the error. */
|
|
127944
|
-
created_at: string;
|
|
127945
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127946
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
127947
126913
|
} | {
|
|
127948
126914
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127949
126915
|
message: string;
|
|
@@ -127971,15 +126937,6 @@ type Routes = {
|
|
|
127971
126937
|
created_at: string;
|
|
127972
126938
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127973
126939
|
error_code: 'subscription_required';
|
|
127974
|
-
} | {
|
|
127975
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127976
|
-
message: string;
|
|
127977
|
-
/** Indicates that the error is a device error. */
|
|
127978
|
-
is_device_error: true;
|
|
127979
|
-
/** Date and time at which Seam created the error. */
|
|
127980
|
-
created_at: string;
|
|
127981
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127982
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
127983
126940
|
} | {
|
|
127984
126941
|
/** Date and time at which Seam created the error. */
|
|
127985
126942
|
created_at: string;
|
|
@@ -128007,13 +126964,6 @@ type Routes = {
|
|
|
128007
126964
|
created_at: string;
|
|
128008
126965
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128009
126966
|
warning_code: 'many_active_backup_codes';
|
|
128010
|
-
} | {
|
|
128011
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128012
|
-
message: string;
|
|
128013
|
-
/** Date and time at which Seam created the warning. */
|
|
128014
|
-
created_at: string;
|
|
128015
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128016
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
128017
126967
|
} | {
|
|
128018
126968
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128019
126969
|
message: string;
|
|
@@ -129407,24 +128357,6 @@ type Routes = {
|
|
|
129407
128357
|
created_at: string;
|
|
129408
128358
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129409
128359
|
error_code: 'august_lock_not_authorized';
|
|
129410
|
-
} | {
|
|
129411
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129412
|
-
message: string;
|
|
129413
|
-
/** Indicates that the error is a device error. */
|
|
129414
|
-
is_device_error: true;
|
|
129415
|
-
/** Date and time at which Seam created the error. */
|
|
129416
|
-
created_at: string;
|
|
129417
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129418
|
-
error_code: 'august_lock_missing_bridge';
|
|
129419
|
-
} | {
|
|
129420
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129421
|
-
message: string;
|
|
129422
|
-
/** Indicates that the error is a device error. */
|
|
129423
|
-
is_device_error: true;
|
|
129424
|
-
/** Date and time at which Seam created the error. */
|
|
129425
|
-
created_at: string;
|
|
129426
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129427
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
129428
128360
|
} | {
|
|
129429
128361
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129430
128362
|
message: string;
|
|
@@ -129452,15 +128384,6 @@ type Routes = {
|
|
|
129452
128384
|
created_at: string;
|
|
129453
128385
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129454
128386
|
error_code: 'subscription_required';
|
|
129455
|
-
} | {
|
|
129456
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129457
|
-
message: string;
|
|
129458
|
-
/** Indicates that the error is a device error. */
|
|
129459
|
-
is_device_error: true;
|
|
129460
|
-
/** Date and time at which Seam created the error. */
|
|
129461
|
-
created_at: string;
|
|
129462
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129463
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
129464
128387
|
} | {
|
|
129465
128388
|
/** Date and time at which Seam created the error. */
|
|
129466
128389
|
created_at: string;
|
|
@@ -129488,13 +128411,6 @@ type Routes = {
|
|
|
129488
128411
|
created_at: string;
|
|
129489
128412
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129490
128413
|
warning_code: 'many_active_backup_codes';
|
|
129491
|
-
} | {
|
|
129492
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129493
|
-
message: string;
|
|
129494
|
-
/** Date and time at which Seam created the warning. */
|
|
129495
|
-
created_at: string;
|
|
129496
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129497
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
129498
128414
|
} | {
|
|
129499
128415
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129500
128416
|
message: string;
|
|
@@ -138604,24 +137520,6 @@ type Routes = {
|
|
|
138604
137520
|
created_at: string;
|
|
138605
137521
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138606
137522
|
error_code: 'august_lock_not_authorized';
|
|
138607
|
-
} | {
|
|
138608
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
138609
|
-
message: string;
|
|
138610
|
-
/** Indicates that the error is a device error. */
|
|
138611
|
-
is_device_error: true;
|
|
138612
|
-
/** Date and time at which Seam created the error. */
|
|
138613
|
-
created_at: string;
|
|
138614
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138615
|
-
error_code: 'august_lock_missing_bridge';
|
|
138616
|
-
} | {
|
|
138617
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
138618
|
-
message: string;
|
|
138619
|
-
/** Indicates that the error is a device error. */
|
|
138620
|
-
is_device_error: true;
|
|
138621
|
-
/** Date and time at which Seam created the error. */
|
|
138622
|
-
created_at: string;
|
|
138623
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138624
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
138625
137523
|
} | {
|
|
138626
137524
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
138627
137525
|
message: string;
|
|
@@ -138649,15 +137547,6 @@ type Routes = {
|
|
|
138649
137547
|
created_at: string;
|
|
138650
137548
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138651
137549
|
error_code: 'subscription_required';
|
|
138652
|
-
} | {
|
|
138653
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
138654
|
-
message: string;
|
|
138655
|
-
/** Indicates that the error is a device error. */
|
|
138656
|
-
is_device_error: true;
|
|
138657
|
-
/** Date and time at which Seam created the error. */
|
|
138658
|
-
created_at: string;
|
|
138659
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138660
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
138661
137550
|
} | {
|
|
138662
137551
|
/** Date and time at which Seam created the error. */
|
|
138663
137552
|
created_at: string;
|
|
@@ -138685,13 +137574,6 @@ type Routes = {
|
|
|
138685
137574
|
created_at: string;
|
|
138686
137575
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
138687
137576
|
warning_code: 'many_active_backup_codes';
|
|
138688
|
-
} | {
|
|
138689
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138690
|
-
message: string;
|
|
138691
|
-
/** Date and time at which Seam created the warning. */
|
|
138692
|
-
created_at: string;
|
|
138693
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
138694
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
138695
137577
|
} | {
|
|
138696
137578
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138697
137579
|
message: string;
|
|
@@ -140087,24 +138969,6 @@ type Routes = {
|
|
|
140087
138969
|
created_at: string;
|
|
140088
138970
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140089
138971
|
error_code: 'august_lock_not_authorized';
|
|
140090
|
-
} | {
|
|
140091
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140092
|
-
message: string;
|
|
140093
|
-
/** Indicates that the error is a device error. */
|
|
140094
|
-
is_device_error: true;
|
|
140095
|
-
/** Date and time at which Seam created the error. */
|
|
140096
|
-
created_at: string;
|
|
140097
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140098
|
-
error_code: 'august_lock_missing_bridge';
|
|
140099
|
-
} | {
|
|
140100
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140101
|
-
message: string;
|
|
140102
|
-
/** Indicates that the error is a device error. */
|
|
140103
|
-
is_device_error: true;
|
|
140104
|
-
/** Date and time at which Seam created the error. */
|
|
140105
|
-
created_at: string;
|
|
140106
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140107
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
140108
138972
|
} | {
|
|
140109
138973
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140110
138974
|
message: string;
|
|
@@ -140132,15 +138996,6 @@ type Routes = {
|
|
|
140132
138996
|
created_at: string;
|
|
140133
138997
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140134
138998
|
error_code: 'subscription_required';
|
|
140135
|
-
} | {
|
|
140136
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140137
|
-
message: string;
|
|
140138
|
-
/** Indicates that the error is a device error. */
|
|
140139
|
-
is_device_error: true;
|
|
140140
|
-
/** Date and time at which Seam created the error. */
|
|
140141
|
-
created_at: string;
|
|
140142
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140143
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
140144
138999
|
} | {
|
|
140145
139000
|
/** Date and time at which Seam created the error. */
|
|
140146
139001
|
created_at: string;
|
|
@@ -140168,13 +139023,6 @@ type Routes = {
|
|
|
140168
139023
|
created_at: string;
|
|
140169
139024
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
140170
139025
|
warning_code: 'many_active_backup_codes';
|
|
140171
|
-
} | {
|
|
140172
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
140173
|
-
message: string;
|
|
140174
|
-
/** Date and time at which Seam created the warning. */
|
|
140175
|
-
created_at: string;
|
|
140176
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
140177
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
140178
139026
|
} | {
|
|
140179
139027
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
140180
139028
|
message: string;
|
|
@@ -142832,24 +141680,6 @@ type Routes = {
|
|
|
142832
141680
|
created_at: string;
|
|
142833
141681
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142834
141682
|
error_code: 'august_lock_not_authorized';
|
|
142835
|
-
} | {
|
|
142836
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142837
|
-
message: string;
|
|
142838
|
-
/** Indicates that the error is a device error. */
|
|
142839
|
-
is_device_error: true;
|
|
142840
|
-
/** Date and time at which Seam created the error. */
|
|
142841
|
-
created_at: string;
|
|
142842
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142843
|
-
error_code: 'august_lock_missing_bridge';
|
|
142844
|
-
} | {
|
|
142845
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142846
|
-
message: string;
|
|
142847
|
-
/** Indicates that the error is a device error. */
|
|
142848
|
-
is_device_error: true;
|
|
142849
|
-
/** Date and time at which Seam created the error. */
|
|
142850
|
-
created_at: string;
|
|
142851
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142852
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
142853
141683
|
} | {
|
|
142854
141684
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142855
141685
|
message: string;
|
|
@@ -142877,15 +141707,6 @@ type Routes = {
|
|
|
142877
141707
|
created_at: string;
|
|
142878
141708
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142879
141709
|
error_code: 'subscription_required';
|
|
142880
|
-
} | {
|
|
142881
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142882
|
-
message: string;
|
|
142883
|
-
/** Indicates that the error is a device error. */
|
|
142884
|
-
is_device_error: true;
|
|
142885
|
-
/** Date and time at which Seam created the error. */
|
|
142886
|
-
created_at: string;
|
|
142887
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142888
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
142889
141710
|
} | {
|
|
142890
141711
|
/** Date and time at which Seam created the error. */
|
|
142891
141712
|
created_at: string;
|
|
@@ -142913,13 +141734,6 @@ type Routes = {
|
|
|
142913
141734
|
created_at: string;
|
|
142914
141735
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142915
141736
|
warning_code: 'many_active_backup_codes';
|
|
142916
|
-
} | {
|
|
142917
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
142918
|
-
message: string;
|
|
142919
|
-
/** Date and time at which Seam created the warning. */
|
|
142920
|
-
created_at: string;
|
|
142921
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142922
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
142923
141737
|
} | {
|
|
142924
141738
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
142925
141739
|
message: string;
|
|
@@ -146162,24 +144976,6 @@ type Routes = {
|
|
|
146162
144976
|
created_at: string;
|
|
146163
144977
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146164
144978
|
error_code: 'august_lock_not_authorized';
|
|
146165
|
-
} | {
|
|
146166
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146167
|
-
message: string;
|
|
146168
|
-
/** Indicates that the error is a device error. */
|
|
146169
|
-
is_device_error: true;
|
|
146170
|
-
/** Date and time at which Seam created the error. */
|
|
146171
|
-
created_at: string;
|
|
146172
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146173
|
-
error_code: 'august_lock_missing_bridge';
|
|
146174
|
-
} | {
|
|
146175
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146176
|
-
message: string;
|
|
146177
|
-
/** Indicates that the error is a device error. */
|
|
146178
|
-
is_device_error: true;
|
|
146179
|
-
/** Date and time at which Seam created the error. */
|
|
146180
|
-
created_at: string;
|
|
146181
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146182
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
146183
144979
|
} | {
|
|
146184
144980
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146185
144981
|
message: string;
|
|
@@ -146207,15 +145003,6 @@ type Routes = {
|
|
|
146207
145003
|
created_at: string;
|
|
146208
145004
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146209
145005
|
error_code: 'subscription_required';
|
|
146210
|
-
} | {
|
|
146211
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146212
|
-
message: string;
|
|
146213
|
-
/** Indicates that the error is a device error. */
|
|
146214
|
-
is_device_error: true;
|
|
146215
|
-
/** Date and time at which Seam created the error. */
|
|
146216
|
-
created_at: string;
|
|
146217
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146218
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
146219
145006
|
} | {
|
|
146220
145007
|
/** Date and time at which Seam created the error. */
|
|
146221
145008
|
created_at: string;
|
|
@@ -146243,13 +145030,6 @@ type Routes = {
|
|
|
146243
145030
|
created_at: string;
|
|
146244
145031
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
146245
145032
|
warning_code: 'many_active_backup_codes';
|
|
146246
|
-
} | {
|
|
146247
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
146248
|
-
message: string;
|
|
146249
|
-
/** Date and time at which Seam created the warning. */
|
|
146250
|
-
created_at: string;
|
|
146251
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
146252
|
-
warning_code: 'wyze_device_missing_gateway';
|
|
146253
145033
|
} | {
|
|
146254
145034
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
146255
145035
|
message: string;
|
|
@@ -150798,24 +149578,6 @@ type Routes = {
|
|
|
150798
149578
|
created_at: string;
|
|
150799
149579
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
150800
149580
|
error_code: 'august_lock_not_authorized';
|
|
150801
|
-
} | {
|
|
150802
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
150803
|
-
message: string;
|
|
150804
|
-
/** Indicates that the error is a device error. */
|
|
150805
|
-
is_device_error: true;
|
|
150806
|
-
/** Date and time at which Seam created the error. */
|
|
150807
|
-
created_at: string;
|
|
150808
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
150809
|
-
error_code: 'august_lock_missing_bridge';
|
|
150810
|
-
} | {
|
|
150811
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
150812
|
-
message: string;
|
|
150813
|
-
/** Indicates that the error is a device error. */
|
|
150814
|
-
is_device_error: true;
|
|
150815
|
-
/** Date and time at which Seam created the error. */
|
|
150816
|
-
created_at: string;
|
|
150817
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
150818
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
150819
149581
|
} | {
|
|
150820
149582
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
150821
149583
|
message: string;
|
|
@@ -150843,15 +149605,6 @@ type Routes = {
|
|
|
150843
149605
|
created_at: string;
|
|
150844
149606
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
150845
149607
|
error_code: 'subscription_required';
|
|
150846
|
-
} | {
|
|
150847
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
150848
|
-
message: string;
|
|
150849
|
-
/** Indicates that the error is a device error. */
|
|
150850
|
-
is_device_error: true;
|
|
150851
|
-
/** Date and time at which Seam created the error. */
|
|
150852
|
-
created_at: string;
|
|
150853
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
150854
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
150855
149608
|
} | {
|
|
150856
149609
|
/** Date and time at which Seam created the error. */
|
|
150857
149610
|
created_at: string;
|
|
@@ -150946,6 +149699,13 @@ type Routes = {
|
|
|
150946
149699
|
created_at?: string | undefined;
|
|
150947
149700
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150948
149701
|
warning_code: 'being_deleted';
|
|
149702
|
+
} | {
|
|
149703
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
149704
|
+
message: string;
|
|
149705
|
+
/** Date and time at which Seam created the warning. */
|
|
149706
|
+
created_at?: string | undefined;
|
|
149707
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
149708
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
150949
149709
|
})[];
|
|
150950
149710
|
/** Indicates that Seam does not manage the access code. */
|
|
150951
149711
|
is_managed: false;
|
|
@@ -151175,24 +149935,6 @@ type Routes = {
|
|
|
151175
149935
|
created_at: string;
|
|
151176
149936
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
151177
149937
|
error_code: 'august_lock_not_authorized';
|
|
151178
|
-
} | {
|
|
151179
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
151180
|
-
message: string;
|
|
151181
|
-
/** Indicates that the error is a device error. */
|
|
151182
|
-
is_device_error: true;
|
|
151183
|
-
/** Date and time at which Seam created the error. */
|
|
151184
|
-
created_at: string;
|
|
151185
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
151186
|
-
error_code: 'august_lock_missing_bridge';
|
|
151187
|
-
} | {
|
|
151188
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
151189
|
-
message: string;
|
|
151190
|
-
/** Indicates that the error is a device error. */
|
|
151191
|
-
is_device_error: true;
|
|
151192
|
-
/** Date and time at which Seam created the error. */
|
|
151193
|
-
created_at: string;
|
|
151194
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
151195
|
-
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
151196
149938
|
} | {
|
|
151197
149939
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
151198
149940
|
message: string;
|
|
@@ -151220,15 +149962,6 @@ type Routes = {
|
|
|
151220
149962
|
created_at: string;
|
|
151221
149963
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
151222
149964
|
error_code: 'subscription_required';
|
|
151223
|
-
} | {
|
|
151224
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
151225
|
-
message: string;
|
|
151226
|
-
/** Indicates that the error is a device error. */
|
|
151227
|
-
is_device_error: true;
|
|
151228
|
-
/** Date and time at which Seam created the error. */
|
|
151229
|
-
created_at: string;
|
|
151230
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
151231
|
-
error_code: 'lockly_missing_wifi_bridge';
|
|
151232
149965
|
} | {
|
|
151233
149966
|
/** Date and time at which Seam created the error. */
|
|
151234
149967
|
created_at: string;
|
|
@@ -151323,6 +150056,13 @@ type Routes = {
|
|
|
151323
150056
|
created_at?: string | undefined;
|
|
151324
150057
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
151325
150058
|
warning_code: 'being_deleted';
|
|
150059
|
+
} | {
|
|
150060
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
150061
|
+
message: string;
|
|
150062
|
+
/** Date and time at which Seam created the warning. */
|
|
150063
|
+
created_at?: string | undefined;
|
|
150064
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150065
|
+
warning_code: 'unknown_issue_with_access_code';
|
|
151326
150066
|
})[];
|
|
151327
150067
|
/** Indicates whether Seam manages the access code. */
|
|
151328
150068
|
is_managed: true;
|