@seamapi/types 1.363.1 → 1.365.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 +855 -45
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2125 -542
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- 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-access-group.js +1 -2
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +1 -2
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +2 -2
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/models/acs/acs-user.js +1 -2
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +1 -2
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/locations/index.d.ts +1 -0
- package/lib/seam/connect/models/locations/index.js +2 -0
- package/lib/seam/connect/models/locations/index.js.map +1 -0
- package/lib/seam/connect/models/locations/location.d.ts +49 -0
- package/lib/seam/connect/models/locations/location.js +25 -0
- package/lib/seam/connect/models/locations/location.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +803 -0
- package/lib/seam/connect/openapi.js +813 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +494 -54
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +80 -19
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -2
- package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-user.ts +1 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -2
- package/src/lib/seam/connect/models/devices/device.ts +1 -2
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/models/locations/index.ts +1 -0
- package/src/lib/seam/connect/models/locations/location.ts +30 -0
- package/src/lib/seam/connect/openapi.ts +838 -32
- package/src/lib/seam/connect/route-types.ts +560 -63
|
@@ -35,6 +35,22 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
35
35
|
message: z.ZodString;
|
|
36
36
|
is_access_code_error: z.ZodLiteral<true>;
|
|
37
37
|
created_at: z.ZodOptional<z.ZodString>;
|
|
38
|
+
}, {
|
|
39
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
40
|
+
}>, "strip", z.ZodTypeAny, {
|
|
41
|
+
message: string;
|
|
42
|
+
error_code: "smartthings_no_free_slots_available";
|
|
43
|
+
is_access_code_error: true;
|
|
44
|
+
created_at?: string | undefined;
|
|
45
|
+
}, {
|
|
46
|
+
message: string;
|
|
47
|
+
error_code: "smartthings_no_free_slots_available";
|
|
48
|
+
is_access_code_error: true;
|
|
49
|
+
created_at?: string | undefined;
|
|
50
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
51
|
+
message: z.ZodString;
|
|
52
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
53
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
38
54
|
}, {
|
|
39
55
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
40
56
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -260,15 +276,31 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
260
276
|
is_access_code_error: z.ZodLiteral<true>;
|
|
261
277
|
created_at: z.ZodOptional<z.ZodString>;
|
|
262
278
|
}, {
|
|
263
|
-
error_code: z.ZodLiteral<"
|
|
279
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
280
|
+
}>, "strip", z.ZodTypeAny, {
|
|
281
|
+
message: string;
|
|
282
|
+
error_code: "august_lock_temporarily_offline";
|
|
283
|
+
is_access_code_error: true;
|
|
284
|
+
created_at?: string | undefined;
|
|
285
|
+
}, {
|
|
286
|
+
message: string;
|
|
287
|
+
error_code: "august_lock_temporarily_offline";
|
|
288
|
+
is_access_code_error: true;
|
|
289
|
+
created_at?: string | undefined;
|
|
290
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
291
|
+
message: z.ZodString;
|
|
292
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
293
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
294
|
+
}, {
|
|
295
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
264
296
|
}>, "strip", z.ZodTypeAny, {
|
|
265
297
|
message: string;
|
|
266
|
-
error_code: "
|
|
298
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
267
299
|
is_access_code_error: true;
|
|
268
300
|
created_at?: string | undefined;
|
|
269
301
|
}, {
|
|
270
302
|
message: string;
|
|
271
|
-
error_code: "
|
|
303
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
272
304
|
is_access_code_error: true;
|
|
273
305
|
created_at?: string | undefined;
|
|
274
306
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -303,10 +335,58 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
303
335
|
error_code: "hubitat_no_free_positions_available";
|
|
304
336
|
is_access_code_error: true;
|
|
305
337
|
created_at?: string | undefined;
|
|
338
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
339
|
+
message: z.ZodString;
|
|
340
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
341
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
342
|
+
}, {
|
|
343
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
344
|
+
}>, "strip", z.ZodTypeAny, {
|
|
345
|
+
message: string;
|
|
346
|
+
error_code: "wyze_duplicate_code_name";
|
|
347
|
+
is_access_code_error: true;
|
|
348
|
+
created_at?: string | undefined;
|
|
349
|
+
}, {
|
|
350
|
+
message: string;
|
|
351
|
+
error_code: "wyze_duplicate_code_name";
|
|
352
|
+
is_access_code_error: true;
|
|
353
|
+
created_at?: string | undefined;
|
|
354
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
355
|
+
message: z.ZodString;
|
|
356
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
357
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
358
|
+
}, {
|
|
359
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
360
|
+
}>, "strip", z.ZodTypeAny, {
|
|
361
|
+
message: string;
|
|
362
|
+
error_code: "wyze_potential_duplicate_code";
|
|
363
|
+
is_access_code_error: true;
|
|
364
|
+
created_at?: string | undefined;
|
|
365
|
+
}, {
|
|
366
|
+
message: string;
|
|
367
|
+
error_code: "wyze_potential_duplicate_code";
|
|
368
|
+
is_access_code_error: true;
|
|
369
|
+
created_at?: string | undefined;
|
|
370
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
371
|
+
message: z.ZodString;
|
|
372
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
373
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
374
|
+
}, {
|
|
375
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
376
|
+
}>, "strip", z.ZodTypeAny, {
|
|
377
|
+
message: string;
|
|
378
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
379
|
+
is_access_code_error: true;
|
|
380
|
+
created_at?: string | undefined;
|
|
381
|
+
}, {
|
|
382
|
+
message: string;
|
|
383
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
384
|
+
is_access_code_error: true;
|
|
385
|
+
created_at?: string | undefined;
|
|
306
386
|
}>]>;
|
|
307
387
|
export type AccessCodeError = z.infer<typeof access_code_error>;
|
|
308
388
|
declare const access_code_error_map: z.ZodObject<{
|
|
309
|
-
|
|
389
|
+
smartthings_failed_to_set_access_code: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
310
390
|
message: z.ZodString;
|
|
311
391
|
is_access_code_error: z.ZodLiteral<true>;
|
|
312
392
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -340,6 +420,23 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
340
420
|
is_access_code_error: true;
|
|
341
421
|
created_at?: string | undefined;
|
|
342
422
|
}>>>;
|
|
423
|
+
smartthings_no_free_slots_available: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
424
|
+
message: z.ZodString;
|
|
425
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
426
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
427
|
+
}, {
|
|
428
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
429
|
+
}>, "strip", z.ZodTypeAny, {
|
|
430
|
+
message: string;
|
|
431
|
+
error_code: "smartthings_no_free_slots_available";
|
|
432
|
+
is_access_code_error: true;
|
|
433
|
+
created_at?: string | undefined;
|
|
434
|
+
}, {
|
|
435
|
+
message: string;
|
|
436
|
+
error_code: "smartthings_no_free_slots_available";
|
|
437
|
+
is_access_code_error: true;
|
|
438
|
+
created_at?: string | undefined;
|
|
439
|
+
}>>>;
|
|
343
440
|
failed_to_set_on_device: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
344
441
|
message: z.ZodString;
|
|
345
442
|
is_access_code_error: z.ZodLiteral<true>;
|
|
@@ -527,7 +624,7 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
527
624
|
is_access_code_error: true;
|
|
528
625
|
created_at?: string | undefined;
|
|
529
626
|
}>>>;
|
|
530
|
-
|
|
627
|
+
august_device_programming_delay: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
531
628
|
message: z.ZodString;
|
|
532
629
|
is_access_code_error: z.ZodLiteral<true>;
|
|
533
630
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -544,6 +641,23 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
544
641
|
is_access_code_error: true;
|
|
545
642
|
created_at?: string | undefined;
|
|
546
643
|
}>>>;
|
|
644
|
+
august_lock_temporarily_offline: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
645
|
+
message: z.ZodString;
|
|
646
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
647
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
648
|
+
}, {
|
|
649
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
650
|
+
}>, "strip", z.ZodTypeAny, {
|
|
651
|
+
message: string;
|
|
652
|
+
error_code: "august_lock_temporarily_offline";
|
|
653
|
+
is_access_code_error: true;
|
|
654
|
+
created_at?: string | undefined;
|
|
655
|
+
}, {
|
|
656
|
+
message: string;
|
|
657
|
+
error_code: "august_lock_temporarily_offline";
|
|
658
|
+
is_access_code_error: true;
|
|
659
|
+
created_at?: string | undefined;
|
|
660
|
+
}>>>;
|
|
547
661
|
august_device_slots_full: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
548
662
|
message: z.ZodString;
|
|
549
663
|
is_access_code_error: z.ZodLiteral<true>;
|
|
@@ -578,20 +692,20 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
578
692
|
is_access_code_error: true;
|
|
579
693
|
created_at?: string | undefined;
|
|
580
694
|
}>>>;
|
|
581
|
-
|
|
695
|
+
salto_ks_user_not_subscribed: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
582
696
|
message: z.ZodString;
|
|
583
697
|
is_access_code_error: z.ZodLiteral<true>;
|
|
584
698
|
created_at: z.ZodOptional<z.ZodString>;
|
|
585
699
|
}, {
|
|
586
|
-
error_code: z.ZodLiteral<"
|
|
700
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
587
701
|
}>, "strip", z.ZodTypeAny, {
|
|
588
702
|
message: string;
|
|
589
|
-
error_code: "
|
|
703
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
590
704
|
is_access_code_error: true;
|
|
591
705
|
created_at?: string | undefined;
|
|
592
706
|
}, {
|
|
593
707
|
message: string;
|
|
594
|
-
error_code: "
|
|
708
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
595
709
|
is_access_code_error: true;
|
|
596
710
|
created_at?: string | undefined;
|
|
597
711
|
}>>>;
|
|
@@ -629,7 +743,64 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
629
743
|
is_access_code_error: true;
|
|
630
744
|
created_at?: string | undefined;
|
|
631
745
|
}>>>;
|
|
746
|
+
wyze_duplicate_code_name: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
747
|
+
message: z.ZodString;
|
|
748
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
749
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
750
|
+
}, {
|
|
751
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
752
|
+
}>, "strip", z.ZodTypeAny, {
|
|
753
|
+
message: string;
|
|
754
|
+
error_code: "wyze_duplicate_code_name";
|
|
755
|
+
is_access_code_error: true;
|
|
756
|
+
created_at?: string | undefined;
|
|
757
|
+
}, {
|
|
758
|
+
message: string;
|
|
759
|
+
error_code: "wyze_duplicate_code_name";
|
|
760
|
+
is_access_code_error: true;
|
|
761
|
+
created_at?: string | undefined;
|
|
762
|
+
}>>>;
|
|
763
|
+
wyze_potential_duplicate_code: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
764
|
+
message: z.ZodString;
|
|
765
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
766
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
767
|
+
}, {
|
|
768
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
769
|
+
}>, "strip", z.ZodTypeAny, {
|
|
770
|
+
message: string;
|
|
771
|
+
error_code: "wyze_potential_duplicate_code";
|
|
772
|
+
is_access_code_error: true;
|
|
773
|
+
created_at?: string | undefined;
|
|
774
|
+
}, {
|
|
775
|
+
message: string;
|
|
776
|
+
error_code: "wyze_potential_duplicate_code";
|
|
777
|
+
is_access_code_error: true;
|
|
778
|
+
created_at?: string | undefined;
|
|
779
|
+
}>>>;
|
|
780
|
+
dormakaba_oracode_no_valid_user_level: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
781
|
+
message: z.ZodString;
|
|
782
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
783
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
784
|
+
}, {
|
|
785
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
786
|
+
}>, "strip", z.ZodTypeAny, {
|
|
787
|
+
message: string;
|
|
788
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
789
|
+
is_access_code_error: true;
|
|
790
|
+
created_at?: string | undefined;
|
|
791
|
+
}, {
|
|
792
|
+
message: string;
|
|
793
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
794
|
+
is_access_code_error: true;
|
|
795
|
+
created_at?: string | undefined;
|
|
796
|
+
}>>>;
|
|
632
797
|
}, "strip", z.ZodTypeAny, {
|
|
798
|
+
smartthings_failed_to_set_access_code?: {
|
|
799
|
+
message: string;
|
|
800
|
+
error_code: "smartthings_failed_to_set_access_code";
|
|
801
|
+
is_access_code_error: true;
|
|
802
|
+
created_at?: string | undefined;
|
|
803
|
+
} | null | undefined;
|
|
633
804
|
smartthings_failed_to_set_after_multiple_retries?: {
|
|
634
805
|
message: string;
|
|
635
806
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
@@ -696,21 +867,33 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
696
867
|
is_access_code_error: true;
|
|
697
868
|
created_at?: string | undefined;
|
|
698
869
|
} | null | undefined;
|
|
870
|
+
august_device_programming_delay?: {
|
|
871
|
+
message: string;
|
|
872
|
+
error_code: "august_device_programming_delay";
|
|
873
|
+
is_access_code_error: true;
|
|
874
|
+
created_at?: string | undefined;
|
|
875
|
+
} | null | undefined;
|
|
699
876
|
august_device_slots_full?: {
|
|
700
877
|
message: string;
|
|
701
878
|
error_code: "august_device_slots_full";
|
|
702
879
|
is_access_code_error: true;
|
|
703
880
|
created_at?: string | undefined;
|
|
704
881
|
} | null | undefined;
|
|
882
|
+
august_lock_temporarily_offline?: {
|
|
883
|
+
message: string;
|
|
884
|
+
error_code: "august_lock_temporarily_offline";
|
|
885
|
+
is_access_code_error: true;
|
|
886
|
+
created_at?: string | undefined;
|
|
887
|
+
} | null | undefined;
|
|
705
888
|
august_lock_missing_keypad?: {
|
|
706
889
|
message: string;
|
|
707
890
|
error_code: "august_lock_missing_keypad";
|
|
708
891
|
is_access_code_error: true;
|
|
709
892
|
created_at?: string | undefined;
|
|
710
893
|
} | null | undefined;
|
|
711
|
-
|
|
894
|
+
salto_ks_user_not_subscribed?: {
|
|
712
895
|
message: string;
|
|
713
|
-
error_code: "
|
|
896
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
714
897
|
is_access_code_error: true;
|
|
715
898
|
created_at?: string | undefined;
|
|
716
899
|
} | null | undefined;
|
|
@@ -726,9 +909,27 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
726
909
|
is_access_code_error: true;
|
|
727
910
|
created_at?: string | undefined;
|
|
728
911
|
} | null | undefined;
|
|
729
|
-
|
|
912
|
+
smartthings_no_free_slots_available?: {
|
|
730
913
|
message: string;
|
|
731
|
-
error_code: "
|
|
914
|
+
error_code: "smartthings_no_free_slots_available";
|
|
915
|
+
is_access_code_error: true;
|
|
916
|
+
created_at?: string | undefined;
|
|
917
|
+
} | null | undefined;
|
|
918
|
+
wyze_duplicate_code_name?: {
|
|
919
|
+
message: string;
|
|
920
|
+
error_code: "wyze_duplicate_code_name";
|
|
921
|
+
is_access_code_error: true;
|
|
922
|
+
created_at?: string | undefined;
|
|
923
|
+
} | null | undefined;
|
|
924
|
+
wyze_potential_duplicate_code?: {
|
|
925
|
+
message: string;
|
|
926
|
+
error_code: "wyze_potential_duplicate_code";
|
|
927
|
+
is_access_code_error: true;
|
|
928
|
+
created_at?: string | undefined;
|
|
929
|
+
} | null | undefined;
|
|
930
|
+
dormakaba_oracode_no_valid_user_level?: {
|
|
931
|
+
message: string;
|
|
932
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
732
933
|
is_access_code_error: true;
|
|
733
934
|
created_at?: string | undefined;
|
|
734
935
|
} | null | undefined;
|
|
@@ -738,13 +939,13 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
738
939
|
is_access_code_error: true;
|
|
739
940
|
created_at?: string | undefined;
|
|
740
941
|
} | null | undefined;
|
|
741
|
-
|
|
942
|
+
}, {
|
|
943
|
+
smartthings_failed_to_set_access_code?: {
|
|
742
944
|
message: string;
|
|
743
|
-
error_code: "
|
|
945
|
+
error_code: "smartthings_failed_to_set_access_code";
|
|
744
946
|
is_access_code_error: true;
|
|
745
947
|
created_at?: string | undefined;
|
|
746
948
|
} | null | undefined;
|
|
747
|
-
}, {
|
|
748
949
|
smartthings_failed_to_set_after_multiple_retries?: {
|
|
749
950
|
message: string;
|
|
750
951
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
@@ -811,21 +1012,33 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
811
1012
|
is_access_code_error: true;
|
|
812
1013
|
created_at?: string | undefined;
|
|
813
1014
|
} | null | undefined;
|
|
1015
|
+
august_device_programming_delay?: {
|
|
1016
|
+
message: string;
|
|
1017
|
+
error_code: "august_device_programming_delay";
|
|
1018
|
+
is_access_code_error: true;
|
|
1019
|
+
created_at?: string | undefined;
|
|
1020
|
+
} | null | undefined;
|
|
814
1021
|
august_device_slots_full?: {
|
|
815
1022
|
message: string;
|
|
816
1023
|
error_code: "august_device_slots_full";
|
|
817
1024
|
is_access_code_error: true;
|
|
818
1025
|
created_at?: string | undefined;
|
|
819
1026
|
} | null | undefined;
|
|
1027
|
+
august_lock_temporarily_offline?: {
|
|
1028
|
+
message: string;
|
|
1029
|
+
error_code: "august_lock_temporarily_offline";
|
|
1030
|
+
is_access_code_error: true;
|
|
1031
|
+
created_at?: string | undefined;
|
|
1032
|
+
} | null | undefined;
|
|
820
1033
|
august_lock_missing_keypad?: {
|
|
821
1034
|
message: string;
|
|
822
1035
|
error_code: "august_lock_missing_keypad";
|
|
823
1036
|
is_access_code_error: true;
|
|
824
1037
|
created_at?: string | undefined;
|
|
825
1038
|
} | null | undefined;
|
|
826
|
-
|
|
1039
|
+
salto_ks_user_not_subscribed?: {
|
|
827
1040
|
message: string;
|
|
828
|
-
error_code: "
|
|
1041
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
829
1042
|
is_access_code_error: true;
|
|
830
1043
|
created_at?: string | undefined;
|
|
831
1044
|
} | null | undefined;
|
|
@@ -841,21 +1054,33 @@ declare const access_code_error_map: z.ZodObject<{
|
|
|
841
1054
|
is_access_code_error: true;
|
|
842
1055
|
created_at?: string | undefined;
|
|
843
1056
|
} | null | undefined;
|
|
844
|
-
|
|
1057
|
+
smartthings_no_free_slots_available?: {
|
|
845
1058
|
message: string;
|
|
846
|
-
error_code: "
|
|
1059
|
+
error_code: "smartthings_no_free_slots_available";
|
|
847
1060
|
is_access_code_error: true;
|
|
848
1061
|
created_at?: string | undefined;
|
|
849
1062
|
} | null | undefined;
|
|
850
|
-
|
|
1063
|
+
wyze_duplicate_code_name?: {
|
|
851
1064
|
message: string;
|
|
852
|
-
error_code: "
|
|
1065
|
+
error_code: "wyze_duplicate_code_name";
|
|
853
1066
|
is_access_code_error: true;
|
|
854
1067
|
created_at?: string | undefined;
|
|
855
1068
|
} | null | undefined;
|
|
856
|
-
|
|
1069
|
+
wyze_potential_duplicate_code?: {
|
|
857
1070
|
message: string;
|
|
858
|
-
error_code: "
|
|
1071
|
+
error_code: "wyze_potential_duplicate_code";
|
|
1072
|
+
is_access_code_error: true;
|
|
1073
|
+
created_at?: string | undefined;
|
|
1074
|
+
} | null | undefined;
|
|
1075
|
+
dormakaba_oracode_no_valid_user_level?: {
|
|
1076
|
+
message: string;
|
|
1077
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1078
|
+
is_access_code_error: true;
|
|
1079
|
+
created_at?: string | undefined;
|
|
1080
|
+
} | null | undefined;
|
|
1081
|
+
code_modified_external_to_seam_error?: {
|
|
1082
|
+
message: string;
|
|
1083
|
+
error_code: "code_modified_external_to_seam";
|
|
859
1084
|
is_access_code_error: true;
|
|
860
1085
|
created_at?: string | undefined;
|
|
861
1086
|
} | null | undefined;
|
|
@@ -903,19 +1128,6 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
903
1128
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
904
1129
|
message: z.ZodString;
|
|
905
1130
|
created_at: z.ZodOptional<z.ZodString>;
|
|
906
|
-
}, {
|
|
907
|
-
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
908
|
-
}>, "strip", z.ZodTypeAny, {
|
|
909
|
-
message: string;
|
|
910
|
-
warning_code: "salto_office_mode";
|
|
911
|
-
created_at?: string | undefined;
|
|
912
|
-
}, {
|
|
913
|
-
message: string;
|
|
914
|
-
warning_code: "salto_office_mode";
|
|
915
|
-
created_at?: string | undefined;
|
|
916
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
917
|
-
message: z.ZodString;
|
|
918
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
919
1131
|
}, {
|
|
920
1132
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
921
1133
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -981,6 +1193,19 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
981
1193
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
982
1194
|
message: z.ZodString;
|
|
983
1195
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
}, {
|
|
1197
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
1198
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1199
|
+
message: string;
|
|
1200
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1201
|
+
created_at?: string | undefined;
|
|
1202
|
+
}, {
|
|
1203
|
+
message: string;
|
|
1204
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1205
|
+
created_at?: string | undefined;
|
|
1206
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1207
|
+
message: z.ZodString;
|
|
1208
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
984
1209
|
}, {
|
|
985
1210
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
986
1211
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1020,7 +1245,7 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
1020
1245
|
}>]>;
|
|
1021
1246
|
export type AccessCodeWarning = z.infer<typeof access_code_warning>;
|
|
1022
1247
|
declare const access_code_warning_map: z.ZodObject<{
|
|
1023
|
-
|
|
1248
|
+
smartthings_failed_to_set_access_code: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1024
1249
|
message: z.ZodString;
|
|
1025
1250
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1026
1251
|
}, {
|
|
@@ -1062,20 +1287,6 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1062
1287
|
warning_code: "schlage_creation_outage";
|
|
1063
1288
|
created_at?: string | undefined;
|
|
1064
1289
|
}>>>;
|
|
1065
|
-
salto_office_mode: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1066
|
-
message: z.ZodString;
|
|
1067
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
1068
|
-
}, {
|
|
1069
|
-
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
1070
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1071
|
-
message: string;
|
|
1072
|
-
warning_code: "salto_office_mode";
|
|
1073
|
-
created_at?: string | undefined;
|
|
1074
|
-
}, {
|
|
1075
|
-
message: string;
|
|
1076
|
-
warning_code: "salto_office_mode";
|
|
1077
|
-
created_at?: string | undefined;
|
|
1078
|
-
}>>>;
|
|
1079
1290
|
code_modified_external_to_seam_warning: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1080
1291
|
message: z.ZodString;
|
|
1081
1292
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1132,7 +1343,7 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1132
1343
|
warning_code: "third_party_integration_detected";
|
|
1133
1344
|
created_at?: string | undefined;
|
|
1134
1345
|
}>>>;
|
|
1135
|
-
|
|
1346
|
+
august_device_programming_delay: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1136
1347
|
message: z.ZodString;
|
|
1137
1348
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1138
1349
|
}, {
|
|
@@ -1146,6 +1357,20 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1146
1357
|
warning_code: "august_device_programming_delay";
|
|
1147
1358
|
created_at?: string | undefined;
|
|
1148
1359
|
}>>>;
|
|
1360
|
+
august_lock_temporarily_offline: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1361
|
+
message: z.ZodString;
|
|
1362
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1363
|
+
}, {
|
|
1364
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
1365
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1366
|
+
message: string;
|
|
1367
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1368
|
+
created_at?: string | undefined;
|
|
1369
|
+
}, {
|
|
1370
|
+
message: string;
|
|
1371
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1372
|
+
created_at?: string | undefined;
|
|
1373
|
+
}>>>;
|
|
1149
1374
|
igloo_algopin_must_be_used_within_24_hours: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1150
1375
|
message: z.ZodString;
|
|
1151
1376
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1194,6 +1419,21 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1194
1419
|
warning_code: "third_party_integration_detected";
|
|
1195
1420
|
created_at?: string | undefined;
|
|
1196
1421
|
} | null | undefined;
|
|
1422
|
+
smartthings_failed_to_set_access_code?: {
|
|
1423
|
+
message: string;
|
|
1424
|
+
warning_code: "smartthings_failed_to_set_access_code";
|
|
1425
|
+
created_at?: string | undefined;
|
|
1426
|
+
} | null | undefined;
|
|
1427
|
+
august_device_programming_delay?: {
|
|
1428
|
+
message: string;
|
|
1429
|
+
warning_code: "august_device_programming_delay";
|
|
1430
|
+
created_at?: string | undefined;
|
|
1431
|
+
} | null | undefined;
|
|
1432
|
+
august_lock_temporarily_offline?: {
|
|
1433
|
+
message: string;
|
|
1434
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1435
|
+
created_at?: string | undefined;
|
|
1436
|
+
} | null | undefined;
|
|
1197
1437
|
schlage_detected_duplicate?: {
|
|
1198
1438
|
message: string;
|
|
1199
1439
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -1204,11 +1444,6 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1204
1444
|
warning_code: "schlage_creation_outage";
|
|
1205
1445
|
created_at?: string | undefined;
|
|
1206
1446
|
} | null | undefined;
|
|
1207
|
-
salto_office_mode?: {
|
|
1208
|
-
message: string;
|
|
1209
|
-
warning_code: "salto_office_mode";
|
|
1210
|
-
created_at?: string | undefined;
|
|
1211
|
-
} | null | undefined;
|
|
1212
1447
|
delay_in_setting_on_device?: {
|
|
1213
1448
|
message: string;
|
|
1214
1449
|
warning_code: "delay_in_setting_on_device";
|
|
@@ -1229,21 +1464,11 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1229
1464
|
warning_code: "management_transferred";
|
|
1230
1465
|
created_at?: string | undefined;
|
|
1231
1466
|
} | null | undefined;
|
|
1232
|
-
smartthings_failed_to_set_access_code_warning?: {
|
|
1233
|
-
message: string;
|
|
1234
|
-
warning_code: "smartthings_failed_to_set_access_code";
|
|
1235
|
-
created_at?: string | undefined;
|
|
1236
|
-
} | null | undefined;
|
|
1237
1467
|
code_modified_external_to_seam_warning?: {
|
|
1238
1468
|
message: string;
|
|
1239
1469
|
warning_code: "code_modified_external_to_seam";
|
|
1240
1470
|
created_at?: string | undefined;
|
|
1241
1471
|
} | null | undefined;
|
|
1242
|
-
august_device_programming_delay_warning?: {
|
|
1243
|
-
message: string;
|
|
1244
|
-
warning_code: "august_device_programming_delay";
|
|
1245
|
-
created_at?: string | undefined;
|
|
1246
|
-
} | null | undefined;
|
|
1247
1472
|
kwikset_unable_to_confirm_code_warning?: {
|
|
1248
1473
|
message: string;
|
|
1249
1474
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
@@ -1255,6 +1480,21 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1255
1480
|
warning_code: "third_party_integration_detected";
|
|
1256
1481
|
created_at?: string | undefined;
|
|
1257
1482
|
} | null | undefined;
|
|
1483
|
+
smartthings_failed_to_set_access_code?: {
|
|
1484
|
+
message: string;
|
|
1485
|
+
warning_code: "smartthings_failed_to_set_access_code";
|
|
1486
|
+
created_at?: string | undefined;
|
|
1487
|
+
} | null | undefined;
|
|
1488
|
+
august_device_programming_delay?: {
|
|
1489
|
+
message: string;
|
|
1490
|
+
warning_code: "august_device_programming_delay";
|
|
1491
|
+
created_at?: string | undefined;
|
|
1492
|
+
} | null | undefined;
|
|
1493
|
+
august_lock_temporarily_offline?: {
|
|
1494
|
+
message: string;
|
|
1495
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1496
|
+
created_at?: string | undefined;
|
|
1497
|
+
} | null | undefined;
|
|
1258
1498
|
schlage_detected_duplicate?: {
|
|
1259
1499
|
message: string;
|
|
1260
1500
|
warning_code: "schlage_detected_duplicate";
|
|
@@ -1265,11 +1505,6 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1265
1505
|
warning_code: "schlage_creation_outage";
|
|
1266
1506
|
created_at?: string | undefined;
|
|
1267
1507
|
} | null | undefined;
|
|
1268
|
-
salto_office_mode?: {
|
|
1269
|
-
message: string;
|
|
1270
|
-
warning_code: "salto_office_mode";
|
|
1271
|
-
created_at?: string | undefined;
|
|
1272
|
-
} | null | undefined;
|
|
1273
1508
|
delay_in_setting_on_device?: {
|
|
1274
1509
|
message: string;
|
|
1275
1510
|
warning_code: "delay_in_setting_on_device";
|
|
@@ -1290,21 +1525,11 @@ declare const access_code_warning_map: z.ZodObject<{
|
|
|
1290
1525
|
warning_code: "management_transferred";
|
|
1291
1526
|
created_at?: string | undefined;
|
|
1292
1527
|
} | null | undefined;
|
|
1293
|
-
smartthings_failed_to_set_access_code_warning?: {
|
|
1294
|
-
message: string;
|
|
1295
|
-
warning_code: "smartthings_failed_to_set_access_code";
|
|
1296
|
-
created_at?: string | undefined;
|
|
1297
|
-
} | null | undefined;
|
|
1298
1528
|
code_modified_external_to_seam_warning?: {
|
|
1299
1529
|
message: string;
|
|
1300
1530
|
warning_code: "code_modified_external_to_seam";
|
|
1301
1531
|
created_at?: string | undefined;
|
|
1302
1532
|
} | null | undefined;
|
|
1303
|
-
august_device_programming_delay_warning?: {
|
|
1304
|
-
message: string;
|
|
1305
|
-
warning_code: "august_device_programming_delay";
|
|
1306
|
-
created_at?: string | undefined;
|
|
1307
|
-
} | null | undefined;
|
|
1308
1533
|
kwikset_unable_to_confirm_code_warning?: {
|
|
1309
1534
|
message: string;
|
|
1310
1535
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
@@ -1358,6 +1583,22 @@ export declare const access_code: z.ZodObject<{
|
|
|
1358
1583
|
message: z.ZodString;
|
|
1359
1584
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1360
1585
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1586
|
+
}, {
|
|
1587
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
1588
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1589
|
+
message: string;
|
|
1590
|
+
error_code: "smartthings_no_free_slots_available";
|
|
1591
|
+
is_access_code_error: true;
|
|
1592
|
+
created_at?: string | undefined;
|
|
1593
|
+
}, {
|
|
1594
|
+
message: string;
|
|
1595
|
+
error_code: "smartthings_no_free_slots_available";
|
|
1596
|
+
is_access_code_error: true;
|
|
1597
|
+
created_at?: string | undefined;
|
|
1598
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1599
|
+
message: z.ZodString;
|
|
1600
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1601
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1361
1602
|
}, {
|
|
1362
1603
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
1363
1604
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1583,15 +1824,31 @@ export declare const access_code: z.ZodObject<{
|
|
|
1583
1824
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1584
1825
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1585
1826
|
}, {
|
|
1586
|
-
error_code: z.ZodLiteral<"
|
|
1827
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
1587
1828
|
}>, "strip", z.ZodTypeAny, {
|
|
1588
1829
|
message: string;
|
|
1589
|
-
error_code: "
|
|
1830
|
+
error_code: "august_lock_temporarily_offline";
|
|
1590
1831
|
is_access_code_error: true;
|
|
1591
1832
|
created_at?: string | undefined;
|
|
1592
1833
|
}, {
|
|
1593
1834
|
message: string;
|
|
1594
|
-
error_code: "
|
|
1835
|
+
error_code: "august_lock_temporarily_offline";
|
|
1836
|
+
is_access_code_error: true;
|
|
1837
|
+
created_at?: string | undefined;
|
|
1838
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1839
|
+
message: z.ZodString;
|
|
1840
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1841
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1842
|
+
}, {
|
|
1843
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
1844
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1845
|
+
message: string;
|
|
1846
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
1847
|
+
is_access_code_error: true;
|
|
1848
|
+
created_at?: string | undefined;
|
|
1849
|
+
}, {
|
|
1850
|
+
message: string;
|
|
1851
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
1595
1852
|
is_access_code_error: true;
|
|
1596
1853
|
created_at?: string | undefined;
|
|
1597
1854
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1626,6 +1883,54 @@ export declare const access_code: z.ZodObject<{
|
|
|
1626
1883
|
error_code: "hubitat_no_free_positions_available";
|
|
1627
1884
|
is_access_code_error: true;
|
|
1628
1885
|
created_at?: string | undefined;
|
|
1886
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1887
|
+
message: z.ZodString;
|
|
1888
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1889
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1890
|
+
}, {
|
|
1891
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
1892
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1893
|
+
message: string;
|
|
1894
|
+
error_code: "wyze_duplicate_code_name";
|
|
1895
|
+
is_access_code_error: true;
|
|
1896
|
+
created_at?: string | undefined;
|
|
1897
|
+
}, {
|
|
1898
|
+
message: string;
|
|
1899
|
+
error_code: "wyze_duplicate_code_name";
|
|
1900
|
+
is_access_code_error: true;
|
|
1901
|
+
created_at?: string | undefined;
|
|
1902
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1903
|
+
message: z.ZodString;
|
|
1904
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1905
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1906
|
+
}, {
|
|
1907
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
1908
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1909
|
+
message: string;
|
|
1910
|
+
error_code: "wyze_potential_duplicate_code";
|
|
1911
|
+
is_access_code_error: true;
|
|
1912
|
+
created_at?: string | undefined;
|
|
1913
|
+
}, {
|
|
1914
|
+
message: string;
|
|
1915
|
+
error_code: "wyze_potential_duplicate_code";
|
|
1916
|
+
is_access_code_error: true;
|
|
1917
|
+
created_at?: string | undefined;
|
|
1918
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1919
|
+
message: z.ZodString;
|
|
1920
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1921
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1922
|
+
}, {
|
|
1923
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
1924
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1925
|
+
message: string;
|
|
1926
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1927
|
+
is_access_code_error: true;
|
|
1928
|
+
created_at?: string | undefined;
|
|
1929
|
+
}, {
|
|
1930
|
+
message: string;
|
|
1931
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1932
|
+
is_access_code_error: true;
|
|
1933
|
+
created_at?: string | undefined;
|
|
1629
1934
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
1630
1935
|
created_at: z.ZodString;
|
|
1631
1936
|
message: z.ZodString;
|
|
@@ -1961,19 +2266,6 @@ export declare const access_code: z.ZodObject<{
|
|
|
1961
2266
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1962
2267
|
message: z.ZodString;
|
|
1963
2268
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1964
|
-
}, {
|
|
1965
|
-
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
1966
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1967
|
-
message: string;
|
|
1968
|
-
warning_code: "salto_office_mode";
|
|
1969
|
-
created_at?: string | undefined;
|
|
1970
|
-
}, {
|
|
1971
|
-
message: string;
|
|
1972
|
-
warning_code: "salto_office_mode";
|
|
1973
|
-
created_at?: string | undefined;
|
|
1974
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1975
|
-
message: z.ZodString;
|
|
1976
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
1977
2269
|
}, {
|
|
1978
2270
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
1979
2271
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2039,6 +2331,19 @@ export declare const access_code: z.ZodObject<{
|
|
|
2039
2331
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2040
2332
|
message: z.ZodString;
|
|
2041
2333
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2334
|
+
}, {
|
|
2335
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
2336
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2337
|
+
message: string;
|
|
2338
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2339
|
+
created_at?: string | undefined;
|
|
2340
|
+
}, {
|
|
2341
|
+
message: string;
|
|
2342
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2343
|
+
created_at?: string | undefined;
|
|
2344
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2345
|
+
message: z.ZodString;
|
|
2346
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2042
2347
|
}, {
|
|
2043
2348
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
2044
2349
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2252,6 +2557,11 @@ export declare const access_code: z.ZodObject<{
|
|
|
2252
2557
|
error_code: "august_device_slots_full";
|
|
2253
2558
|
is_access_code_error: true;
|
|
2254
2559
|
created_at?: string | undefined;
|
|
2560
|
+
} | {
|
|
2561
|
+
message: string;
|
|
2562
|
+
error_code: "august_lock_temporarily_offline";
|
|
2563
|
+
is_access_code_error: true;
|
|
2564
|
+
created_at?: string | undefined;
|
|
2255
2565
|
} | {
|
|
2256
2566
|
message: string;
|
|
2257
2567
|
error_code: "august_lock_missing_keypad";
|
|
@@ -2259,7 +2569,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
2259
2569
|
created_at?: string | undefined;
|
|
2260
2570
|
} | {
|
|
2261
2571
|
message: string;
|
|
2262
|
-
error_code: "
|
|
2572
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
2263
2573
|
is_access_code_error: true;
|
|
2264
2574
|
created_at?: string | undefined;
|
|
2265
2575
|
} | {
|
|
@@ -2272,6 +2582,26 @@ export declare const access_code: z.ZodObject<{
|
|
|
2272
2582
|
error_code: "hubitat_no_free_positions_available";
|
|
2273
2583
|
is_access_code_error: true;
|
|
2274
2584
|
created_at?: string | undefined;
|
|
2585
|
+
} | {
|
|
2586
|
+
message: string;
|
|
2587
|
+
error_code: "smartthings_no_free_slots_available";
|
|
2588
|
+
is_access_code_error: true;
|
|
2589
|
+
created_at?: string | undefined;
|
|
2590
|
+
} | {
|
|
2591
|
+
message: string;
|
|
2592
|
+
error_code: "wyze_duplicate_code_name";
|
|
2593
|
+
is_access_code_error: true;
|
|
2594
|
+
created_at?: string | undefined;
|
|
2595
|
+
} | {
|
|
2596
|
+
message: string;
|
|
2597
|
+
error_code: "wyze_potential_duplicate_code";
|
|
2598
|
+
is_access_code_error: true;
|
|
2599
|
+
created_at?: string | undefined;
|
|
2600
|
+
} | {
|
|
2601
|
+
message: string;
|
|
2602
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
2603
|
+
is_access_code_error: true;
|
|
2604
|
+
created_at?: string | undefined;
|
|
2275
2605
|
})[];
|
|
2276
2606
|
warnings: ({
|
|
2277
2607
|
message: string;
|
|
@@ -2283,19 +2613,19 @@ export declare const access_code: z.ZodObject<{
|
|
|
2283
2613
|
created_at?: string | undefined;
|
|
2284
2614
|
} | {
|
|
2285
2615
|
message: string;
|
|
2286
|
-
warning_code: "
|
|
2616
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2287
2617
|
created_at?: string | undefined;
|
|
2288
2618
|
} | {
|
|
2289
2619
|
message: string;
|
|
2290
|
-
warning_code: "
|
|
2620
|
+
warning_code: "code_modified_external_to_seam";
|
|
2291
2621
|
created_at?: string | undefined;
|
|
2292
2622
|
} | {
|
|
2293
2623
|
message: string;
|
|
2294
|
-
warning_code: "
|
|
2624
|
+
warning_code: "schlage_detected_duplicate";
|
|
2295
2625
|
created_at?: string | undefined;
|
|
2296
2626
|
} | {
|
|
2297
2627
|
message: string;
|
|
2298
|
-
warning_code: "
|
|
2628
|
+
warning_code: "schlage_creation_outage";
|
|
2299
2629
|
created_at?: string | undefined;
|
|
2300
2630
|
} | {
|
|
2301
2631
|
message: string;
|
|
@@ -2501,6 +2831,11 @@ export declare const access_code: z.ZodObject<{
|
|
|
2501
2831
|
error_code: "august_device_slots_full";
|
|
2502
2832
|
is_access_code_error: true;
|
|
2503
2833
|
created_at?: string | undefined;
|
|
2834
|
+
} | {
|
|
2835
|
+
message: string;
|
|
2836
|
+
error_code: "august_lock_temporarily_offline";
|
|
2837
|
+
is_access_code_error: true;
|
|
2838
|
+
created_at?: string | undefined;
|
|
2504
2839
|
} | {
|
|
2505
2840
|
message: string;
|
|
2506
2841
|
error_code: "august_lock_missing_keypad";
|
|
@@ -2508,7 +2843,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
2508
2843
|
created_at?: string | undefined;
|
|
2509
2844
|
} | {
|
|
2510
2845
|
message: string;
|
|
2511
|
-
error_code: "
|
|
2846
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
2512
2847
|
is_access_code_error: true;
|
|
2513
2848
|
created_at?: string | undefined;
|
|
2514
2849
|
} | {
|
|
@@ -2521,6 +2856,26 @@ export declare const access_code: z.ZodObject<{
|
|
|
2521
2856
|
error_code: "hubitat_no_free_positions_available";
|
|
2522
2857
|
is_access_code_error: true;
|
|
2523
2858
|
created_at?: string | undefined;
|
|
2859
|
+
} | {
|
|
2860
|
+
message: string;
|
|
2861
|
+
error_code: "smartthings_no_free_slots_available";
|
|
2862
|
+
is_access_code_error: true;
|
|
2863
|
+
created_at?: string | undefined;
|
|
2864
|
+
} | {
|
|
2865
|
+
message: string;
|
|
2866
|
+
error_code: "wyze_duplicate_code_name";
|
|
2867
|
+
is_access_code_error: true;
|
|
2868
|
+
created_at?: string | undefined;
|
|
2869
|
+
} | {
|
|
2870
|
+
message: string;
|
|
2871
|
+
error_code: "wyze_potential_duplicate_code";
|
|
2872
|
+
is_access_code_error: true;
|
|
2873
|
+
created_at?: string | undefined;
|
|
2874
|
+
} | {
|
|
2875
|
+
message: string;
|
|
2876
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
2877
|
+
is_access_code_error: true;
|
|
2878
|
+
created_at?: string | undefined;
|
|
2524
2879
|
})[];
|
|
2525
2880
|
warnings: ({
|
|
2526
2881
|
message: string;
|
|
@@ -2532,19 +2887,19 @@ export declare const access_code: z.ZodObject<{
|
|
|
2532
2887
|
created_at?: string | undefined;
|
|
2533
2888
|
} | {
|
|
2534
2889
|
message: string;
|
|
2535
|
-
warning_code: "
|
|
2890
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2536
2891
|
created_at?: string | undefined;
|
|
2537
2892
|
} | {
|
|
2538
2893
|
message: string;
|
|
2539
|
-
warning_code: "
|
|
2894
|
+
warning_code: "code_modified_external_to_seam";
|
|
2540
2895
|
created_at?: string | undefined;
|
|
2541
2896
|
} | {
|
|
2542
2897
|
message: string;
|
|
2543
|
-
warning_code: "
|
|
2898
|
+
warning_code: "schlage_detected_duplicate";
|
|
2544
2899
|
created_at?: string | undefined;
|
|
2545
2900
|
} | {
|
|
2546
2901
|
message: string;
|
|
2547
|
-
warning_code: "
|
|
2902
|
+
warning_code: "schlage_creation_outage";
|
|
2548
2903
|
created_at?: string | undefined;
|
|
2549
2904
|
} | {
|
|
2550
2905
|
message: string;
|