@seamapi/types 1.360.0 → 1.361.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 +1645 -1159
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5946 -4573
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +192 -126
- package/lib/seam/connect/models/access-codes/managed-access-code.js +2 -4
- 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 +193 -127
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-credential-pool.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -6
- package/lib/seam/connect/models/acs/acs-credential.js +94 -51
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-encoder.js +12 -7
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-entrance.js +37 -14
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-system.js +48 -41
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-user.js +45 -32
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +26 -26
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +42 -42
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -18
- package/lib/seam/connect/models/devices/device.d.ts +1760 -389
- package/lib/seam/connect/models/devices/device.js +82 -4
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +4 -4
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +236 -58
- package/lib/seam/connect/models/events/access-codes.d.ts +68 -68
- package/lib/seam/connect/models/events/devices.d.ts +152 -152
- package/lib/seam/connect/models/events/phones.d.ts +4 -4
- package/lib/seam/connect/models/events/seam-event.d.ts +112 -112
- package/lib/seam/connect/models/thermostats/climate-preset.js +12 -10
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +8 -8
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +19 -12
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +103 -171
- package/lib/seam/connect/openapi.js +1120 -864
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4421 -3576
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +2 -4
- package/src/lib/seam/connect/models/acs/acs-credential.ts +162 -51
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +22 -7
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +65 -18
- package/src/lib/seam/connect/models/acs/acs-system.ts +81 -52
- package/src/lib/seam/connect/models/acs/acs-user.ts +69 -32
- package/src/lib/seam/connect/models/devices/device.ts +103 -4
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +28 -10
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +31 -12
- package/src/lib/seam/connect/openapi.ts +1259 -878
- package/src/lib/seam/connect/route-types.ts +4469 -3648
|
@@ -627,259 +627,299 @@ export declare const access_code: z.ZodObject<{
|
|
|
627
627
|
message: string;
|
|
628
628
|
error_code: "hubitat_no_free_positions_available";
|
|
629
629
|
is_access_code_error: true;
|
|
630
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
630
|
+
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
631
|
+
created_at: z.ZodString;
|
|
632
|
+
message: z.ZodString;
|
|
633
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
634
|
+
}, {
|
|
635
|
+
error_code: z.ZodLiteral<"account_disconnected">;
|
|
636
|
+
}>, "strip", z.ZodTypeAny, {
|
|
637
|
+
message: string;
|
|
638
|
+
created_at: string;
|
|
639
|
+
error_code: "account_disconnected";
|
|
640
|
+
is_connected_account_error: true;
|
|
641
|
+
}, {
|
|
642
|
+
message: string;
|
|
643
|
+
created_at: string;
|
|
644
|
+
error_code: "account_disconnected";
|
|
645
|
+
is_connected_account_error: true;
|
|
646
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
647
|
+
created_at: z.ZodString;
|
|
648
|
+
message: z.ZodString;
|
|
649
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
650
|
+
}, {
|
|
651
|
+
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
652
|
+
}>, "strip", z.ZodTypeAny, {
|
|
653
|
+
message: string;
|
|
654
|
+
created_at: string;
|
|
655
|
+
error_code: "invalid_credentials";
|
|
656
|
+
is_connected_account_error: true;
|
|
657
|
+
}, {
|
|
658
|
+
message: string;
|
|
659
|
+
created_at: string;
|
|
660
|
+
error_code: "invalid_credentials";
|
|
661
|
+
is_connected_account_error: true;
|
|
662
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
663
|
+
created_at: z.ZodString;
|
|
664
|
+
message: z.ZodString;
|
|
665
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
666
|
+
}, {
|
|
667
|
+
error_code: z.ZodLiteral<"salto_ks_subscription_limit_exceeded">;
|
|
668
|
+
salto_ks_metadata: z.ZodObject<{
|
|
669
|
+
sites: z.ZodArray<z.ZodObject<{
|
|
670
|
+
site_id: z.ZodString;
|
|
671
|
+
site_name: z.ZodString;
|
|
672
|
+
subscribed_site_user_count: z.ZodNumber;
|
|
673
|
+
site_user_subscription_limit: z.ZodNumber;
|
|
674
|
+
}, "strip", z.ZodTypeAny, {
|
|
675
|
+
site_id: string;
|
|
676
|
+
site_name: string;
|
|
677
|
+
subscribed_site_user_count: number;
|
|
678
|
+
site_user_subscription_limit: number;
|
|
679
|
+
}, {
|
|
680
|
+
site_id: string;
|
|
681
|
+
site_name: string;
|
|
682
|
+
subscribed_site_user_count: number;
|
|
683
|
+
site_user_subscription_limit: number;
|
|
684
|
+
}>, "many">;
|
|
685
|
+
}, "strip", z.ZodTypeAny, {
|
|
686
|
+
sites: {
|
|
687
|
+
site_id: string;
|
|
688
|
+
site_name: string;
|
|
689
|
+
subscribed_site_user_count: number;
|
|
690
|
+
site_user_subscription_limit: number;
|
|
691
|
+
}[];
|
|
692
|
+
}, {
|
|
693
|
+
sites: {
|
|
694
|
+
site_id: string;
|
|
695
|
+
site_name: string;
|
|
696
|
+
subscribed_site_user_count: number;
|
|
697
|
+
site_user_subscription_limit: number;
|
|
698
|
+
}[];
|
|
699
|
+
}>;
|
|
700
|
+
}>, "strip", z.ZodTypeAny, {
|
|
701
|
+
message: string;
|
|
702
|
+
created_at: string;
|
|
703
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
704
|
+
is_connected_account_error: true;
|
|
705
|
+
salto_ks_metadata: {
|
|
706
|
+
sites: {
|
|
707
|
+
site_id: string;
|
|
708
|
+
site_name: string;
|
|
709
|
+
subscribed_site_user_count: number;
|
|
710
|
+
site_user_subscription_limit: number;
|
|
711
|
+
}[];
|
|
712
|
+
};
|
|
713
|
+
}, {
|
|
714
|
+
message: string;
|
|
715
|
+
created_at: string;
|
|
716
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
717
|
+
is_connected_account_error: true;
|
|
718
|
+
salto_ks_metadata: {
|
|
719
|
+
sites: {
|
|
720
|
+
site_id: string;
|
|
721
|
+
site_name: string;
|
|
722
|
+
subscribed_site_user_count: number;
|
|
723
|
+
site_user_subscription_limit: number;
|
|
724
|
+
}[];
|
|
725
|
+
};
|
|
726
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
631
727
|
message: z.ZodString;
|
|
632
728
|
is_device_error: z.ZodLiteral<true>;
|
|
729
|
+
created_at: z.ZodString;
|
|
633
730
|
}, {
|
|
634
731
|
error_code: z.ZodLiteral<"device_offline">;
|
|
635
732
|
}>, "strip", z.ZodTypeAny, {
|
|
636
733
|
message: string;
|
|
734
|
+
created_at: string;
|
|
637
735
|
error_code: "device_offline";
|
|
638
736
|
is_device_error: true;
|
|
639
737
|
}, {
|
|
640
738
|
message: string;
|
|
739
|
+
created_at: string;
|
|
641
740
|
error_code: "device_offline";
|
|
642
741
|
is_device_error: true;
|
|
643
|
-
}
|
|
742
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
644
743
|
message: z.ZodString;
|
|
645
744
|
is_device_error: z.ZodLiteral<true>;
|
|
745
|
+
created_at: z.ZodString;
|
|
646
746
|
}, {
|
|
647
747
|
error_code: z.ZodLiteral<"device_removed">;
|
|
648
748
|
}>, "strip", z.ZodTypeAny, {
|
|
649
749
|
message: string;
|
|
750
|
+
created_at: string;
|
|
650
751
|
error_code: "device_removed";
|
|
651
752
|
is_device_error: true;
|
|
652
753
|
}, {
|
|
653
754
|
message: string;
|
|
755
|
+
created_at: string;
|
|
654
756
|
error_code: "device_removed";
|
|
655
757
|
is_device_error: true;
|
|
656
|
-
}
|
|
758
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
657
759
|
message: z.ZodString;
|
|
658
760
|
is_device_error: z.ZodLiteral<true>;
|
|
761
|
+
created_at: z.ZodString;
|
|
659
762
|
}, {
|
|
660
763
|
error_code: z.ZodLiteral<"hub_disconnected">;
|
|
661
764
|
}>, "strip", z.ZodTypeAny, {
|
|
662
765
|
message: string;
|
|
766
|
+
created_at: string;
|
|
663
767
|
error_code: "hub_disconnected";
|
|
664
768
|
is_device_error: true;
|
|
665
769
|
}, {
|
|
666
770
|
message: string;
|
|
771
|
+
created_at: string;
|
|
667
772
|
error_code: "hub_disconnected";
|
|
668
773
|
is_device_error: true;
|
|
669
|
-
}
|
|
774
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
670
775
|
message: z.ZodString;
|
|
671
776
|
is_device_error: z.ZodLiteral<true>;
|
|
777
|
+
created_at: z.ZodString;
|
|
672
778
|
}, {
|
|
673
779
|
error_code: z.ZodLiteral<"device_disconnected">;
|
|
674
780
|
}>, "strip", z.ZodTypeAny, {
|
|
675
781
|
message: string;
|
|
782
|
+
created_at: string;
|
|
676
783
|
error_code: "device_disconnected";
|
|
677
784
|
is_device_error: true;
|
|
678
785
|
}, {
|
|
679
786
|
message: string;
|
|
787
|
+
created_at: string;
|
|
680
788
|
error_code: "device_disconnected";
|
|
681
789
|
is_device_error: true;
|
|
682
|
-
}
|
|
790
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
683
791
|
message: z.ZodString;
|
|
684
792
|
is_device_error: z.ZodLiteral<true>;
|
|
793
|
+
created_at: z.ZodString;
|
|
685
794
|
}, {
|
|
686
795
|
error_code: z.ZodLiteral<"empty_backup_access_code_pool">;
|
|
687
796
|
}>, "strip", z.ZodTypeAny, {
|
|
688
797
|
message: string;
|
|
798
|
+
created_at: string;
|
|
689
799
|
error_code: "empty_backup_access_code_pool";
|
|
690
800
|
is_device_error: true;
|
|
691
801
|
}, {
|
|
692
802
|
message: string;
|
|
803
|
+
created_at: string;
|
|
693
804
|
error_code: "empty_backup_access_code_pool";
|
|
694
805
|
is_device_error: true;
|
|
695
|
-
}
|
|
806
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
696
807
|
message: z.ZodString;
|
|
697
808
|
is_device_error: z.ZodLiteral<true>;
|
|
809
|
+
created_at: z.ZodString;
|
|
698
810
|
}, {
|
|
699
811
|
error_code: z.ZodLiteral<"august_lock_not_authorized">;
|
|
700
812
|
}>, "strip", z.ZodTypeAny, {
|
|
701
813
|
message: string;
|
|
814
|
+
created_at: string;
|
|
702
815
|
error_code: "august_lock_not_authorized";
|
|
703
816
|
is_device_error: true;
|
|
704
817
|
}, {
|
|
705
818
|
message: string;
|
|
819
|
+
created_at: string;
|
|
706
820
|
error_code: "august_lock_not_authorized";
|
|
707
821
|
is_device_error: true;
|
|
708
|
-
}
|
|
822
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
709
823
|
message: z.ZodString;
|
|
710
824
|
is_device_error: z.ZodLiteral<true>;
|
|
825
|
+
created_at: z.ZodString;
|
|
711
826
|
}, {
|
|
712
827
|
error_code: z.ZodLiteral<"august_lock_missing_bridge">;
|
|
713
828
|
}>, "strip", z.ZodTypeAny, {
|
|
714
829
|
message: string;
|
|
830
|
+
created_at: string;
|
|
715
831
|
error_code: "august_lock_missing_bridge";
|
|
716
832
|
is_device_error: true;
|
|
717
833
|
}, {
|
|
718
834
|
message: string;
|
|
835
|
+
created_at: string;
|
|
719
836
|
error_code: "august_lock_missing_bridge";
|
|
720
837
|
is_device_error: true;
|
|
721
|
-
}
|
|
838
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
722
839
|
message: z.ZodString;
|
|
723
840
|
is_device_error: z.ZodLiteral<true>;
|
|
841
|
+
created_at: z.ZodString;
|
|
724
842
|
}, {
|
|
725
|
-
error_code: z.ZodLiteral<"
|
|
843
|
+
error_code: z.ZodLiteral<"salto_ks_subscription_limit_exceeded">;
|
|
844
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
845
|
+
is_device_error: z.ZodLiteral<false>;
|
|
726
846
|
}>, "strip", z.ZodTypeAny, {
|
|
727
847
|
message: string;
|
|
728
|
-
|
|
729
|
-
|
|
848
|
+
created_at: string;
|
|
849
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
850
|
+
is_connected_account_error: true;
|
|
851
|
+
is_device_error: false;
|
|
730
852
|
}, {
|
|
731
853
|
message: string;
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
854
|
+
created_at: string;
|
|
855
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
856
|
+
is_connected_account_error: true;
|
|
857
|
+
is_device_error: false;
|
|
858
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
735
859
|
message: z.ZodString;
|
|
736
860
|
is_device_error: z.ZodLiteral<true>;
|
|
861
|
+
created_at: z.ZodString;
|
|
737
862
|
}, {
|
|
738
863
|
error_code: z.ZodLiteral<"ttlock_lock_not_paired_to_gateway">;
|
|
739
864
|
}>, "strip", z.ZodTypeAny, {
|
|
740
865
|
message: string;
|
|
866
|
+
created_at: string;
|
|
741
867
|
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
742
868
|
is_device_error: true;
|
|
743
869
|
}, {
|
|
744
870
|
message: string;
|
|
871
|
+
created_at: string;
|
|
745
872
|
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
746
873
|
is_device_error: true;
|
|
747
|
-
}
|
|
874
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
748
875
|
message: z.ZodString;
|
|
749
876
|
is_device_error: z.ZodLiteral<true>;
|
|
877
|
+
created_at: z.ZodString;
|
|
750
878
|
}, {
|
|
751
879
|
error_code: z.ZodLiteral<"missing_device_credentials">;
|
|
752
880
|
}>, "strip", z.ZodTypeAny, {
|
|
753
881
|
message: string;
|
|
882
|
+
created_at: string;
|
|
754
883
|
error_code: "missing_device_credentials";
|
|
755
884
|
is_device_error: true;
|
|
756
885
|
}, {
|
|
757
886
|
message: string;
|
|
887
|
+
created_at: string;
|
|
758
888
|
error_code: "missing_device_credentials";
|
|
759
889
|
is_device_error: true;
|
|
760
|
-
}
|
|
890
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
761
891
|
message: z.ZodString;
|
|
762
892
|
is_device_error: z.ZodLiteral<true>;
|
|
893
|
+
created_at: z.ZodString;
|
|
763
894
|
}, {
|
|
764
895
|
error_code: z.ZodLiteral<"auxiliary_heat_running">;
|
|
765
896
|
}>, "strip", z.ZodTypeAny, {
|
|
766
897
|
message: string;
|
|
898
|
+
created_at: string;
|
|
767
899
|
error_code: "auxiliary_heat_running";
|
|
768
900
|
is_device_error: true;
|
|
769
901
|
}, {
|
|
770
902
|
message: string;
|
|
903
|
+
created_at: string;
|
|
771
904
|
error_code: "auxiliary_heat_running";
|
|
772
905
|
is_device_error: true;
|
|
773
|
-
}
|
|
906
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
774
907
|
message: z.ZodString;
|
|
775
908
|
is_device_error: z.ZodLiteral<true>;
|
|
909
|
+
created_at: z.ZodString;
|
|
776
910
|
}, {
|
|
777
911
|
error_code: z.ZodLiteral<"subscription_required">;
|
|
778
912
|
}>, "strip", z.ZodTypeAny, {
|
|
779
913
|
message: string;
|
|
914
|
+
created_at: string;
|
|
780
915
|
error_code: "subscription_required";
|
|
781
916
|
is_device_error: true;
|
|
782
917
|
}, {
|
|
783
918
|
message: string;
|
|
919
|
+
created_at: string;
|
|
784
920
|
error_code: "subscription_required";
|
|
785
921
|
is_device_error: true;
|
|
786
|
-
}>,
|
|
787
|
-
created_at: z.ZodString;
|
|
788
|
-
message: z.ZodString;
|
|
789
|
-
is_connected_account_error: z.ZodLiteral<true>;
|
|
790
|
-
}, {
|
|
791
|
-
error_code: z.ZodLiteral<"account_disconnected">;
|
|
792
|
-
}>, "strip", z.ZodTypeAny, {
|
|
793
|
-
message: string;
|
|
794
|
-
created_at: string;
|
|
795
|
-
is_connected_account_error: true;
|
|
796
|
-
error_code: "account_disconnected";
|
|
797
|
-
}, {
|
|
798
|
-
message: string;
|
|
799
|
-
created_at: string;
|
|
800
|
-
is_connected_account_error: true;
|
|
801
|
-
error_code: "account_disconnected";
|
|
802
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
803
|
-
created_at: z.ZodString;
|
|
804
|
-
message: z.ZodString;
|
|
805
|
-
is_connected_account_error: z.ZodLiteral<true>;
|
|
806
|
-
}, {
|
|
807
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
808
|
-
}>, "strip", z.ZodTypeAny, {
|
|
809
|
-
message: string;
|
|
810
|
-
created_at: string;
|
|
811
|
-
is_connected_account_error: true;
|
|
812
|
-
error_code: "invalid_credentials";
|
|
813
|
-
}, {
|
|
814
|
-
message: string;
|
|
815
|
-
created_at: string;
|
|
816
|
-
is_connected_account_error: true;
|
|
817
|
-
error_code: "invalid_credentials";
|
|
818
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
819
|
-
created_at: z.ZodString;
|
|
820
|
-
message: z.ZodString;
|
|
821
|
-
is_connected_account_error: z.ZodLiteral<true>;
|
|
822
|
-
}, {
|
|
823
|
-
error_code: z.ZodLiteral<"salto_ks_subscription_limit_exceeded">;
|
|
824
|
-
salto_ks_metadata: z.ZodObject<{
|
|
825
|
-
sites: z.ZodArray<z.ZodObject<{
|
|
826
|
-
site_id: z.ZodString;
|
|
827
|
-
site_name: z.ZodString;
|
|
828
|
-
subscribed_site_user_count: z.ZodNumber;
|
|
829
|
-
site_user_subscription_limit: z.ZodNumber;
|
|
830
|
-
}, "strip", z.ZodTypeAny, {
|
|
831
|
-
site_id: string;
|
|
832
|
-
site_name: string;
|
|
833
|
-
subscribed_site_user_count: number;
|
|
834
|
-
site_user_subscription_limit: number;
|
|
835
|
-
}, {
|
|
836
|
-
site_id: string;
|
|
837
|
-
site_name: string;
|
|
838
|
-
subscribed_site_user_count: number;
|
|
839
|
-
site_user_subscription_limit: number;
|
|
840
|
-
}>, "many">;
|
|
841
|
-
}, "strip", z.ZodTypeAny, {
|
|
842
|
-
sites: {
|
|
843
|
-
site_id: string;
|
|
844
|
-
site_name: string;
|
|
845
|
-
subscribed_site_user_count: number;
|
|
846
|
-
site_user_subscription_limit: number;
|
|
847
|
-
}[];
|
|
848
|
-
}, {
|
|
849
|
-
sites: {
|
|
850
|
-
site_id: string;
|
|
851
|
-
site_name: string;
|
|
852
|
-
subscribed_site_user_count: number;
|
|
853
|
-
site_user_subscription_limit: number;
|
|
854
|
-
}[];
|
|
855
|
-
}>;
|
|
856
|
-
}>, "strip", z.ZodTypeAny, {
|
|
857
|
-
message: string;
|
|
858
|
-
created_at: string;
|
|
859
|
-
is_connected_account_error: true;
|
|
860
|
-
error_code: "salto_ks_subscription_limit_exceeded";
|
|
861
|
-
salto_ks_metadata: {
|
|
862
|
-
sites: {
|
|
863
|
-
site_id: string;
|
|
864
|
-
site_name: string;
|
|
865
|
-
subscribed_site_user_count: number;
|
|
866
|
-
site_user_subscription_limit: number;
|
|
867
|
-
}[];
|
|
868
|
-
};
|
|
869
|
-
}, {
|
|
870
|
-
message: string;
|
|
871
|
-
created_at: string;
|
|
872
|
-
is_connected_account_error: true;
|
|
873
|
-
error_code: "salto_ks_subscription_limit_exceeded";
|
|
874
|
-
salto_ks_metadata: {
|
|
875
|
-
sites: {
|
|
876
|
-
site_id: string;
|
|
877
|
-
site_name: string;
|
|
878
|
-
subscribed_site_user_count: number;
|
|
879
|
-
site_user_subscription_limit: number;
|
|
880
|
-
}[];
|
|
881
|
-
};
|
|
882
|
-
}>]>, "many">;
|
|
922
|
+
}>)[]]>, "many">;
|
|
883
923
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
884
924
|
message: z.ZodString;
|
|
885
925
|
}, {
|
|
@@ -1016,22 +1056,23 @@ export declare const access_code: z.ZodObject<{
|
|
|
1016
1056
|
code: string | null;
|
|
1017
1057
|
name: string | null;
|
|
1018
1058
|
status: "set" | "unknown" | "setting" | "unset" | "removing";
|
|
1059
|
+
device_id: string;
|
|
1019
1060
|
created_at: string;
|
|
1020
1061
|
errors: ({
|
|
1021
1062
|
message: string;
|
|
1022
1063
|
created_at: string;
|
|
1023
|
-
is_connected_account_error: true;
|
|
1024
1064
|
error_code: "account_disconnected";
|
|
1065
|
+
is_connected_account_error: true;
|
|
1025
1066
|
} | {
|
|
1026
1067
|
message: string;
|
|
1027
1068
|
created_at: string;
|
|
1028
|
-
is_connected_account_error: true;
|
|
1029
1069
|
error_code: "invalid_credentials";
|
|
1070
|
+
is_connected_account_error: true;
|
|
1030
1071
|
} | {
|
|
1031
1072
|
message: string;
|
|
1032
1073
|
created_at: string;
|
|
1033
|
-
is_connected_account_error: true;
|
|
1034
1074
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
1075
|
+
is_connected_account_error: true;
|
|
1035
1076
|
salto_ks_metadata: {
|
|
1036
1077
|
sites: {
|
|
1037
1078
|
site_id: string;
|
|
@@ -1042,50 +1083,63 @@ export declare const access_code: z.ZodObject<{
|
|
|
1042
1083
|
};
|
|
1043
1084
|
} | {
|
|
1044
1085
|
message: string;
|
|
1086
|
+
created_at: string;
|
|
1045
1087
|
error_code: "device_offline";
|
|
1046
1088
|
is_device_error: true;
|
|
1047
1089
|
} | {
|
|
1048
1090
|
message: string;
|
|
1091
|
+
created_at: string;
|
|
1049
1092
|
error_code: "device_removed";
|
|
1050
1093
|
is_device_error: true;
|
|
1051
1094
|
} | {
|
|
1052
1095
|
message: string;
|
|
1096
|
+
created_at: string;
|
|
1053
1097
|
error_code: "hub_disconnected";
|
|
1054
1098
|
is_device_error: true;
|
|
1055
1099
|
} | {
|
|
1056
1100
|
message: string;
|
|
1101
|
+
created_at: string;
|
|
1057
1102
|
error_code: "device_disconnected";
|
|
1058
1103
|
is_device_error: true;
|
|
1059
1104
|
} | {
|
|
1060
1105
|
message: string;
|
|
1106
|
+
created_at: string;
|
|
1061
1107
|
error_code: "empty_backup_access_code_pool";
|
|
1062
1108
|
is_device_error: true;
|
|
1063
1109
|
} | {
|
|
1064
1110
|
message: string;
|
|
1111
|
+
created_at: string;
|
|
1065
1112
|
error_code: "august_lock_not_authorized";
|
|
1066
1113
|
is_device_error: true;
|
|
1067
1114
|
} | {
|
|
1068
1115
|
message: string;
|
|
1116
|
+
created_at: string;
|
|
1069
1117
|
error_code: "august_lock_missing_bridge";
|
|
1070
1118
|
is_device_error: true;
|
|
1071
1119
|
} | {
|
|
1072
1120
|
message: string;
|
|
1073
|
-
|
|
1074
|
-
|
|
1121
|
+
created_at: string;
|
|
1122
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
1123
|
+
is_connected_account_error: true;
|
|
1124
|
+
is_device_error: false;
|
|
1075
1125
|
} | {
|
|
1076
1126
|
message: string;
|
|
1127
|
+
created_at: string;
|
|
1077
1128
|
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
1078
1129
|
is_device_error: true;
|
|
1079
1130
|
} | {
|
|
1080
1131
|
message: string;
|
|
1132
|
+
created_at: string;
|
|
1081
1133
|
error_code: "missing_device_credentials";
|
|
1082
1134
|
is_device_error: true;
|
|
1083
1135
|
} | {
|
|
1084
1136
|
message: string;
|
|
1137
|
+
created_at: string;
|
|
1085
1138
|
error_code: "auxiliary_heat_running";
|
|
1086
1139
|
is_device_error: true;
|
|
1087
1140
|
} | {
|
|
1088
1141
|
message: string;
|
|
1142
|
+
created_at: string;
|
|
1089
1143
|
error_code: "subscription_required";
|
|
1090
1144
|
is_device_error: true;
|
|
1091
1145
|
} | {
|
|
@@ -1202,7 +1256,6 @@ export declare const access_code: z.ZodObject<{
|
|
|
1202
1256
|
message: string;
|
|
1203
1257
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1204
1258
|
})[];
|
|
1205
|
-
device_id: string;
|
|
1206
1259
|
is_managed: true;
|
|
1207
1260
|
common_code_key: string | null;
|
|
1208
1261
|
access_code_id: string;
|
|
@@ -1221,22 +1274,23 @@ export declare const access_code: z.ZodObject<{
|
|
|
1221
1274
|
code: string | null;
|
|
1222
1275
|
name: string | null;
|
|
1223
1276
|
status: "set" | "unknown" | "setting" | "unset" | "removing";
|
|
1277
|
+
device_id: string;
|
|
1224
1278
|
created_at: string;
|
|
1225
1279
|
errors: ({
|
|
1226
1280
|
message: string;
|
|
1227
1281
|
created_at: string;
|
|
1228
|
-
is_connected_account_error: true;
|
|
1229
1282
|
error_code: "account_disconnected";
|
|
1283
|
+
is_connected_account_error: true;
|
|
1230
1284
|
} | {
|
|
1231
1285
|
message: string;
|
|
1232
1286
|
created_at: string;
|
|
1233
|
-
is_connected_account_error: true;
|
|
1234
1287
|
error_code: "invalid_credentials";
|
|
1288
|
+
is_connected_account_error: true;
|
|
1235
1289
|
} | {
|
|
1236
1290
|
message: string;
|
|
1237
1291
|
created_at: string;
|
|
1238
|
-
is_connected_account_error: true;
|
|
1239
1292
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
1293
|
+
is_connected_account_error: true;
|
|
1240
1294
|
salto_ks_metadata: {
|
|
1241
1295
|
sites: {
|
|
1242
1296
|
site_id: string;
|
|
@@ -1247,50 +1301,63 @@ export declare const access_code: z.ZodObject<{
|
|
|
1247
1301
|
};
|
|
1248
1302
|
} | {
|
|
1249
1303
|
message: string;
|
|
1304
|
+
created_at: string;
|
|
1250
1305
|
error_code: "device_offline";
|
|
1251
1306
|
is_device_error: true;
|
|
1252
1307
|
} | {
|
|
1253
1308
|
message: string;
|
|
1309
|
+
created_at: string;
|
|
1254
1310
|
error_code: "device_removed";
|
|
1255
1311
|
is_device_error: true;
|
|
1256
1312
|
} | {
|
|
1257
1313
|
message: string;
|
|
1314
|
+
created_at: string;
|
|
1258
1315
|
error_code: "hub_disconnected";
|
|
1259
1316
|
is_device_error: true;
|
|
1260
1317
|
} | {
|
|
1261
1318
|
message: string;
|
|
1319
|
+
created_at: string;
|
|
1262
1320
|
error_code: "device_disconnected";
|
|
1263
1321
|
is_device_error: true;
|
|
1264
1322
|
} | {
|
|
1265
1323
|
message: string;
|
|
1324
|
+
created_at: string;
|
|
1266
1325
|
error_code: "empty_backup_access_code_pool";
|
|
1267
1326
|
is_device_error: true;
|
|
1268
1327
|
} | {
|
|
1269
1328
|
message: string;
|
|
1329
|
+
created_at: string;
|
|
1270
1330
|
error_code: "august_lock_not_authorized";
|
|
1271
1331
|
is_device_error: true;
|
|
1272
1332
|
} | {
|
|
1273
1333
|
message: string;
|
|
1334
|
+
created_at: string;
|
|
1274
1335
|
error_code: "august_lock_missing_bridge";
|
|
1275
1336
|
is_device_error: true;
|
|
1276
1337
|
} | {
|
|
1277
1338
|
message: string;
|
|
1278
|
-
|
|
1279
|
-
|
|
1339
|
+
created_at: string;
|
|
1340
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
1341
|
+
is_connected_account_error: true;
|
|
1342
|
+
is_device_error: false;
|
|
1280
1343
|
} | {
|
|
1281
1344
|
message: string;
|
|
1345
|
+
created_at: string;
|
|
1282
1346
|
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
1283
1347
|
is_device_error: true;
|
|
1284
1348
|
} | {
|
|
1285
1349
|
message: string;
|
|
1350
|
+
created_at: string;
|
|
1286
1351
|
error_code: "missing_device_credentials";
|
|
1287
1352
|
is_device_error: true;
|
|
1288
1353
|
} | {
|
|
1289
1354
|
message: string;
|
|
1355
|
+
created_at: string;
|
|
1290
1356
|
error_code: "auxiliary_heat_running";
|
|
1291
1357
|
is_device_error: true;
|
|
1292
1358
|
} | {
|
|
1293
1359
|
message: string;
|
|
1360
|
+
created_at: string;
|
|
1294
1361
|
error_code: "subscription_required";
|
|
1295
1362
|
is_device_error: true;
|
|
1296
1363
|
} | {
|
|
@@ -1407,7 +1474,6 @@ export declare const access_code: z.ZodObject<{
|
|
|
1407
1474
|
message: string;
|
|
1408
1475
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1409
1476
|
})[];
|
|
1410
|
-
device_id: string;
|
|
1411
1477
|
is_managed: true;
|
|
1412
1478
|
common_code_key: string | null;
|
|
1413
1479
|
access_code_id: string;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import {
|
|
3
|
-
import { device_error } from '../devices/index.js';
|
|
2
|
+
import { device_and_connected_account_error_options } from '../devices/index.js';
|
|
4
3
|
const common_access_code_error = z.object({
|
|
5
4
|
message: z.string(),
|
|
6
5
|
is_access_code_error: z.literal(true),
|
|
@@ -301,8 +300,7 @@ export const access_code = z.object({
|
|
|
301
300
|
errors: z
|
|
302
301
|
.array(z.discriminatedUnion('error_code', [
|
|
303
302
|
...access_code_error.options,
|
|
304
|
-
...
|
|
305
|
-
...connected_account_error.options,
|
|
303
|
+
...device_and_connected_account_error_options,
|
|
306
304
|
]))
|
|
307
305
|
.describe('Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.'),
|
|
308
306
|
warnings: z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managed-access-code.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-codes/managed-access-code.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"managed-access-code.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-codes/managed-access-code.ts"],"names":[],"mappings":"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"}
|