@seamapi/types 1.363.1 → 1.364.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 +218 -43
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +732 -122
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +464 -109
- package/lib/seam/connect/models/access-codes/managed-access-code.js +74 -17
- 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 +156 -26
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/openapi.js +178 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +324 -54
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +80 -19
- package/src/lib/seam/connect/openapi.ts +190 -32
- package/src/lib/seam/connect/route-types.ts +378 -63
package/dist/connect.d.cts
CHANGED
|
@@ -36,6 +36,22 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
36
36
|
message: z.ZodString;
|
|
37
37
|
is_access_code_error: z.ZodLiteral<true>;
|
|
38
38
|
created_at: z.ZodOptional<z.ZodString>;
|
|
39
|
+
}, {
|
|
40
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
41
|
+
}>, "strip", z.ZodTypeAny, {
|
|
42
|
+
message: string;
|
|
43
|
+
error_code: "smartthings_no_free_slots_available";
|
|
44
|
+
is_access_code_error: true;
|
|
45
|
+
created_at?: string | undefined;
|
|
46
|
+
}, {
|
|
47
|
+
message: string;
|
|
48
|
+
error_code: "smartthings_no_free_slots_available";
|
|
49
|
+
is_access_code_error: true;
|
|
50
|
+
created_at?: string | undefined;
|
|
51
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
52
|
+
message: z.ZodString;
|
|
53
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
54
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
39
55
|
}, {
|
|
40
56
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
41
57
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -261,15 +277,31 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
261
277
|
is_access_code_error: z.ZodLiteral<true>;
|
|
262
278
|
created_at: z.ZodOptional<z.ZodString>;
|
|
263
279
|
}, {
|
|
264
|
-
error_code: z.ZodLiteral<"
|
|
280
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
281
|
+
}>, "strip", z.ZodTypeAny, {
|
|
282
|
+
message: string;
|
|
283
|
+
error_code: "august_lock_temporarily_offline";
|
|
284
|
+
is_access_code_error: true;
|
|
285
|
+
created_at?: string | undefined;
|
|
286
|
+
}, {
|
|
287
|
+
message: string;
|
|
288
|
+
error_code: "august_lock_temporarily_offline";
|
|
289
|
+
is_access_code_error: true;
|
|
290
|
+
created_at?: string | undefined;
|
|
291
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
292
|
+
message: z.ZodString;
|
|
293
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
294
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
295
|
+
}, {
|
|
296
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
265
297
|
}>, "strip", z.ZodTypeAny, {
|
|
266
298
|
message: string;
|
|
267
|
-
error_code: "
|
|
299
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
268
300
|
is_access_code_error: true;
|
|
269
301
|
created_at?: string | undefined;
|
|
270
302
|
}, {
|
|
271
303
|
message: string;
|
|
272
|
-
error_code: "
|
|
304
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
273
305
|
is_access_code_error: true;
|
|
274
306
|
created_at?: string | undefined;
|
|
275
307
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -304,6 +336,54 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
304
336
|
error_code: "hubitat_no_free_positions_available";
|
|
305
337
|
is_access_code_error: true;
|
|
306
338
|
created_at?: string | undefined;
|
|
339
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
340
|
+
message: z.ZodString;
|
|
341
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
342
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
343
|
+
}, {
|
|
344
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
345
|
+
}>, "strip", z.ZodTypeAny, {
|
|
346
|
+
message: string;
|
|
347
|
+
error_code: "wyze_duplicate_code_name";
|
|
348
|
+
is_access_code_error: true;
|
|
349
|
+
created_at?: string | undefined;
|
|
350
|
+
}, {
|
|
351
|
+
message: string;
|
|
352
|
+
error_code: "wyze_duplicate_code_name";
|
|
353
|
+
is_access_code_error: true;
|
|
354
|
+
created_at?: string | undefined;
|
|
355
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
356
|
+
message: z.ZodString;
|
|
357
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
358
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
359
|
+
}, {
|
|
360
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
361
|
+
}>, "strip", z.ZodTypeAny, {
|
|
362
|
+
message: string;
|
|
363
|
+
error_code: "wyze_potential_duplicate_code";
|
|
364
|
+
is_access_code_error: true;
|
|
365
|
+
created_at?: string | undefined;
|
|
366
|
+
}, {
|
|
367
|
+
message: string;
|
|
368
|
+
error_code: "wyze_potential_duplicate_code";
|
|
369
|
+
is_access_code_error: true;
|
|
370
|
+
created_at?: string | undefined;
|
|
371
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
372
|
+
message: z.ZodString;
|
|
373
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
374
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
375
|
+
}, {
|
|
376
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
377
|
+
}>, "strip", z.ZodTypeAny, {
|
|
378
|
+
message: string;
|
|
379
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
380
|
+
is_access_code_error: true;
|
|
381
|
+
created_at?: string | undefined;
|
|
382
|
+
}, {
|
|
383
|
+
message: string;
|
|
384
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
385
|
+
is_access_code_error: true;
|
|
386
|
+
created_at?: string | undefined;
|
|
307
387
|
}>]>;
|
|
308
388
|
type AccessCodeError = z.infer<typeof access_code_error>;
|
|
309
389
|
declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -348,19 +428,6 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
348
428
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
349
429
|
message: z.ZodString;
|
|
350
430
|
created_at: z.ZodOptional<z.ZodString>;
|
|
351
|
-
}, {
|
|
352
|
-
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
353
|
-
}>, "strip", z.ZodTypeAny, {
|
|
354
|
-
message: string;
|
|
355
|
-
warning_code: "salto_office_mode";
|
|
356
|
-
created_at?: string | undefined;
|
|
357
|
-
}, {
|
|
358
|
-
message: string;
|
|
359
|
-
warning_code: "salto_office_mode";
|
|
360
|
-
created_at?: string | undefined;
|
|
361
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
362
|
-
message: z.ZodString;
|
|
363
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
364
431
|
}, {
|
|
365
432
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
366
433
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -426,6 +493,19 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
426
493
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
427
494
|
message: z.ZodString;
|
|
428
495
|
created_at: z.ZodOptional<z.ZodString>;
|
|
496
|
+
}, {
|
|
497
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
498
|
+
}>, "strip", z.ZodTypeAny, {
|
|
499
|
+
message: string;
|
|
500
|
+
warning_code: "august_lock_temporarily_offline";
|
|
501
|
+
created_at?: string | undefined;
|
|
502
|
+
}, {
|
|
503
|
+
message: string;
|
|
504
|
+
warning_code: "august_lock_temporarily_offline";
|
|
505
|
+
created_at?: string | undefined;
|
|
506
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
507
|
+
message: z.ZodString;
|
|
508
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
429
509
|
}, {
|
|
430
510
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
431
511
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -510,6 +590,22 @@ declare const access_code: z.ZodObject<{
|
|
|
510
590
|
message: z.ZodString;
|
|
511
591
|
is_access_code_error: z.ZodLiteral<true>;
|
|
512
592
|
created_at: z.ZodOptional<z.ZodString>;
|
|
593
|
+
}, {
|
|
594
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
595
|
+
}>, "strip", z.ZodTypeAny, {
|
|
596
|
+
message: string;
|
|
597
|
+
error_code: "smartthings_no_free_slots_available";
|
|
598
|
+
is_access_code_error: true;
|
|
599
|
+
created_at?: string | undefined;
|
|
600
|
+
}, {
|
|
601
|
+
message: string;
|
|
602
|
+
error_code: "smartthings_no_free_slots_available";
|
|
603
|
+
is_access_code_error: true;
|
|
604
|
+
created_at?: string | undefined;
|
|
605
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
606
|
+
message: z.ZodString;
|
|
607
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
608
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
513
609
|
}, {
|
|
514
610
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
515
611
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -735,15 +831,31 @@ declare const access_code: z.ZodObject<{
|
|
|
735
831
|
is_access_code_error: z.ZodLiteral<true>;
|
|
736
832
|
created_at: z.ZodOptional<z.ZodString>;
|
|
737
833
|
}, {
|
|
738
|
-
error_code: z.ZodLiteral<"
|
|
834
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
739
835
|
}>, "strip", z.ZodTypeAny, {
|
|
740
836
|
message: string;
|
|
741
|
-
error_code: "
|
|
837
|
+
error_code: "august_lock_temporarily_offline";
|
|
742
838
|
is_access_code_error: true;
|
|
743
839
|
created_at?: string | undefined;
|
|
744
840
|
}, {
|
|
745
841
|
message: string;
|
|
746
|
-
error_code: "
|
|
842
|
+
error_code: "august_lock_temporarily_offline";
|
|
843
|
+
is_access_code_error: true;
|
|
844
|
+
created_at?: string | undefined;
|
|
845
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
846
|
+
message: z.ZodString;
|
|
847
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
848
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
849
|
+
}, {
|
|
850
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
851
|
+
}>, "strip", z.ZodTypeAny, {
|
|
852
|
+
message: string;
|
|
853
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
854
|
+
is_access_code_error: true;
|
|
855
|
+
created_at?: string | undefined;
|
|
856
|
+
}, {
|
|
857
|
+
message: string;
|
|
858
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
747
859
|
is_access_code_error: true;
|
|
748
860
|
created_at?: string | undefined;
|
|
749
861
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -778,6 +890,54 @@ declare const access_code: z.ZodObject<{
|
|
|
778
890
|
error_code: "hubitat_no_free_positions_available";
|
|
779
891
|
is_access_code_error: true;
|
|
780
892
|
created_at?: string | undefined;
|
|
893
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
894
|
+
message: z.ZodString;
|
|
895
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
896
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
897
|
+
}, {
|
|
898
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
899
|
+
}>, "strip", z.ZodTypeAny, {
|
|
900
|
+
message: string;
|
|
901
|
+
error_code: "wyze_duplicate_code_name";
|
|
902
|
+
is_access_code_error: true;
|
|
903
|
+
created_at?: string | undefined;
|
|
904
|
+
}, {
|
|
905
|
+
message: string;
|
|
906
|
+
error_code: "wyze_duplicate_code_name";
|
|
907
|
+
is_access_code_error: true;
|
|
908
|
+
created_at?: string | undefined;
|
|
909
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
910
|
+
message: z.ZodString;
|
|
911
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
912
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
913
|
+
}, {
|
|
914
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
915
|
+
}>, "strip", z.ZodTypeAny, {
|
|
916
|
+
message: string;
|
|
917
|
+
error_code: "wyze_potential_duplicate_code";
|
|
918
|
+
is_access_code_error: true;
|
|
919
|
+
created_at?: string | undefined;
|
|
920
|
+
}, {
|
|
921
|
+
message: string;
|
|
922
|
+
error_code: "wyze_potential_duplicate_code";
|
|
923
|
+
is_access_code_error: true;
|
|
924
|
+
created_at?: string | undefined;
|
|
925
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
926
|
+
message: z.ZodString;
|
|
927
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
928
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
929
|
+
}, {
|
|
930
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
931
|
+
}>, "strip", z.ZodTypeAny, {
|
|
932
|
+
message: string;
|
|
933
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
934
|
+
is_access_code_error: true;
|
|
935
|
+
created_at?: string | undefined;
|
|
936
|
+
}, {
|
|
937
|
+
message: string;
|
|
938
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
939
|
+
is_access_code_error: true;
|
|
940
|
+
created_at?: string | undefined;
|
|
781
941
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
782
942
|
created_at: z.ZodString;
|
|
783
943
|
message: z.ZodString;
|
|
@@ -1113,19 +1273,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1113
1273
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1114
1274
|
message: z.ZodString;
|
|
1115
1275
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1116
|
-
}, {
|
|
1117
|
-
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
1118
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1119
|
-
message: string;
|
|
1120
|
-
warning_code: "salto_office_mode";
|
|
1121
|
-
created_at?: string | undefined;
|
|
1122
|
-
}, {
|
|
1123
|
-
message: string;
|
|
1124
|
-
warning_code: "salto_office_mode";
|
|
1125
|
-
created_at?: string | undefined;
|
|
1126
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1127
|
-
message: z.ZodString;
|
|
1128
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
1129
1276
|
}, {
|
|
1130
1277
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
1131
1278
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1191,6 +1338,19 @@ declare const access_code: z.ZodObject<{
|
|
|
1191
1338
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1192
1339
|
message: z.ZodString;
|
|
1193
1340
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1341
|
+
}, {
|
|
1342
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
1343
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1344
|
+
message: string;
|
|
1345
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1346
|
+
created_at?: string | undefined;
|
|
1347
|
+
}, {
|
|
1348
|
+
message: string;
|
|
1349
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1350
|
+
created_at?: string | undefined;
|
|
1351
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1352
|
+
message: z.ZodString;
|
|
1353
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1194
1354
|
}, {
|
|
1195
1355
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
1196
1356
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1404,6 +1564,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1404
1564
|
error_code: "august_device_slots_full";
|
|
1405
1565
|
is_access_code_error: true;
|
|
1406
1566
|
created_at?: string | undefined;
|
|
1567
|
+
} | {
|
|
1568
|
+
message: string;
|
|
1569
|
+
error_code: "august_lock_temporarily_offline";
|
|
1570
|
+
is_access_code_error: true;
|
|
1571
|
+
created_at?: string | undefined;
|
|
1407
1572
|
} | {
|
|
1408
1573
|
message: string;
|
|
1409
1574
|
error_code: "august_lock_missing_keypad";
|
|
@@ -1411,7 +1576,7 @@ declare const access_code: z.ZodObject<{
|
|
|
1411
1576
|
created_at?: string | undefined;
|
|
1412
1577
|
} | {
|
|
1413
1578
|
message: string;
|
|
1414
|
-
error_code: "
|
|
1579
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
1415
1580
|
is_access_code_error: true;
|
|
1416
1581
|
created_at?: string | undefined;
|
|
1417
1582
|
} | {
|
|
@@ -1424,6 +1589,26 @@ declare const access_code: z.ZodObject<{
|
|
|
1424
1589
|
error_code: "hubitat_no_free_positions_available";
|
|
1425
1590
|
is_access_code_error: true;
|
|
1426
1591
|
created_at?: string | undefined;
|
|
1592
|
+
} | {
|
|
1593
|
+
message: string;
|
|
1594
|
+
error_code: "smartthings_no_free_slots_available";
|
|
1595
|
+
is_access_code_error: true;
|
|
1596
|
+
created_at?: string | undefined;
|
|
1597
|
+
} | {
|
|
1598
|
+
message: string;
|
|
1599
|
+
error_code: "wyze_duplicate_code_name";
|
|
1600
|
+
is_access_code_error: true;
|
|
1601
|
+
created_at?: string | undefined;
|
|
1602
|
+
} | {
|
|
1603
|
+
message: string;
|
|
1604
|
+
error_code: "wyze_potential_duplicate_code";
|
|
1605
|
+
is_access_code_error: true;
|
|
1606
|
+
created_at?: string | undefined;
|
|
1607
|
+
} | {
|
|
1608
|
+
message: string;
|
|
1609
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1610
|
+
is_access_code_error: true;
|
|
1611
|
+
created_at?: string | undefined;
|
|
1427
1612
|
})[];
|
|
1428
1613
|
warnings: ({
|
|
1429
1614
|
message: string;
|
|
@@ -1435,19 +1620,19 @@ declare const access_code: z.ZodObject<{
|
|
|
1435
1620
|
created_at?: string | undefined;
|
|
1436
1621
|
} | {
|
|
1437
1622
|
message: string;
|
|
1438
|
-
warning_code: "
|
|
1623
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1439
1624
|
created_at?: string | undefined;
|
|
1440
1625
|
} | {
|
|
1441
1626
|
message: string;
|
|
1442
|
-
warning_code: "
|
|
1627
|
+
warning_code: "code_modified_external_to_seam";
|
|
1443
1628
|
created_at?: string | undefined;
|
|
1444
1629
|
} | {
|
|
1445
1630
|
message: string;
|
|
1446
|
-
warning_code: "
|
|
1631
|
+
warning_code: "schlage_detected_duplicate";
|
|
1447
1632
|
created_at?: string | undefined;
|
|
1448
1633
|
} | {
|
|
1449
1634
|
message: string;
|
|
1450
|
-
warning_code: "
|
|
1635
|
+
warning_code: "schlage_creation_outage";
|
|
1451
1636
|
created_at?: string | undefined;
|
|
1452
1637
|
} | {
|
|
1453
1638
|
message: string;
|
|
@@ -1653,6 +1838,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1653
1838
|
error_code: "august_device_slots_full";
|
|
1654
1839
|
is_access_code_error: true;
|
|
1655
1840
|
created_at?: string | undefined;
|
|
1841
|
+
} | {
|
|
1842
|
+
message: string;
|
|
1843
|
+
error_code: "august_lock_temporarily_offline";
|
|
1844
|
+
is_access_code_error: true;
|
|
1845
|
+
created_at?: string | undefined;
|
|
1656
1846
|
} | {
|
|
1657
1847
|
message: string;
|
|
1658
1848
|
error_code: "august_lock_missing_keypad";
|
|
@@ -1660,7 +1850,7 @@ declare const access_code: z.ZodObject<{
|
|
|
1660
1850
|
created_at?: string | undefined;
|
|
1661
1851
|
} | {
|
|
1662
1852
|
message: string;
|
|
1663
|
-
error_code: "
|
|
1853
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
1664
1854
|
is_access_code_error: true;
|
|
1665
1855
|
created_at?: string | undefined;
|
|
1666
1856
|
} | {
|
|
@@ -1673,6 +1863,26 @@ declare const access_code: z.ZodObject<{
|
|
|
1673
1863
|
error_code: "hubitat_no_free_positions_available";
|
|
1674
1864
|
is_access_code_error: true;
|
|
1675
1865
|
created_at?: string | undefined;
|
|
1866
|
+
} | {
|
|
1867
|
+
message: string;
|
|
1868
|
+
error_code: "smartthings_no_free_slots_available";
|
|
1869
|
+
is_access_code_error: true;
|
|
1870
|
+
created_at?: string | undefined;
|
|
1871
|
+
} | {
|
|
1872
|
+
message: string;
|
|
1873
|
+
error_code: "wyze_duplicate_code_name";
|
|
1874
|
+
is_access_code_error: true;
|
|
1875
|
+
created_at?: string | undefined;
|
|
1876
|
+
} | {
|
|
1877
|
+
message: string;
|
|
1878
|
+
error_code: "wyze_potential_duplicate_code";
|
|
1879
|
+
is_access_code_error: true;
|
|
1880
|
+
created_at?: string | undefined;
|
|
1881
|
+
} | {
|
|
1882
|
+
message: string;
|
|
1883
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1884
|
+
is_access_code_error: true;
|
|
1885
|
+
created_at?: string | undefined;
|
|
1676
1886
|
})[];
|
|
1677
1887
|
warnings: ({
|
|
1678
1888
|
message: string;
|
|
@@ -1684,19 +1894,19 @@ declare const access_code: z.ZodObject<{
|
|
|
1684
1894
|
created_at?: string | undefined;
|
|
1685
1895
|
} | {
|
|
1686
1896
|
message: string;
|
|
1687
|
-
warning_code: "
|
|
1897
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1688
1898
|
created_at?: string | undefined;
|
|
1689
1899
|
} | {
|
|
1690
1900
|
message: string;
|
|
1691
|
-
warning_code: "
|
|
1901
|
+
warning_code: "code_modified_external_to_seam";
|
|
1692
1902
|
created_at?: string | undefined;
|
|
1693
1903
|
} | {
|
|
1694
1904
|
message: string;
|
|
1695
|
-
warning_code: "
|
|
1905
|
+
warning_code: "schlage_detected_duplicate";
|
|
1696
1906
|
created_at?: string | undefined;
|
|
1697
1907
|
} | {
|
|
1698
1908
|
message: string;
|
|
1699
|
-
warning_code: "
|
|
1909
|
+
warning_code: "schlage_creation_outage";
|
|
1700
1910
|
created_at?: string | undefined;
|
|
1701
1911
|
} | {
|
|
1702
1912
|
message: string;
|
|
@@ -1785,6 +1995,22 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
1785
1995
|
message: z.ZodString;
|
|
1786
1996
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1787
1997
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1998
|
+
}, {
|
|
1999
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
2000
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2001
|
+
message: string;
|
|
2002
|
+
error_code: "smartthings_no_free_slots_available";
|
|
2003
|
+
is_access_code_error: true;
|
|
2004
|
+
created_at?: string | undefined;
|
|
2005
|
+
}, {
|
|
2006
|
+
message: string;
|
|
2007
|
+
error_code: "smartthings_no_free_slots_available";
|
|
2008
|
+
is_access_code_error: true;
|
|
2009
|
+
created_at?: string | undefined;
|
|
2010
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2011
|
+
message: z.ZodString;
|
|
2012
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2013
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1788
2014
|
}, {
|
|
1789
2015
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
1790
2016
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2010,15 +2236,31 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2010
2236
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2011
2237
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2012
2238
|
}, {
|
|
2013
|
-
error_code: z.ZodLiteral<"
|
|
2239
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
2014
2240
|
}>, "strip", z.ZodTypeAny, {
|
|
2015
2241
|
message: string;
|
|
2016
|
-
error_code: "
|
|
2242
|
+
error_code: "august_lock_temporarily_offline";
|
|
2017
2243
|
is_access_code_error: true;
|
|
2018
2244
|
created_at?: string | undefined;
|
|
2019
2245
|
}, {
|
|
2020
2246
|
message: string;
|
|
2021
|
-
error_code: "
|
|
2247
|
+
error_code: "august_lock_temporarily_offline";
|
|
2248
|
+
is_access_code_error: true;
|
|
2249
|
+
created_at?: string | undefined;
|
|
2250
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2251
|
+
message: z.ZodString;
|
|
2252
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2253
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2254
|
+
}, {
|
|
2255
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
2256
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2257
|
+
message: string;
|
|
2258
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
2259
|
+
is_access_code_error: true;
|
|
2260
|
+
created_at?: string | undefined;
|
|
2261
|
+
}, {
|
|
2262
|
+
message: string;
|
|
2263
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
2022
2264
|
is_access_code_error: true;
|
|
2023
2265
|
created_at?: string | undefined;
|
|
2024
2266
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2053,6 +2295,54 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2053
2295
|
error_code: "hubitat_no_free_positions_available";
|
|
2054
2296
|
is_access_code_error: true;
|
|
2055
2297
|
created_at?: string | undefined;
|
|
2298
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2299
|
+
message: z.ZodString;
|
|
2300
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2301
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2302
|
+
}, {
|
|
2303
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
2304
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2305
|
+
message: string;
|
|
2306
|
+
error_code: "wyze_duplicate_code_name";
|
|
2307
|
+
is_access_code_error: true;
|
|
2308
|
+
created_at?: string | undefined;
|
|
2309
|
+
}, {
|
|
2310
|
+
message: string;
|
|
2311
|
+
error_code: "wyze_duplicate_code_name";
|
|
2312
|
+
is_access_code_error: true;
|
|
2313
|
+
created_at?: string | undefined;
|
|
2314
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2315
|
+
message: z.ZodString;
|
|
2316
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2317
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2318
|
+
}, {
|
|
2319
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
2320
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2321
|
+
message: string;
|
|
2322
|
+
error_code: "wyze_potential_duplicate_code";
|
|
2323
|
+
is_access_code_error: true;
|
|
2324
|
+
created_at?: string | undefined;
|
|
2325
|
+
}, {
|
|
2326
|
+
message: string;
|
|
2327
|
+
error_code: "wyze_potential_duplicate_code";
|
|
2328
|
+
is_access_code_error: true;
|
|
2329
|
+
created_at?: string | undefined;
|
|
2330
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2331
|
+
message: z.ZodString;
|
|
2332
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
2333
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2334
|
+
}, {
|
|
2335
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
2336
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2337
|
+
message: string;
|
|
2338
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
2339
|
+
is_access_code_error: true;
|
|
2340
|
+
created_at?: string | undefined;
|
|
2341
|
+
}, {
|
|
2342
|
+
message: string;
|
|
2343
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
2344
|
+
is_access_code_error: true;
|
|
2345
|
+
created_at?: string | undefined;
|
|
2056
2346
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
2057
2347
|
created_at: z.ZodString;
|
|
2058
2348
|
message: z.ZodString;
|
|
@@ -2388,19 +2678,6 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2388
2678
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2389
2679
|
message: z.ZodString;
|
|
2390
2680
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2391
|
-
}, {
|
|
2392
|
-
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
2393
|
-
}>, "strip", z.ZodTypeAny, {
|
|
2394
|
-
message: string;
|
|
2395
|
-
warning_code: "salto_office_mode";
|
|
2396
|
-
created_at?: string | undefined;
|
|
2397
|
-
}, {
|
|
2398
|
-
message: string;
|
|
2399
|
-
warning_code: "salto_office_mode";
|
|
2400
|
-
created_at?: string | undefined;
|
|
2401
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2402
|
-
message: z.ZodString;
|
|
2403
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
2404
2681
|
}, {
|
|
2405
2682
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
2406
2683
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2466,6 +2743,19 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2466
2743
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2467
2744
|
message: z.ZodString;
|
|
2468
2745
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2746
|
+
}, {
|
|
2747
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
2748
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2749
|
+
message: string;
|
|
2750
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2751
|
+
created_at?: string | undefined;
|
|
2752
|
+
}, {
|
|
2753
|
+
message: string;
|
|
2754
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2755
|
+
created_at?: string | undefined;
|
|
2756
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2757
|
+
message: z.ZodString;
|
|
2758
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2469
2759
|
}, {
|
|
2470
2760
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
2471
2761
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2682,6 +2972,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2682
2972
|
error_code: "august_device_slots_full";
|
|
2683
2973
|
is_access_code_error: true;
|
|
2684
2974
|
created_at?: string | undefined;
|
|
2975
|
+
} | {
|
|
2976
|
+
message: string;
|
|
2977
|
+
error_code: "august_lock_temporarily_offline";
|
|
2978
|
+
is_access_code_error: true;
|
|
2979
|
+
created_at?: string | undefined;
|
|
2685
2980
|
} | {
|
|
2686
2981
|
message: string;
|
|
2687
2982
|
error_code: "august_lock_missing_keypad";
|
|
@@ -2689,7 +2984,7 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2689
2984
|
created_at?: string | undefined;
|
|
2690
2985
|
} | {
|
|
2691
2986
|
message: string;
|
|
2692
|
-
error_code: "
|
|
2987
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
2693
2988
|
is_access_code_error: true;
|
|
2694
2989
|
created_at?: string | undefined;
|
|
2695
2990
|
} | {
|
|
@@ -2702,6 +2997,26 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2702
2997
|
error_code: "hubitat_no_free_positions_available";
|
|
2703
2998
|
is_access_code_error: true;
|
|
2704
2999
|
created_at?: string | undefined;
|
|
3000
|
+
} | {
|
|
3001
|
+
message: string;
|
|
3002
|
+
error_code: "smartthings_no_free_slots_available";
|
|
3003
|
+
is_access_code_error: true;
|
|
3004
|
+
created_at?: string | undefined;
|
|
3005
|
+
} | {
|
|
3006
|
+
message: string;
|
|
3007
|
+
error_code: "wyze_duplicate_code_name";
|
|
3008
|
+
is_access_code_error: true;
|
|
3009
|
+
created_at?: string | undefined;
|
|
3010
|
+
} | {
|
|
3011
|
+
message: string;
|
|
3012
|
+
error_code: "wyze_potential_duplicate_code";
|
|
3013
|
+
is_access_code_error: true;
|
|
3014
|
+
created_at?: string | undefined;
|
|
3015
|
+
} | {
|
|
3016
|
+
message: string;
|
|
3017
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
3018
|
+
is_access_code_error: true;
|
|
3019
|
+
created_at?: string | undefined;
|
|
2705
3020
|
})[];
|
|
2706
3021
|
warnings: ({
|
|
2707
3022
|
message: string;
|
|
@@ -2713,19 +3028,19 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2713
3028
|
created_at?: string | undefined;
|
|
2714
3029
|
} | {
|
|
2715
3030
|
message: string;
|
|
2716
|
-
warning_code: "
|
|
3031
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2717
3032
|
created_at?: string | undefined;
|
|
2718
3033
|
} | {
|
|
2719
3034
|
message: string;
|
|
2720
|
-
warning_code: "
|
|
3035
|
+
warning_code: "code_modified_external_to_seam";
|
|
2721
3036
|
created_at?: string | undefined;
|
|
2722
3037
|
} | {
|
|
2723
3038
|
message: string;
|
|
2724
|
-
warning_code: "
|
|
3039
|
+
warning_code: "schlage_detected_duplicate";
|
|
2725
3040
|
created_at?: string | undefined;
|
|
2726
3041
|
} | {
|
|
2727
3042
|
message: string;
|
|
2728
|
-
warning_code: "
|
|
3043
|
+
warning_code: "schlage_creation_outage";
|
|
2729
3044
|
created_at?: string | undefined;
|
|
2730
3045
|
} | {
|
|
2731
3046
|
message: string;
|
|
@@ -2922,6 +3237,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2922
3237
|
error_code: "august_device_slots_full";
|
|
2923
3238
|
is_access_code_error: true;
|
|
2924
3239
|
created_at?: string | undefined;
|
|
3240
|
+
} | {
|
|
3241
|
+
message: string;
|
|
3242
|
+
error_code: "august_lock_temporarily_offline";
|
|
3243
|
+
is_access_code_error: true;
|
|
3244
|
+
created_at?: string | undefined;
|
|
2925
3245
|
} | {
|
|
2926
3246
|
message: string;
|
|
2927
3247
|
error_code: "august_lock_missing_keypad";
|
|
@@ -2929,7 +3249,7 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2929
3249
|
created_at?: string | undefined;
|
|
2930
3250
|
} | {
|
|
2931
3251
|
message: string;
|
|
2932
|
-
error_code: "
|
|
3252
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
2933
3253
|
is_access_code_error: true;
|
|
2934
3254
|
created_at?: string | undefined;
|
|
2935
3255
|
} | {
|
|
@@ -2942,6 +3262,26 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2942
3262
|
error_code: "hubitat_no_free_positions_available";
|
|
2943
3263
|
is_access_code_error: true;
|
|
2944
3264
|
created_at?: string | undefined;
|
|
3265
|
+
} | {
|
|
3266
|
+
message: string;
|
|
3267
|
+
error_code: "smartthings_no_free_slots_available";
|
|
3268
|
+
is_access_code_error: true;
|
|
3269
|
+
created_at?: string | undefined;
|
|
3270
|
+
} | {
|
|
3271
|
+
message: string;
|
|
3272
|
+
error_code: "wyze_duplicate_code_name";
|
|
3273
|
+
is_access_code_error: true;
|
|
3274
|
+
created_at?: string | undefined;
|
|
3275
|
+
} | {
|
|
3276
|
+
message: string;
|
|
3277
|
+
error_code: "wyze_potential_duplicate_code";
|
|
3278
|
+
is_access_code_error: true;
|
|
3279
|
+
created_at?: string | undefined;
|
|
3280
|
+
} | {
|
|
3281
|
+
message: string;
|
|
3282
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
3283
|
+
is_access_code_error: true;
|
|
3284
|
+
created_at?: string | undefined;
|
|
2945
3285
|
})[];
|
|
2946
3286
|
warnings: ({
|
|
2947
3287
|
message: string;
|
|
@@ -2953,19 +3293,19 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2953
3293
|
created_at?: string | undefined;
|
|
2954
3294
|
} | {
|
|
2955
3295
|
message: string;
|
|
2956
|
-
warning_code: "
|
|
3296
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2957
3297
|
created_at?: string | undefined;
|
|
2958
3298
|
} | {
|
|
2959
3299
|
message: string;
|
|
2960
|
-
warning_code: "
|
|
3300
|
+
warning_code: "code_modified_external_to_seam";
|
|
2961
3301
|
created_at?: string | undefined;
|
|
2962
3302
|
} | {
|
|
2963
3303
|
message: string;
|
|
2964
|
-
warning_code: "
|
|
3304
|
+
warning_code: "schlage_detected_duplicate";
|
|
2965
3305
|
created_at?: string | undefined;
|
|
2966
3306
|
} | {
|
|
2967
3307
|
message: string;
|
|
2968
|
-
warning_code: "
|
|
3308
|
+
warning_code: "schlage_creation_outage";
|
|
2969
3309
|
created_at?: string | undefined;
|
|
2970
3310
|
} | {
|
|
2971
3311
|
message: string;
|
|
@@ -44370,6 +44710,12 @@ interface Routes {
|
|
|
44370
44710
|
created_at?: string | undefined;
|
|
44371
44711
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44372
44712
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
44713
|
+
} | {
|
|
44714
|
+
message: string;
|
|
44715
|
+
is_access_code_error: true;
|
|
44716
|
+
created_at?: string | undefined;
|
|
44717
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44718
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
44373
44719
|
} | {
|
|
44374
44720
|
message: string;
|
|
44375
44721
|
is_access_code_error: true;
|
|
@@ -44459,7 +44805,13 @@ interface Routes {
|
|
|
44459
44805
|
is_access_code_error: true;
|
|
44460
44806
|
created_at?: string | undefined;
|
|
44461
44807
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44462
|
-
error_code: '
|
|
44808
|
+
error_code: 'august_lock_temporarily_offline';
|
|
44809
|
+
} | {
|
|
44810
|
+
message: string;
|
|
44811
|
+
is_access_code_error: true;
|
|
44812
|
+
created_at?: string | undefined;
|
|
44813
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44814
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
44463
44815
|
} | {
|
|
44464
44816
|
message: string;
|
|
44465
44817
|
is_access_code_error: true;
|
|
@@ -44472,6 +44824,24 @@ interface Routes {
|
|
|
44472
44824
|
created_at?: string | undefined;
|
|
44473
44825
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44474
44826
|
error_code: 'hubitat_no_free_positions_available';
|
|
44827
|
+
} | {
|
|
44828
|
+
message: string;
|
|
44829
|
+
is_access_code_error: true;
|
|
44830
|
+
created_at?: string | undefined;
|
|
44831
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44832
|
+
error_code: 'wyze_duplicate_code_name';
|
|
44833
|
+
} | {
|
|
44834
|
+
message: string;
|
|
44835
|
+
is_access_code_error: true;
|
|
44836
|
+
created_at?: string | undefined;
|
|
44837
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44838
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
44839
|
+
} | {
|
|
44840
|
+
message: string;
|
|
44841
|
+
is_access_code_error: true;
|
|
44842
|
+
created_at?: string | undefined;
|
|
44843
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44844
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
44475
44845
|
} | {
|
|
44476
44846
|
message: string;
|
|
44477
44847
|
is_device_error: false;
|
|
@@ -44576,11 +44946,6 @@ interface Routes {
|
|
|
44576
44946
|
created_at?: string | undefined;
|
|
44577
44947
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44578
44948
|
warning_code: 'schlage_creation_outage';
|
|
44579
|
-
} | {
|
|
44580
|
-
message: string;
|
|
44581
|
-
created_at?: string | undefined;
|
|
44582
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44583
|
-
warning_code: 'salto_office_mode';
|
|
44584
44949
|
} | {
|
|
44585
44950
|
message: string;
|
|
44586
44951
|
created_at?: string | undefined;
|
|
@@ -44606,6 +44971,11 @@ interface Routes {
|
|
|
44606
44971
|
created_at?: string | undefined;
|
|
44607
44972
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44608
44973
|
warning_code: 'august_device_programming_delay';
|
|
44974
|
+
} | {
|
|
44975
|
+
message: string;
|
|
44976
|
+
created_at?: string | undefined;
|
|
44977
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44978
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
44609
44979
|
} | {
|
|
44610
44980
|
message: string;
|
|
44611
44981
|
created_at?: string | undefined;
|
|
@@ -44704,6 +45074,12 @@ interface Routes {
|
|
|
44704
45074
|
created_at?: string | undefined;
|
|
44705
45075
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44706
45076
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
45077
|
+
} | {
|
|
45078
|
+
message: string;
|
|
45079
|
+
is_access_code_error: true;
|
|
45080
|
+
created_at?: string | undefined;
|
|
45081
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45082
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
44707
45083
|
} | {
|
|
44708
45084
|
message: string;
|
|
44709
45085
|
is_access_code_error: true;
|
|
@@ -44793,7 +45169,13 @@ interface Routes {
|
|
|
44793
45169
|
is_access_code_error: true;
|
|
44794
45170
|
created_at?: string | undefined;
|
|
44795
45171
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44796
|
-
error_code: '
|
|
45172
|
+
error_code: 'august_lock_temporarily_offline';
|
|
45173
|
+
} | {
|
|
45174
|
+
message: string;
|
|
45175
|
+
is_access_code_error: true;
|
|
45176
|
+
created_at?: string | undefined;
|
|
45177
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45178
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
44797
45179
|
} | {
|
|
44798
45180
|
message: string;
|
|
44799
45181
|
is_access_code_error: true;
|
|
@@ -44806,6 +45188,24 @@ interface Routes {
|
|
|
44806
45188
|
created_at?: string | undefined;
|
|
44807
45189
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44808
45190
|
error_code: 'hubitat_no_free_positions_available';
|
|
45191
|
+
} | {
|
|
45192
|
+
message: string;
|
|
45193
|
+
is_access_code_error: true;
|
|
45194
|
+
created_at?: string | undefined;
|
|
45195
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45196
|
+
error_code: 'wyze_duplicate_code_name';
|
|
45197
|
+
} | {
|
|
45198
|
+
message: string;
|
|
45199
|
+
is_access_code_error: true;
|
|
45200
|
+
created_at?: string | undefined;
|
|
45201
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45202
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
45203
|
+
} | {
|
|
45204
|
+
message: string;
|
|
45205
|
+
is_access_code_error: true;
|
|
45206
|
+
created_at?: string | undefined;
|
|
45207
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45208
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
44809
45209
|
} | {
|
|
44810
45210
|
message: string;
|
|
44811
45211
|
is_device_error: false;
|
|
@@ -44910,11 +45310,6 @@ interface Routes {
|
|
|
44910
45310
|
created_at?: string | undefined;
|
|
44911
45311
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44912
45312
|
warning_code: 'schlage_creation_outage';
|
|
44913
|
-
} | {
|
|
44914
|
-
message: string;
|
|
44915
|
-
created_at?: string | undefined;
|
|
44916
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44917
|
-
warning_code: 'salto_office_mode';
|
|
44918
45313
|
} | {
|
|
44919
45314
|
message: string;
|
|
44920
45315
|
created_at?: string | undefined;
|
|
@@ -44940,6 +45335,11 @@ interface Routes {
|
|
|
44940
45335
|
created_at?: string | undefined;
|
|
44941
45336
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44942
45337
|
warning_code: 'august_device_programming_delay';
|
|
45338
|
+
} | {
|
|
45339
|
+
message: string;
|
|
45340
|
+
created_at?: string | undefined;
|
|
45341
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45342
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
44943
45343
|
} | {
|
|
44944
45344
|
message: string;
|
|
44945
45345
|
created_at?: string | undefined;
|
|
@@ -45935,6 +46335,12 @@ interface Routes {
|
|
|
45935
46335
|
created_at?: string | undefined;
|
|
45936
46336
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45937
46337
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
46338
|
+
} | {
|
|
46339
|
+
message: string;
|
|
46340
|
+
is_access_code_error: true;
|
|
46341
|
+
created_at?: string | undefined;
|
|
46342
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46343
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
45938
46344
|
} | {
|
|
45939
46345
|
message: string;
|
|
45940
46346
|
is_access_code_error: true;
|
|
@@ -46024,7 +46430,13 @@ interface Routes {
|
|
|
46024
46430
|
is_access_code_error: true;
|
|
46025
46431
|
created_at?: string | undefined;
|
|
46026
46432
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46027
|
-
error_code: '
|
|
46433
|
+
error_code: 'august_lock_temporarily_offline';
|
|
46434
|
+
} | {
|
|
46435
|
+
message: string;
|
|
46436
|
+
is_access_code_error: true;
|
|
46437
|
+
created_at?: string | undefined;
|
|
46438
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46439
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
46028
46440
|
} | {
|
|
46029
46441
|
message: string;
|
|
46030
46442
|
is_access_code_error: true;
|
|
@@ -46037,6 +46449,24 @@ interface Routes {
|
|
|
46037
46449
|
created_at?: string | undefined;
|
|
46038
46450
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46039
46451
|
error_code: 'hubitat_no_free_positions_available';
|
|
46452
|
+
} | {
|
|
46453
|
+
message: string;
|
|
46454
|
+
is_access_code_error: true;
|
|
46455
|
+
created_at?: string | undefined;
|
|
46456
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46457
|
+
error_code: 'wyze_duplicate_code_name';
|
|
46458
|
+
} | {
|
|
46459
|
+
message: string;
|
|
46460
|
+
is_access_code_error: true;
|
|
46461
|
+
created_at?: string | undefined;
|
|
46462
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46463
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
46464
|
+
} | {
|
|
46465
|
+
message: string;
|
|
46466
|
+
is_access_code_error: true;
|
|
46467
|
+
created_at?: string | undefined;
|
|
46468
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46469
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
46040
46470
|
} | {
|
|
46041
46471
|
message: string;
|
|
46042
46472
|
is_device_error: false;
|
|
@@ -46141,11 +46571,6 @@ interface Routes {
|
|
|
46141
46571
|
created_at?: string | undefined;
|
|
46142
46572
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46143
46573
|
warning_code: 'schlage_creation_outage';
|
|
46144
|
-
} | {
|
|
46145
|
-
message: string;
|
|
46146
|
-
created_at?: string | undefined;
|
|
46147
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46148
|
-
warning_code: 'salto_office_mode';
|
|
46149
46574
|
} | {
|
|
46150
46575
|
message: string;
|
|
46151
46576
|
created_at?: string | undefined;
|
|
@@ -46171,6 +46596,11 @@ interface Routes {
|
|
|
46171
46596
|
created_at?: string | undefined;
|
|
46172
46597
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46173
46598
|
warning_code: 'august_device_programming_delay';
|
|
46599
|
+
} | {
|
|
46600
|
+
message: string;
|
|
46601
|
+
created_at?: string | undefined;
|
|
46602
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46603
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
46174
46604
|
} | {
|
|
46175
46605
|
message: string;
|
|
46176
46606
|
created_at?: string | undefined;
|
|
@@ -46256,6 +46686,12 @@ interface Routes {
|
|
|
46256
46686
|
created_at?: string | undefined;
|
|
46257
46687
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46258
46688
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
46689
|
+
} | {
|
|
46690
|
+
message: string;
|
|
46691
|
+
is_access_code_error: true;
|
|
46692
|
+
created_at?: string | undefined;
|
|
46693
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46694
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
46259
46695
|
} | {
|
|
46260
46696
|
message: string;
|
|
46261
46697
|
is_access_code_error: true;
|
|
@@ -46345,7 +46781,13 @@ interface Routes {
|
|
|
46345
46781
|
is_access_code_error: true;
|
|
46346
46782
|
created_at?: string | undefined;
|
|
46347
46783
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46348
|
-
error_code: '
|
|
46784
|
+
error_code: 'august_lock_temporarily_offline';
|
|
46785
|
+
} | {
|
|
46786
|
+
message: string;
|
|
46787
|
+
is_access_code_error: true;
|
|
46788
|
+
created_at?: string | undefined;
|
|
46789
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46790
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
46349
46791
|
} | {
|
|
46350
46792
|
message: string;
|
|
46351
46793
|
is_access_code_error: true;
|
|
@@ -46358,6 +46800,24 @@ interface Routes {
|
|
|
46358
46800
|
created_at?: string | undefined;
|
|
46359
46801
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46360
46802
|
error_code: 'hubitat_no_free_positions_available';
|
|
46803
|
+
} | {
|
|
46804
|
+
message: string;
|
|
46805
|
+
is_access_code_error: true;
|
|
46806
|
+
created_at?: string | undefined;
|
|
46807
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46808
|
+
error_code: 'wyze_duplicate_code_name';
|
|
46809
|
+
} | {
|
|
46810
|
+
message: string;
|
|
46811
|
+
is_access_code_error: true;
|
|
46812
|
+
created_at?: string | undefined;
|
|
46813
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46814
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
46815
|
+
} | {
|
|
46816
|
+
message: string;
|
|
46817
|
+
is_access_code_error: true;
|
|
46818
|
+
created_at?: string | undefined;
|
|
46819
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46820
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
46361
46821
|
} | {
|
|
46362
46822
|
message: string;
|
|
46363
46823
|
is_device_error: false;
|
|
@@ -46462,11 +46922,6 @@ interface Routes {
|
|
|
46462
46922
|
created_at?: string | undefined;
|
|
46463
46923
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46464
46924
|
warning_code: 'schlage_creation_outage';
|
|
46465
|
-
} | {
|
|
46466
|
-
message: string;
|
|
46467
|
-
created_at?: string | undefined;
|
|
46468
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46469
|
-
warning_code: 'salto_office_mode';
|
|
46470
46925
|
} | {
|
|
46471
46926
|
message: string;
|
|
46472
46927
|
created_at?: string | undefined;
|
|
@@ -46492,6 +46947,11 @@ interface Routes {
|
|
|
46492
46947
|
created_at?: string | undefined;
|
|
46493
46948
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46494
46949
|
warning_code: 'august_device_programming_delay';
|
|
46950
|
+
} | {
|
|
46951
|
+
message: string;
|
|
46952
|
+
created_at?: string | undefined;
|
|
46953
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46954
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
46495
46955
|
} | {
|
|
46496
46956
|
message: string;
|
|
46497
46957
|
created_at?: string | undefined;
|
|
@@ -46576,6 +47036,12 @@ interface Routes {
|
|
|
46576
47036
|
created_at?: string | undefined;
|
|
46577
47037
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46578
47038
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
47039
|
+
} | {
|
|
47040
|
+
message: string;
|
|
47041
|
+
is_access_code_error: true;
|
|
47042
|
+
created_at?: string | undefined;
|
|
47043
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47044
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
46579
47045
|
} | {
|
|
46580
47046
|
message: string;
|
|
46581
47047
|
is_access_code_error: true;
|
|
@@ -46665,7 +47131,13 @@ interface Routes {
|
|
|
46665
47131
|
is_access_code_error: true;
|
|
46666
47132
|
created_at?: string | undefined;
|
|
46667
47133
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46668
|
-
error_code: '
|
|
47134
|
+
error_code: 'august_lock_temporarily_offline';
|
|
47135
|
+
} | {
|
|
47136
|
+
message: string;
|
|
47137
|
+
is_access_code_error: true;
|
|
47138
|
+
created_at?: string | undefined;
|
|
47139
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47140
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
46669
47141
|
} | {
|
|
46670
47142
|
message: string;
|
|
46671
47143
|
is_access_code_error: true;
|
|
@@ -46678,6 +47150,24 @@ interface Routes {
|
|
|
46678
47150
|
created_at?: string | undefined;
|
|
46679
47151
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46680
47152
|
error_code: 'hubitat_no_free_positions_available';
|
|
47153
|
+
} | {
|
|
47154
|
+
message: string;
|
|
47155
|
+
is_access_code_error: true;
|
|
47156
|
+
created_at?: string | undefined;
|
|
47157
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47158
|
+
error_code: 'wyze_duplicate_code_name';
|
|
47159
|
+
} | {
|
|
47160
|
+
message: string;
|
|
47161
|
+
is_access_code_error: true;
|
|
47162
|
+
created_at?: string | undefined;
|
|
47163
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47164
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
47165
|
+
} | {
|
|
47166
|
+
message: string;
|
|
47167
|
+
is_access_code_error: true;
|
|
47168
|
+
created_at?: string | undefined;
|
|
47169
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47170
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
46681
47171
|
} | {
|
|
46682
47172
|
message: string;
|
|
46683
47173
|
is_device_error: false;
|
|
@@ -46782,11 +47272,6 @@ interface Routes {
|
|
|
46782
47272
|
created_at?: string | undefined;
|
|
46783
47273
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46784
47274
|
warning_code: 'schlage_creation_outage';
|
|
46785
|
-
} | {
|
|
46786
|
-
message: string;
|
|
46787
|
-
created_at?: string | undefined;
|
|
46788
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46789
|
-
warning_code: 'salto_office_mode';
|
|
46790
47275
|
} | {
|
|
46791
47276
|
message: string;
|
|
46792
47277
|
created_at?: string | undefined;
|
|
@@ -46812,6 +47297,11 @@ interface Routes {
|
|
|
46812
47297
|
created_at?: string | undefined;
|
|
46813
47298
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46814
47299
|
warning_code: 'august_device_programming_delay';
|
|
47300
|
+
} | {
|
|
47301
|
+
message: string;
|
|
47302
|
+
created_at?: string | undefined;
|
|
47303
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47304
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
46815
47305
|
} | {
|
|
46816
47306
|
message: string;
|
|
46817
47307
|
created_at?: string | undefined;
|
|
@@ -46884,6 +47374,12 @@ interface Routes {
|
|
|
46884
47374
|
created_at?: string | undefined;
|
|
46885
47375
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46886
47376
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
47377
|
+
} | {
|
|
47378
|
+
message: string;
|
|
47379
|
+
is_access_code_error: true;
|
|
47380
|
+
created_at?: string | undefined;
|
|
47381
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47382
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
46887
47383
|
} | {
|
|
46888
47384
|
message: string;
|
|
46889
47385
|
is_access_code_error: true;
|
|
@@ -46973,7 +47469,13 @@ interface Routes {
|
|
|
46973
47469
|
is_access_code_error: true;
|
|
46974
47470
|
created_at?: string | undefined;
|
|
46975
47471
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46976
|
-
error_code: '
|
|
47472
|
+
error_code: 'august_lock_temporarily_offline';
|
|
47473
|
+
} | {
|
|
47474
|
+
message: string;
|
|
47475
|
+
is_access_code_error: true;
|
|
47476
|
+
created_at?: string | undefined;
|
|
47477
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47478
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
46977
47479
|
} | {
|
|
46978
47480
|
message: string;
|
|
46979
47481
|
is_access_code_error: true;
|
|
@@ -46986,6 +47488,24 @@ interface Routes {
|
|
|
46986
47488
|
created_at?: string | undefined;
|
|
46987
47489
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46988
47490
|
error_code: 'hubitat_no_free_positions_available';
|
|
47491
|
+
} | {
|
|
47492
|
+
message: string;
|
|
47493
|
+
is_access_code_error: true;
|
|
47494
|
+
created_at?: string | undefined;
|
|
47495
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47496
|
+
error_code: 'wyze_duplicate_code_name';
|
|
47497
|
+
} | {
|
|
47498
|
+
message: string;
|
|
47499
|
+
is_access_code_error: true;
|
|
47500
|
+
created_at?: string | undefined;
|
|
47501
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47502
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
47503
|
+
} | {
|
|
47504
|
+
message: string;
|
|
47505
|
+
is_access_code_error: true;
|
|
47506
|
+
created_at?: string | undefined;
|
|
47507
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47508
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
46989
47509
|
} | {
|
|
46990
47510
|
message: string;
|
|
46991
47511
|
is_device_error: false;
|
|
@@ -47090,11 +47610,6 @@ interface Routes {
|
|
|
47090
47610
|
created_at?: string | undefined;
|
|
47091
47611
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47092
47612
|
warning_code: 'schlage_creation_outage';
|
|
47093
|
-
} | {
|
|
47094
|
-
message: string;
|
|
47095
|
-
created_at?: string | undefined;
|
|
47096
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47097
|
-
warning_code: 'salto_office_mode';
|
|
47098
47613
|
} | {
|
|
47099
47614
|
message: string;
|
|
47100
47615
|
created_at?: string | undefined;
|
|
@@ -47120,6 +47635,11 @@ interface Routes {
|
|
|
47120
47635
|
created_at?: string | undefined;
|
|
47121
47636
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47122
47637
|
warning_code: 'august_device_programming_delay';
|
|
47638
|
+
} | {
|
|
47639
|
+
message: string;
|
|
47640
|
+
created_at?: string | undefined;
|
|
47641
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47642
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
47123
47643
|
} | {
|
|
47124
47644
|
message: string;
|
|
47125
47645
|
created_at?: string | undefined;
|
|
@@ -47200,6 +47720,12 @@ interface Routes {
|
|
|
47200
47720
|
created_at?: string | undefined;
|
|
47201
47721
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47202
47722
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
47723
|
+
} | {
|
|
47724
|
+
message: string;
|
|
47725
|
+
is_access_code_error: true;
|
|
47726
|
+
created_at?: string | undefined;
|
|
47727
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47728
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
47203
47729
|
} | {
|
|
47204
47730
|
message: string;
|
|
47205
47731
|
is_access_code_error: true;
|
|
@@ -47289,7 +47815,13 @@ interface Routes {
|
|
|
47289
47815
|
is_access_code_error: true;
|
|
47290
47816
|
created_at?: string | undefined;
|
|
47291
47817
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47292
|
-
error_code: '
|
|
47818
|
+
error_code: 'august_lock_temporarily_offline';
|
|
47819
|
+
} | {
|
|
47820
|
+
message: string;
|
|
47821
|
+
is_access_code_error: true;
|
|
47822
|
+
created_at?: string | undefined;
|
|
47823
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47824
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
47293
47825
|
} | {
|
|
47294
47826
|
message: string;
|
|
47295
47827
|
is_access_code_error: true;
|
|
@@ -47302,6 +47834,24 @@ interface Routes {
|
|
|
47302
47834
|
created_at?: string | undefined;
|
|
47303
47835
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47304
47836
|
error_code: 'hubitat_no_free_positions_available';
|
|
47837
|
+
} | {
|
|
47838
|
+
message: string;
|
|
47839
|
+
is_access_code_error: true;
|
|
47840
|
+
created_at?: string | undefined;
|
|
47841
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47842
|
+
error_code: 'wyze_duplicate_code_name';
|
|
47843
|
+
} | {
|
|
47844
|
+
message: string;
|
|
47845
|
+
is_access_code_error: true;
|
|
47846
|
+
created_at?: string | undefined;
|
|
47847
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47848
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
47849
|
+
} | {
|
|
47850
|
+
message: string;
|
|
47851
|
+
is_access_code_error: true;
|
|
47852
|
+
created_at?: string | undefined;
|
|
47853
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47854
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
47305
47855
|
} | {
|
|
47306
47856
|
message: string;
|
|
47307
47857
|
is_device_error: false;
|
|
@@ -47406,11 +47956,6 @@ interface Routes {
|
|
|
47406
47956
|
created_at?: string | undefined;
|
|
47407
47957
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47408
47958
|
warning_code: 'schlage_creation_outage';
|
|
47409
|
-
} | {
|
|
47410
|
-
message: string;
|
|
47411
|
-
created_at?: string | undefined;
|
|
47412
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47413
|
-
warning_code: 'salto_office_mode';
|
|
47414
47959
|
} | {
|
|
47415
47960
|
message: string;
|
|
47416
47961
|
created_at?: string | undefined;
|
|
@@ -47436,6 +47981,11 @@ interface Routes {
|
|
|
47436
47981
|
created_at?: string | undefined;
|
|
47437
47982
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47438
47983
|
warning_code: 'august_device_programming_delay';
|
|
47984
|
+
} | {
|
|
47985
|
+
message: string;
|
|
47986
|
+
created_at?: string | undefined;
|
|
47987
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47988
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
47439
47989
|
} | {
|
|
47440
47990
|
message: string;
|
|
47441
47991
|
created_at?: string | undefined;
|
|
@@ -48407,6 +48957,12 @@ interface Routes {
|
|
|
48407
48957
|
created_at?: string | undefined;
|
|
48408
48958
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48409
48959
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
48960
|
+
} | {
|
|
48961
|
+
message: string;
|
|
48962
|
+
is_access_code_error: true;
|
|
48963
|
+
created_at?: string | undefined;
|
|
48964
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48965
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
48410
48966
|
} | {
|
|
48411
48967
|
message: string;
|
|
48412
48968
|
is_access_code_error: true;
|
|
@@ -48496,7 +49052,13 @@ interface Routes {
|
|
|
48496
49052
|
is_access_code_error: true;
|
|
48497
49053
|
created_at?: string | undefined;
|
|
48498
49054
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48499
|
-
error_code: '
|
|
49055
|
+
error_code: 'august_lock_temporarily_offline';
|
|
49056
|
+
} | {
|
|
49057
|
+
message: string;
|
|
49058
|
+
is_access_code_error: true;
|
|
49059
|
+
created_at?: string | undefined;
|
|
49060
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49061
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
48500
49062
|
} | {
|
|
48501
49063
|
message: string;
|
|
48502
49064
|
is_access_code_error: true;
|
|
@@ -48509,6 +49071,24 @@ interface Routes {
|
|
|
48509
49071
|
created_at?: string | undefined;
|
|
48510
49072
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48511
49073
|
error_code: 'hubitat_no_free_positions_available';
|
|
49074
|
+
} | {
|
|
49075
|
+
message: string;
|
|
49076
|
+
is_access_code_error: true;
|
|
49077
|
+
created_at?: string | undefined;
|
|
49078
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49079
|
+
error_code: 'wyze_duplicate_code_name';
|
|
49080
|
+
} | {
|
|
49081
|
+
message: string;
|
|
49082
|
+
is_access_code_error: true;
|
|
49083
|
+
created_at?: string | undefined;
|
|
49084
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49085
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
49086
|
+
} | {
|
|
49087
|
+
message: string;
|
|
49088
|
+
is_access_code_error: true;
|
|
49089
|
+
created_at?: string | undefined;
|
|
49090
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49091
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
48512
49092
|
} | {
|
|
48513
49093
|
message: string;
|
|
48514
49094
|
is_device_error: false;
|
|
@@ -48613,11 +49193,6 @@ interface Routes {
|
|
|
48613
49193
|
created_at?: string | undefined;
|
|
48614
49194
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48615
49195
|
warning_code: 'schlage_creation_outage';
|
|
48616
|
-
} | {
|
|
48617
|
-
message: string;
|
|
48618
|
-
created_at?: string | undefined;
|
|
48619
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48620
|
-
warning_code: 'salto_office_mode';
|
|
48621
49196
|
} | {
|
|
48622
49197
|
message: string;
|
|
48623
49198
|
created_at?: string | undefined;
|
|
@@ -48643,6 +49218,11 @@ interface Routes {
|
|
|
48643
49218
|
created_at?: string | undefined;
|
|
48644
49219
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48645
49220
|
warning_code: 'august_device_programming_delay';
|
|
49221
|
+
} | {
|
|
49222
|
+
message: string;
|
|
49223
|
+
created_at?: string | undefined;
|
|
49224
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49225
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
48646
49226
|
} | {
|
|
48647
49227
|
message: string;
|
|
48648
49228
|
created_at?: string | undefined;
|
|
@@ -48705,6 +49285,12 @@ interface Routes {
|
|
|
48705
49285
|
created_at?: string | undefined;
|
|
48706
49286
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48707
49287
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
49288
|
+
} | {
|
|
49289
|
+
message: string;
|
|
49290
|
+
is_access_code_error: true;
|
|
49291
|
+
created_at?: string | undefined;
|
|
49292
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49293
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
48708
49294
|
} | {
|
|
48709
49295
|
message: string;
|
|
48710
49296
|
is_access_code_error: true;
|
|
@@ -48794,7 +49380,13 @@ interface Routes {
|
|
|
48794
49380
|
is_access_code_error: true;
|
|
48795
49381
|
created_at?: string | undefined;
|
|
48796
49382
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48797
|
-
error_code: '
|
|
49383
|
+
error_code: 'august_lock_temporarily_offline';
|
|
49384
|
+
} | {
|
|
49385
|
+
message: string;
|
|
49386
|
+
is_access_code_error: true;
|
|
49387
|
+
created_at?: string | undefined;
|
|
49388
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49389
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
48798
49390
|
} | {
|
|
48799
49391
|
message: string;
|
|
48800
49392
|
is_access_code_error: true;
|
|
@@ -48807,6 +49399,24 @@ interface Routes {
|
|
|
48807
49399
|
created_at?: string | undefined;
|
|
48808
49400
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48809
49401
|
error_code: 'hubitat_no_free_positions_available';
|
|
49402
|
+
} | {
|
|
49403
|
+
message: string;
|
|
49404
|
+
is_access_code_error: true;
|
|
49405
|
+
created_at?: string | undefined;
|
|
49406
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49407
|
+
error_code: 'wyze_duplicate_code_name';
|
|
49408
|
+
} | {
|
|
49409
|
+
message: string;
|
|
49410
|
+
is_access_code_error: true;
|
|
49411
|
+
created_at?: string | undefined;
|
|
49412
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49413
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
49414
|
+
} | {
|
|
49415
|
+
message: string;
|
|
49416
|
+
is_access_code_error: true;
|
|
49417
|
+
created_at?: string | undefined;
|
|
49418
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49419
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
48810
49420
|
} | {
|
|
48811
49421
|
message: string;
|
|
48812
49422
|
is_device_error: false;
|
|
@@ -48911,11 +49521,6 @@ interface Routes {
|
|
|
48911
49521
|
created_at?: string | undefined;
|
|
48912
49522
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48913
49523
|
warning_code: 'schlage_creation_outage';
|
|
48914
|
-
} | {
|
|
48915
|
-
message: string;
|
|
48916
|
-
created_at?: string | undefined;
|
|
48917
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48918
|
-
warning_code: 'salto_office_mode';
|
|
48919
49524
|
} | {
|
|
48920
49525
|
message: string;
|
|
48921
49526
|
created_at?: string | undefined;
|
|
@@ -48941,6 +49546,11 @@ interface Routes {
|
|
|
48941
49546
|
created_at?: string | undefined;
|
|
48942
49547
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48943
49548
|
warning_code: 'august_device_programming_delay';
|
|
49549
|
+
} | {
|
|
49550
|
+
message: string;
|
|
49551
|
+
created_at?: string | undefined;
|
|
49552
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49553
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
48944
49554
|
} | {
|
|
48945
49555
|
message: string;
|
|
48946
49556
|
created_at?: string | undefined;
|