@seamapi/types 1.323.0 → 1.325.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 +1627 -773
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3829 -1177
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +257 -5
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +257 -5
- package/lib/seam/connect/models/acs/acs-system.d.ts +10 -10
- package/lib/seam/connect/models/devices/device.d.ts +419 -11
- package/lib/seam/connect/models/devices/device.js +103 -3
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +258 -6
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +258 -6
- package/lib/seam/connect/models/events/access-codes.js +32 -41
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/acs/common.js +9 -12
- package/lib/seam/connect/models/events/acs/common.js.map +1 -1
- package/lib/seam/connect/models/events/acs/credentials.js +2 -2
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/encoders.js +6 -3
- package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
- package/lib/seam/connect/models/events/acs/systems.js +3 -3
- package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
- package/lib/seam/connect/models/events/acs/users.js +5 -3
- package/lib/seam/connect/models/events/acs/users.js.map +1 -1
- package/lib/seam/connect/models/events/action-attempts.js +10 -22
- package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
- package/lib/seam/connect/models/events/client-sessions.js +5 -7
- package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
- package/lib/seam/connect/models/events/common.js +5 -2
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.js +10 -14
- package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
- package/lib/seam/connect/models/events/connected-accounts.js +15 -19
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/devices.js +43 -47
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/enrollment-automations.js +5 -7
- package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
- package/lib/seam/connect/models/events/phones.js +4 -6
- package/lib/seam/connect/models/events/phones.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +124 -222
- package/lib/seam/connect/openapi.js +1241 -475
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2131 -545
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +118 -3
- package/src/lib/seam/connect/models/events/access-codes.ts +64 -41
- package/src/lib/seam/connect/models/events/acs/common.ts +13 -12
- package/src/lib/seam/connect/models/events/acs/credentials.ts +6 -2
- package/src/lib/seam/connect/models/events/acs/encoders.ts +12 -3
- package/src/lib/seam/connect/models/events/acs/systems.ts +9 -3
- package/src/lib/seam/connect/models/events/acs/users.ts +10 -4
- package/src/lib/seam/connect/models/events/action-attempts.ts +20 -22
- package/src/lib/seam/connect/models/events/client-sessions.ts +9 -7
- package/src/lib/seam/connect/models/events/common.ts +5 -2
- package/src/lib/seam/connect/models/events/connect-webviews.ts +18 -14
- package/src/lib/seam/connect/models/events/connected-accounts.ts +25 -19
- package/src/lib/seam/connect/models/events/devices.ts +75 -47
- package/src/lib/seam/connect/models/events/enrollment-automations.ts +9 -7
- package/src/lib/seam/connect/models/events/phones.ts +6 -6
- package/src/lib/seam/connect/openapi.ts +1449 -475
- package/src/lib/seam/connect/route-types.ts +2580 -630
|
@@ -841,11 +841,72 @@ export interface Routes {
|
|
|
841
841
|
message: string;
|
|
842
842
|
is_access_code_error: true;
|
|
843
843
|
error_code: string;
|
|
844
|
+
} | ({
|
|
845
|
+
message: string;
|
|
846
|
+
is_device_error: true;
|
|
847
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
848
|
+
error_code: 'device_offline';
|
|
844
849
|
} | {
|
|
845
850
|
message: string;
|
|
846
851
|
is_device_error: true;
|
|
847
|
-
|
|
852
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
853
|
+
error_code: 'device_removed';
|
|
854
|
+
} | {
|
|
855
|
+
message: string;
|
|
856
|
+
is_device_error: true;
|
|
857
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
858
|
+
error_code: 'account_disconnected';
|
|
859
|
+
} | {
|
|
860
|
+
message: string;
|
|
861
|
+
is_device_error: true;
|
|
862
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
863
|
+
error_code: 'hub_disconnected';
|
|
864
|
+
} | {
|
|
865
|
+
message: string;
|
|
866
|
+
is_device_error: true;
|
|
867
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
868
|
+
error_code: 'device_disconnected';
|
|
869
|
+
} | {
|
|
870
|
+
message: string;
|
|
871
|
+
is_device_error: true;
|
|
872
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
873
|
+
error_code: 'empty_backup_access_code_pool';
|
|
874
|
+
} | {
|
|
875
|
+
message: string;
|
|
876
|
+
is_device_error: true;
|
|
877
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
878
|
+
error_code: 'august_lock_not_authorized';
|
|
879
|
+
} | {
|
|
880
|
+
message: string;
|
|
881
|
+
is_device_error: true;
|
|
882
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
883
|
+
error_code: 'august_lock_missing_bridge';
|
|
884
|
+
} | {
|
|
885
|
+
message: string;
|
|
886
|
+
is_device_error: true;
|
|
887
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
888
|
+
error_code: 'salto_site_user_limit_reached';
|
|
889
|
+
} | {
|
|
890
|
+
message: string;
|
|
891
|
+
is_device_error: true;
|
|
892
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
893
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
894
|
+
} | {
|
|
895
|
+
message: string;
|
|
896
|
+
is_device_error: true;
|
|
897
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
898
|
+
error_code: 'missing_device_credentials';
|
|
899
|
+
} | {
|
|
900
|
+
message: string;
|
|
901
|
+
is_device_error: true;
|
|
902
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
903
|
+
error_code: 'auxiliary_heat_running';
|
|
848
904
|
} | {
|
|
905
|
+
message: string;
|
|
906
|
+
is_device_error: true;
|
|
907
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
908
|
+
error_code: 'subscription_required';
|
|
909
|
+
}) | {
|
|
849
910
|
message: string;
|
|
850
911
|
is_connected_account_error: true;
|
|
851
912
|
error_code: string;
|
|
@@ -929,11 +990,72 @@ export interface Routes {
|
|
|
929
990
|
message: string;
|
|
930
991
|
is_access_code_error: true;
|
|
931
992
|
error_code: string;
|
|
993
|
+
} | ({
|
|
994
|
+
message: string;
|
|
995
|
+
is_device_error: true;
|
|
996
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
997
|
+
error_code: 'device_offline';
|
|
932
998
|
} | {
|
|
933
999
|
message: string;
|
|
934
1000
|
is_device_error: true;
|
|
935
|
-
|
|
1001
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1002
|
+
error_code: 'device_removed';
|
|
1003
|
+
} | {
|
|
1004
|
+
message: string;
|
|
1005
|
+
is_device_error: true;
|
|
1006
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1007
|
+
error_code: 'account_disconnected';
|
|
1008
|
+
} | {
|
|
1009
|
+
message: string;
|
|
1010
|
+
is_device_error: true;
|
|
1011
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1012
|
+
error_code: 'hub_disconnected';
|
|
1013
|
+
} | {
|
|
1014
|
+
message: string;
|
|
1015
|
+
is_device_error: true;
|
|
1016
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1017
|
+
error_code: 'device_disconnected';
|
|
1018
|
+
} | {
|
|
1019
|
+
message: string;
|
|
1020
|
+
is_device_error: true;
|
|
1021
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1022
|
+
error_code: 'empty_backup_access_code_pool';
|
|
1023
|
+
} | {
|
|
1024
|
+
message: string;
|
|
1025
|
+
is_device_error: true;
|
|
1026
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1027
|
+
error_code: 'august_lock_not_authorized';
|
|
936
1028
|
} | {
|
|
1029
|
+
message: string;
|
|
1030
|
+
is_device_error: true;
|
|
1031
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1032
|
+
error_code: 'august_lock_missing_bridge';
|
|
1033
|
+
} | {
|
|
1034
|
+
message: string;
|
|
1035
|
+
is_device_error: true;
|
|
1036
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1037
|
+
error_code: 'salto_site_user_limit_reached';
|
|
1038
|
+
} | {
|
|
1039
|
+
message: string;
|
|
1040
|
+
is_device_error: true;
|
|
1041
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1042
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
1043
|
+
} | {
|
|
1044
|
+
message: string;
|
|
1045
|
+
is_device_error: true;
|
|
1046
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1047
|
+
error_code: 'missing_device_credentials';
|
|
1048
|
+
} | {
|
|
1049
|
+
message: string;
|
|
1050
|
+
is_device_error: true;
|
|
1051
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1052
|
+
error_code: 'auxiliary_heat_running';
|
|
1053
|
+
} | {
|
|
1054
|
+
message: string;
|
|
1055
|
+
is_device_error: true;
|
|
1056
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1057
|
+
error_code: 'subscription_required';
|
|
1058
|
+
}) | {
|
|
937
1059
|
message: string;
|
|
938
1060
|
is_connected_account_error: true;
|
|
939
1061
|
error_code: string;
|
|
@@ -1826,11 +1948,72 @@ export interface Routes {
|
|
|
1826
1948
|
message: string;
|
|
1827
1949
|
is_access_code_error: true;
|
|
1828
1950
|
error_code: string;
|
|
1951
|
+
} | ({
|
|
1952
|
+
message: string;
|
|
1953
|
+
is_device_error: true;
|
|
1954
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1955
|
+
error_code: 'device_offline';
|
|
1829
1956
|
} | {
|
|
1830
1957
|
message: string;
|
|
1831
1958
|
is_device_error: true;
|
|
1832
|
-
|
|
1959
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1960
|
+
error_code: 'device_removed';
|
|
1961
|
+
} | {
|
|
1962
|
+
message: string;
|
|
1963
|
+
is_device_error: true;
|
|
1964
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1965
|
+
error_code: 'account_disconnected';
|
|
1966
|
+
} | {
|
|
1967
|
+
message: string;
|
|
1968
|
+
is_device_error: true;
|
|
1969
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1970
|
+
error_code: 'hub_disconnected';
|
|
1971
|
+
} | {
|
|
1972
|
+
message: string;
|
|
1973
|
+
is_device_error: true;
|
|
1974
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1975
|
+
error_code: 'device_disconnected';
|
|
1976
|
+
} | {
|
|
1977
|
+
message: string;
|
|
1978
|
+
is_device_error: true;
|
|
1979
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1980
|
+
error_code: 'empty_backup_access_code_pool';
|
|
1981
|
+
} | {
|
|
1982
|
+
message: string;
|
|
1983
|
+
is_device_error: true;
|
|
1984
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1985
|
+
error_code: 'august_lock_not_authorized';
|
|
1833
1986
|
} | {
|
|
1987
|
+
message: string;
|
|
1988
|
+
is_device_error: true;
|
|
1989
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1990
|
+
error_code: 'august_lock_missing_bridge';
|
|
1991
|
+
} | {
|
|
1992
|
+
message: string;
|
|
1993
|
+
is_device_error: true;
|
|
1994
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1995
|
+
error_code: 'salto_site_user_limit_reached';
|
|
1996
|
+
} | {
|
|
1997
|
+
message: string;
|
|
1998
|
+
is_device_error: true;
|
|
1999
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2000
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
2001
|
+
} | {
|
|
2002
|
+
message: string;
|
|
2003
|
+
is_device_error: true;
|
|
2004
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2005
|
+
error_code: 'missing_device_credentials';
|
|
2006
|
+
} | {
|
|
2007
|
+
message: string;
|
|
2008
|
+
is_device_error: true;
|
|
2009
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2010
|
+
error_code: 'auxiliary_heat_running';
|
|
2011
|
+
} | {
|
|
2012
|
+
message: string;
|
|
2013
|
+
is_device_error: true;
|
|
2014
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2015
|
+
error_code: 'subscription_required';
|
|
2016
|
+
}) | {
|
|
1834
2017
|
message: string;
|
|
1835
2018
|
is_connected_account_error: true;
|
|
1836
2019
|
error_code: string;
|
|
@@ -1901,11 +2084,72 @@ export interface Routes {
|
|
|
1901
2084
|
message: string;
|
|
1902
2085
|
is_access_code_error: true;
|
|
1903
2086
|
error_code: string;
|
|
2087
|
+
} | ({
|
|
2088
|
+
message: string;
|
|
2089
|
+
is_device_error: true;
|
|
2090
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2091
|
+
error_code: 'device_offline';
|
|
1904
2092
|
} | {
|
|
1905
2093
|
message: string;
|
|
1906
2094
|
is_device_error: true;
|
|
1907
|
-
|
|
2095
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2096
|
+
error_code: 'device_removed';
|
|
2097
|
+
} | {
|
|
2098
|
+
message: string;
|
|
2099
|
+
is_device_error: true;
|
|
2100
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2101
|
+
error_code: 'account_disconnected';
|
|
2102
|
+
} | {
|
|
2103
|
+
message: string;
|
|
2104
|
+
is_device_error: true;
|
|
2105
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2106
|
+
error_code: 'hub_disconnected';
|
|
2107
|
+
} | {
|
|
2108
|
+
message: string;
|
|
2109
|
+
is_device_error: true;
|
|
2110
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2111
|
+
error_code: 'device_disconnected';
|
|
2112
|
+
} | {
|
|
2113
|
+
message: string;
|
|
2114
|
+
is_device_error: true;
|
|
2115
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2116
|
+
error_code: 'empty_backup_access_code_pool';
|
|
2117
|
+
} | {
|
|
2118
|
+
message: string;
|
|
2119
|
+
is_device_error: true;
|
|
2120
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2121
|
+
error_code: 'august_lock_not_authorized';
|
|
2122
|
+
} | {
|
|
2123
|
+
message: string;
|
|
2124
|
+
is_device_error: true;
|
|
2125
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2126
|
+
error_code: 'august_lock_missing_bridge';
|
|
2127
|
+
} | {
|
|
2128
|
+
message: string;
|
|
2129
|
+
is_device_error: true;
|
|
2130
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2131
|
+
error_code: 'salto_site_user_limit_reached';
|
|
2132
|
+
} | {
|
|
2133
|
+
message: string;
|
|
2134
|
+
is_device_error: true;
|
|
2135
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2136
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
2137
|
+
} | {
|
|
2138
|
+
message: string;
|
|
2139
|
+
is_device_error: true;
|
|
2140
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2141
|
+
error_code: 'missing_device_credentials';
|
|
1908
2142
|
} | {
|
|
2143
|
+
message: string;
|
|
2144
|
+
is_device_error: true;
|
|
2145
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2146
|
+
error_code: 'auxiliary_heat_running';
|
|
2147
|
+
} | {
|
|
2148
|
+
message: string;
|
|
2149
|
+
is_device_error: true;
|
|
2150
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2151
|
+
error_code: 'subscription_required';
|
|
2152
|
+
}) | {
|
|
1909
2153
|
message: string;
|
|
1910
2154
|
is_connected_account_error: true;
|
|
1911
2155
|
error_code: string;
|
|
@@ -1974,11 +2218,72 @@ export interface Routes {
|
|
|
1974
2218
|
message: string;
|
|
1975
2219
|
is_access_code_error: true;
|
|
1976
2220
|
error_code: string;
|
|
2221
|
+
} | ({
|
|
2222
|
+
message: string;
|
|
2223
|
+
is_device_error: true;
|
|
2224
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2225
|
+
error_code: 'device_offline';
|
|
1977
2226
|
} | {
|
|
1978
2227
|
message: string;
|
|
1979
2228
|
is_device_error: true;
|
|
1980
|
-
|
|
2229
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2230
|
+
error_code: 'device_removed';
|
|
2231
|
+
} | {
|
|
2232
|
+
message: string;
|
|
2233
|
+
is_device_error: true;
|
|
2234
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2235
|
+
error_code: 'account_disconnected';
|
|
2236
|
+
} | {
|
|
2237
|
+
message: string;
|
|
2238
|
+
is_device_error: true;
|
|
2239
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2240
|
+
error_code: 'hub_disconnected';
|
|
2241
|
+
} | {
|
|
2242
|
+
message: string;
|
|
2243
|
+
is_device_error: true;
|
|
2244
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2245
|
+
error_code: 'device_disconnected';
|
|
2246
|
+
} | {
|
|
2247
|
+
message: string;
|
|
2248
|
+
is_device_error: true;
|
|
2249
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2250
|
+
error_code: 'empty_backup_access_code_pool';
|
|
2251
|
+
} | {
|
|
2252
|
+
message: string;
|
|
2253
|
+
is_device_error: true;
|
|
2254
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2255
|
+
error_code: 'august_lock_not_authorized';
|
|
2256
|
+
} | {
|
|
2257
|
+
message: string;
|
|
2258
|
+
is_device_error: true;
|
|
2259
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2260
|
+
error_code: 'august_lock_missing_bridge';
|
|
2261
|
+
} | {
|
|
2262
|
+
message: string;
|
|
2263
|
+
is_device_error: true;
|
|
2264
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2265
|
+
error_code: 'salto_site_user_limit_reached';
|
|
2266
|
+
} | {
|
|
2267
|
+
message: string;
|
|
2268
|
+
is_device_error: true;
|
|
2269
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2270
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
2271
|
+
} | {
|
|
2272
|
+
message: string;
|
|
2273
|
+
is_device_error: true;
|
|
2274
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2275
|
+
error_code: 'missing_device_credentials';
|
|
1981
2276
|
} | {
|
|
2277
|
+
message: string;
|
|
2278
|
+
is_device_error: true;
|
|
2279
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2280
|
+
error_code: 'auxiliary_heat_running';
|
|
2281
|
+
} | {
|
|
2282
|
+
message: string;
|
|
2283
|
+
is_device_error: true;
|
|
2284
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2285
|
+
error_code: 'subscription_required';
|
|
2286
|
+
}) | {
|
|
1982
2287
|
message: string;
|
|
1983
2288
|
is_connected_account_error: true;
|
|
1984
2289
|
error_code: string;
|
|
@@ -2035,11 +2340,72 @@ export interface Routes {
|
|
|
2035
2340
|
message: string;
|
|
2036
2341
|
is_access_code_error: true;
|
|
2037
2342
|
error_code: string;
|
|
2343
|
+
} | ({
|
|
2344
|
+
message: string;
|
|
2345
|
+
is_device_error: true;
|
|
2346
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2347
|
+
error_code: 'device_offline';
|
|
2038
2348
|
} | {
|
|
2039
2349
|
message: string;
|
|
2040
2350
|
is_device_error: true;
|
|
2041
|
-
|
|
2351
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2352
|
+
error_code: 'device_removed';
|
|
2353
|
+
} | {
|
|
2354
|
+
message: string;
|
|
2355
|
+
is_device_error: true;
|
|
2356
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2357
|
+
error_code: 'account_disconnected';
|
|
2358
|
+
} | {
|
|
2359
|
+
message: string;
|
|
2360
|
+
is_device_error: true;
|
|
2361
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2362
|
+
error_code: 'hub_disconnected';
|
|
2363
|
+
} | {
|
|
2364
|
+
message: string;
|
|
2365
|
+
is_device_error: true;
|
|
2366
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2367
|
+
error_code: 'device_disconnected';
|
|
2368
|
+
} | {
|
|
2369
|
+
message: string;
|
|
2370
|
+
is_device_error: true;
|
|
2371
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2372
|
+
error_code: 'empty_backup_access_code_pool';
|
|
2373
|
+
} | {
|
|
2374
|
+
message: string;
|
|
2375
|
+
is_device_error: true;
|
|
2376
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2377
|
+
error_code: 'august_lock_not_authorized';
|
|
2378
|
+
} | {
|
|
2379
|
+
message: string;
|
|
2380
|
+
is_device_error: true;
|
|
2381
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2382
|
+
error_code: 'august_lock_missing_bridge';
|
|
2042
2383
|
} | {
|
|
2384
|
+
message: string;
|
|
2385
|
+
is_device_error: true;
|
|
2386
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2387
|
+
error_code: 'salto_site_user_limit_reached';
|
|
2388
|
+
} | {
|
|
2389
|
+
message: string;
|
|
2390
|
+
is_device_error: true;
|
|
2391
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2392
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
2393
|
+
} | {
|
|
2394
|
+
message: string;
|
|
2395
|
+
is_device_error: true;
|
|
2396
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2397
|
+
error_code: 'missing_device_credentials';
|
|
2398
|
+
} | {
|
|
2399
|
+
message: string;
|
|
2400
|
+
is_device_error: true;
|
|
2401
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2402
|
+
error_code: 'auxiliary_heat_running';
|
|
2403
|
+
} | {
|
|
2404
|
+
message: string;
|
|
2405
|
+
is_device_error: true;
|
|
2406
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2407
|
+
error_code: 'subscription_required';
|
|
2408
|
+
}) | {
|
|
2043
2409
|
message: string;
|
|
2044
2410
|
is_connected_account_error: true;
|
|
2045
2411
|
error_code: string;
|
|
@@ -2104,11 +2470,72 @@ export interface Routes {
|
|
|
2104
2470
|
message: string;
|
|
2105
2471
|
is_access_code_error: true;
|
|
2106
2472
|
error_code: string;
|
|
2473
|
+
} | ({
|
|
2474
|
+
message: string;
|
|
2475
|
+
is_device_error: true;
|
|
2476
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2477
|
+
error_code: 'device_offline';
|
|
2107
2478
|
} | {
|
|
2108
2479
|
message: string;
|
|
2109
2480
|
is_device_error: true;
|
|
2110
|
-
|
|
2481
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2482
|
+
error_code: 'device_removed';
|
|
2483
|
+
} | {
|
|
2484
|
+
message: string;
|
|
2485
|
+
is_device_error: true;
|
|
2486
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2487
|
+
error_code: 'account_disconnected';
|
|
2111
2488
|
} | {
|
|
2489
|
+
message: string;
|
|
2490
|
+
is_device_error: true;
|
|
2491
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2492
|
+
error_code: 'hub_disconnected';
|
|
2493
|
+
} | {
|
|
2494
|
+
message: string;
|
|
2495
|
+
is_device_error: true;
|
|
2496
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2497
|
+
error_code: 'device_disconnected';
|
|
2498
|
+
} | {
|
|
2499
|
+
message: string;
|
|
2500
|
+
is_device_error: true;
|
|
2501
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2502
|
+
error_code: 'empty_backup_access_code_pool';
|
|
2503
|
+
} | {
|
|
2504
|
+
message: string;
|
|
2505
|
+
is_device_error: true;
|
|
2506
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2507
|
+
error_code: 'august_lock_not_authorized';
|
|
2508
|
+
} | {
|
|
2509
|
+
message: string;
|
|
2510
|
+
is_device_error: true;
|
|
2511
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2512
|
+
error_code: 'august_lock_missing_bridge';
|
|
2513
|
+
} | {
|
|
2514
|
+
message: string;
|
|
2515
|
+
is_device_error: true;
|
|
2516
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2517
|
+
error_code: 'salto_site_user_limit_reached';
|
|
2518
|
+
} | {
|
|
2519
|
+
message: string;
|
|
2520
|
+
is_device_error: true;
|
|
2521
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2522
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
2523
|
+
} | {
|
|
2524
|
+
message: string;
|
|
2525
|
+
is_device_error: true;
|
|
2526
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2527
|
+
error_code: 'missing_device_credentials';
|
|
2528
|
+
} | {
|
|
2529
|
+
message: string;
|
|
2530
|
+
is_device_error: true;
|
|
2531
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2532
|
+
error_code: 'auxiliary_heat_running';
|
|
2533
|
+
} | {
|
|
2534
|
+
message: string;
|
|
2535
|
+
is_device_error: true;
|
|
2536
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2537
|
+
error_code: 'subscription_required';
|
|
2538
|
+
}) | {
|
|
2112
2539
|
message: string;
|
|
2113
2540
|
is_connected_account_error: true;
|
|
2114
2541
|
error_code: string;
|
|
@@ -2975,13 +3402,74 @@ export interface Routes {
|
|
|
2975
3402
|
/** 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. */
|
|
2976
3403
|
errors: Array<{
|
|
2977
3404
|
message: string;
|
|
2978
|
-
is_access_code_error: true;
|
|
2979
|
-
error_code: string;
|
|
3405
|
+
is_access_code_error: true;
|
|
3406
|
+
error_code: string;
|
|
3407
|
+
} | ({
|
|
3408
|
+
message: string;
|
|
3409
|
+
is_device_error: true;
|
|
3410
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3411
|
+
error_code: 'device_offline';
|
|
3412
|
+
} | {
|
|
3413
|
+
message: string;
|
|
3414
|
+
is_device_error: true;
|
|
3415
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3416
|
+
error_code: 'device_removed';
|
|
3417
|
+
} | {
|
|
3418
|
+
message: string;
|
|
3419
|
+
is_device_error: true;
|
|
3420
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3421
|
+
error_code: 'account_disconnected';
|
|
3422
|
+
} | {
|
|
3423
|
+
message: string;
|
|
3424
|
+
is_device_error: true;
|
|
3425
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3426
|
+
error_code: 'hub_disconnected';
|
|
3427
|
+
} | {
|
|
3428
|
+
message: string;
|
|
3429
|
+
is_device_error: true;
|
|
3430
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3431
|
+
error_code: 'device_disconnected';
|
|
3432
|
+
} | {
|
|
3433
|
+
message: string;
|
|
3434
|
+
is_device_error: true;
|
|
3435
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3436
|
+
error_code: 'empty_backup_access_code_pool';
|
|
2980
3437
|
} | {
|
|
2981
3438
|
message: string;
|
|
2982
3439
|
is_device_error: true;
|
|
2983
|
-
|
|
3440
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3441
|
+
error_code: 'august_lock_not_authorized';
|
|
3442
|
+
} | {
|
|
3443
|
+
message: string;
|
|
3444
|
+
is_device_error: true;
|
|
3445
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3446
|
+
error_code: 'august_lock_missing_bridge';
|
|
3447
|
+
} | {
|
|
3448
|
+
message: string;
|
|
3449
|
+
is_device_error: true;
|
|
3450
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3451
|
+
error_code: 'salto_site_user_limit_reached';
|
|
3452
|
+
} | {
|
|
3453
|
+
message: string;
|
|
3454
|
+
is_device_error: true;
|
|
3455
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3456
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
3457
|
+
} | {
|
|
3458
|
+
message: string;
|
|
3459
|
+
is_device_error: true;
|
|
3460
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3461
|
+
error_code: 'missing_device_credentials';
|
|
3462
|
+
} | {
|
|
3463
|
+
message: string;
|
|
3464
|
+
is_device_error: true;
|
|
3465
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3466
|
+
error_code: 'auxiliary_heat_running';
|
|
2984
3467
|
} | {
|
|
3468
|
+
message: string;
|
|
3469
|
+
is_device_error: true;
|
|
3470
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3471
|
+
error_code: 'subscription_required';
|
|
3472
|
+
}) | {
|
|
2985
3473
|
message: string;
|
|
2986
3474
|
is_connected_account_error: true;
|
|
2987
3475
|
error_code: string;
|
|
@@ -3029,11 +3517,72 @@ export interface Routes {
|
|
|
3029
3517
|
message: string;
|
|
3030
3518
|
is_access_code_error: true;
|
|
3031
3519
|
error_code: string;
|
|
3520
|
+
} | ({
|
|
3521
|
+
message: string;
|
|
3522
|
+
is_device_error: true;
|
|
3523
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3524
|
+
error_code: 'device_offline';
|
|
3032
3525
|
} | {
|
|
3033
3526
|
message: string;
|
|
3034
3527
|
is_device_error: true;
|
|
3035
|
-
|
|
3528
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3529
|
+
error_code: 'device_removed';
|
|
3530
|
+
} | {
|
|
3531
|
+
message: string;
|
|
3532
|
+
is_device_error: true;
|
|
3533
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3534
|
+
error_code: 'account_disconnected';
|
|
3535
|
+
} | {
|
|
3536
|
+
message: string;
|
|
3537
|
+
is_device_error: true;
|
|
3538
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3539
|
+
error_code: 'hub_disconnected';
|
|
3540
|
+
} | {
|
|
3541
|
+
message: string;
|
|
3542
|
+
is_device_error: true;
|
|
3543
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3544
|
+
error_code: 'device_disconnected';
|
|
3545
|
+
} | {
|
|
3546
|
+
message: string;
|
|
3547
|
+
is_device_error: true;
|
|
3548
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3549
|
+
error_code: 'empty_backup_access_code_pool';
|
|
3550
|
+
} | {
|
|
3551
|
+
message: string;
|
|
3552
|
+
is_device_error: true;
|
|
3553
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3554
|
+
error_code: 'august_lock_not_authorized';
|
|
3555
|
+
} | {
|
|
3556
|
+
message: string;
|
|
3557
|
+
is_device_error: true;
|
|
3558
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3559
|
+
error_code: 'august_lock_missing_bridge';
|
|
3560
|
+
} | {
|
|
3561
|
+
message: string;
|
|
3562
|
+
is_device_error: true;
|
|
3563
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3564
|
+
error_code: 'salto_site_user_limit_reached';
|
|
3036
3565
|
} | {
|
|
3566
|
+
message: string;
|
|
3567
|
+
is_device_error: true;
|
|
3568
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3569
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
3570
|
+
} | {
|
|
3571
|
+
message: string;
|
|
3572
|
+
is_device_error: true;
|
|
3573
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3574
|
+
error_code: 'missing_device_credentials';
|
|
3575
|
+
} | {
|
|
3576
|
+
message: string;
|
|
3577
|
+
is_device_error: true;
|
|
3578
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3579
|
+
error_code: 'auxiliary_heat_running';
|
|
3580
|
+
} | {
|
|
3581
|
+
message: string;
|
|
3582
|
+
is_device_error: true;
|
|
3583
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3584
|
+
error_code: 'subscription_required';
|
|
3585
|
+
}) | {
|
|
3037
3586
|
message: string;
|
|
3038
3587
|
is_connected_account_error: true;
|
|
3039
3588
|
error_code: string;
|
|
@@ -11113,11 +11662,72 @@ export interface Routes {
|
|
|
11113
11662
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
11114
11663
|
workspace_id: string;
|
|
11115
11664
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
11116
|
-
errors: Array<{
|
|
11665
|
+
errors: Array<({
|
|
11117
11666
|
message: string;
|
|
11118
11667
|
is_device_error: true;
|
|
11119
|
-
|
|
11668
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11669
|
+
error_code: 'device_offline';
|
|
11670
|
+
} | {
|
|
11671
|
+
message: string;
|
|
11672
|
+
is_device_error: true;
|
|
11673
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11674
|
+
error_code: 'device_removed';
|
|
11675
|
+
} | {
|
|
11676
|
+
message: string;
|
|
11677
|
+
is_device_error: true;
|
|
11678
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11679
|
+
error_code: 'account_disconnected';
|
|
11680
|
+
} | {
|
|
11681
|
+
message: string;
|
|
11682
|
+
is_device_error: true;
|
|
11683
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11684
|
+
error_code: 'hub_disconnected';
|
|
11685
|
+
} | {
|
|
11686
|
+
message: string;
|
|
11687
|
+
is_device_error: true;
|
|
11688
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11689
|
+
error_code: 'device_disconnected';
|
|
11690
|
+
} | {
|
|
11691
|
+
message: string;
|
|
11692
|
+
is_device_error: true;
|
|
11693
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11694
|
+
error_code: 'empty_backup_access_code_pool';
|
|
11695
|
+
} | {
|
|
11696
|
+
message: string;
|
|
11697
|
+
is_device_error: true;
|
|
11698
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11699
|
+
error_code: 'august_lock_not_authorized';
|
|
11700
|
+
} | {
|
|
11701
|
+
message: string;
|
|
11702
|
+
is_device_error: true;
|
|
11703
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11704
|
+
error_code: 'august_lock_missing_bridge';
|
|
11705
|
+
} | {
|
|
11706
|
+
message: string;
|
|
11707
|
+
is_device_error: true;
|
|
11708
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11709
|
+
error_code: 'salto_site_user_limit_reached';
|
|
11710
|
+
} | {
|
|
11711
|
+
message: string;
|
|
11712
|
+
is_device_error: true;
|
|
11713
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11714
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
11715
|
+
} | {
|
|
11716
|
+
message: string;
|
|
11717
|
+
is_device_error: true;
|
|
11718
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11719
|
+
error_code: 'missing_device_credentials';
|
|
11720
|
+
} | {
|
|
11721
|
+
message: string;
|
|
11722
|
+
is_device_error: true;
|
|
11723
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11724
|
+
error_code: 'auxiliary_heat_running';
|
|
11120
11725
|
} | {
|
|
11726
|
+
message: string;
|
|
11727
|
+
is_device_error: true;
|
|
11728
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11729
|
+
error_code: 'subscription_required';
|
|
11730
|
+
}) | {
|
|
11121
11731
|
message: string;
|
|
11122
11732
|
is_connected_account_error: true;
|
|
11123
11733
|
error_code: string;
|
|
@@ -11670,11 +12280,72 @@ export interface Routes {
|
|
|
11670
12280
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
11671
12281
|
workspace_id: string;
|
|
11672
12282
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
11673
|
-
errors: Array<{
|
|
12283
|
+
errors: Array<({
|
|
11674
12284
|
message: string;
|
|
11675
12285
|
is_device_error: true;
|
|
11676
|
-
|
|
12286
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12287
|
+
error_code: 'device_offline';
|
|
12288
|
+
} | {
|
|
12289
|
+
message: string;
|
|
12290
|
+
is_device_error: true;
|
|
12291
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12292
|
+
error_code: 'device_removed';
|
|
12293
|
+
} | {
|
|
12294
|
+
message: string;
|
|
12295
|
+
is_device_error: true;
|
|
12296
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12297
|
+
error_code: 'account_disconnected';
|
|
12298
|
+
} | {
|
|
12299
|
+
message: string;
|
|
12300
|
+
is_device_error: true;
|
|
12301
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12302
|
+
error_code: 'hub_disconnected';
|
|
12303
|
+
} | {
|
|
12304
|
+
message: string;
|
|
12305
|
+
is_device_error: true;
|
|
12306
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12307
|
+
error_code: 'device_disconnected';
|
|
12308
|
+
} | {
|
|
12309
|
+
message: string;
|
|
12310
|
+
is_device_error: true;
|
|
12311
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12312
|
+
error_code: 'empty_backup_access_code_pool';
|
|
12313
|
+
} | {
|
|
12314
|
+
message: string;
|
|
12315
|
+
is_device_error: true;
|
|
12316
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12317
|
+
error_code: 'august_lock_not_authorized';
|
|
12318
|
+
} | {
|
|
12319
|
+
message: string;
|
|
12320
|
+
is_device_error: true;
|
|
12321
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12322
|
+
error_code: 'august_lock_missing_bridge';
|
|
12323
|
+
} | {
|
|
12324
|
+
message: string;
|
|
12325
|
+
is_device_error: true;
|
|
12326
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12327
|
+
error_code: 'salto_site_user_limit_reached';
|
|
12328
|
+
} | {
|
|
12329
|
+
message: string;
|
|
12330
|
+
is_device_error: true;
|
|
12331
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12332
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
12333
|
+
} | {
|
|
12334
|
+
message: string;
|
|
12335
|
+
is_device_error: true;
|
|
12336
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12337
|
+
error_code: 'missing_device_credentials';
|
|
12338
|
+
} | {
|
|
12339
|
+
message: string;
|
|
12340
|
+
is_device_error: true;
|
|
12341
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12342
|
+
error_code: 'auxiliary_heat_running';
|
|
11677
12343
|
} | {
|
|
12344
|
+
message: string;
|
|
12345
|
+
is_device_error: true;
|
|
12346
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12347
|
+
error_code: 'subscription_required';
|
|
12348
|
+
}) | {
|
|
11678
12349
|
message: string;
|
|
11679
12350
|
is_connected_account_error: true;
|
|
11680
12351
|
error_code: string;
|
|
@@ -11795,11 +12466,72 @@ export interface Routes {
|
|
|
11795
12466
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
11796
12467
|
workspace_id: string;
|
|
11797
12468
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
11798
|
-
errors: Array<{
|
|
12469
|
+
errors: Array<({
|
|
11799
12470
|
message: string;
|
|
11800
12471
|
is_device_error: true;
|
|
11801
|
-
|
|
12472
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12473
|
+
error_code: 'device_offline';
|
|
12474
|
+
} | {
|
|
12475
|
+
message: string;
|
|
12476
|
+
is_device_error: true;
|
|
12477
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12478
|
+
error_code: 'device_removed';
|
|
12479
|
+
} | {
|
|
12480
|
+
message: string;
|
|
12481
|
+
is_device_error: true;
|
|
12482
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12483
|
+
error_code: 'account_disconnected';
|
|
12484
|
+
} | {
|
|
12485
|
+
message: string;
|
|
12486
|
+
is_device_error: true;
|
|
12487
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12488
|
+
error_code: 'hub_disconnected';
|
|
12489
|
+
} | {
|
|
12490
|
+
message: string;
|
|
12491
|
+
is_device_error: true;
|
|
12492
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12493
|
+
error_code: 'device_disconnected';
|
|
12494
|
+
} | {
|
|
12495
|
+
message: string;
|
|
12496
|
+
is_device_error: true;
|
|
12497
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12498
|
+
error_code: 'empty_backup_access_code_pool';
|
|
12499
|
+
} | {
|
|
12500
|
+
message: string;
|
|
12501
|
+
is_device_error: true;
|
|
12502
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12503
|
+
error_code: 'august_lock_not_authorized';
|
|
12504
|
+
} | {
|
|
12505
|
+
message: string;
|
|
12506
|
+
is_device_error: true;
|
|
12507
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12508
|
+
error_code: 'august_lock_missing_bridge';
|
|
12509
|
+
} | {
|
|
12510
|
+
message: string;
|
|
12511
|
+
is_device_error: true;
|
|
12512
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12513
|
+
error_code: 'salto_site_user_limit_reached';
|
|
12514
|
+
} | {
|
|
12515
|
+
message: string;
|
|
12516
|
+
is_device_error: true;
|
|
12517
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12518
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
12519
|
+
} | {
|
|
12520
|
+
message: string;
|
|
12521
|
+
is_device_error: true;
|
|
12522
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12523
|
+
error_code: 'missing_device_credentials';
|
|
12524
|
+
} | {
|
|
12525
|
+
message: string;
|
|
12526
|
+
is_device_error: true;
|
|
12527
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12528
|
+
error_code: 'auxiliary_heat_running';
|
|
11802
12529
|
} | {
|
|
12530
|
+
message: string;
|
|
12531
|
+
is_device_error: true;
|
|
12532
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12533
|
+
error_code: 'subscription_required';
|
|
12534
|
+
}) | {
|
|
11803
12535
|
message: string;
|
|
11804
12536
|
is_connected_account_error: true;
|
|
11805
12537
|
error_code: string;
|
|
@@ -11930,11 +12662,72 @@ export interface Routes {
|
|
|
11930
12662
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
11931
12663
|
workspace_id: string;
|
|
11932
12664
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
11933
|
-
errors: Array<{
|
|
12665
|
+
errors: Array<({
|
|
12666
|
+
message: string;
|
|
12667
|
+
is_device_error: true;
|
|
12668
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12669
|
+
error_code: 'device_offline';
|
|
12670
|
+
} | {
|
|
12671
|
+
message: string;
|
|
12672
|
+
is_device_error: true;
|
|
12673
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12674
|
+
error_code: 'device_removed';
|
|
12675
|
+
} | {
|
|
12676
|
+
message: string;
|
|
12677
|
+
is_device_error: true;
|
|
12678
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12679
|
+
error_code: 'account_disconnected';
|
|
12680
|
+
} | {
|
|
12681
|
+
message: string;
|
|
12682
|
+
is_device_error: true;
|
|
12683
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12684
|
+
error_code: 'hub_disconnected';
|
|
12685
|
+
} | {
|
|
12686
|
+
message: string;
|
|
12687
|
+
is_device_error: true;
|
|
12688
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12689
|
+
error_code: 'device_disconnected';
|
|
12690
|
+
} | {
|
|
12691
|
+
message: string;
|
|
12692
|
+
is_device_error: true;
|
|
12693
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12694
|
+
error_code: 'empty_backup_access_code_pool';
|
|
12695
|
+
} | {
|
|
11934
12696
|
message: string;
|
|
11935
12697
|
is_device_error: true;
|
|
11936
|
-
|
|
12698
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12699
|
+
error_code: 'august_lock_not_authorized';
|
|
12700
|
+
} | {
|
|
12701
|
+
message: string;
|
|
12702
|
+
is_device_error: true;
|
|
12703
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12704
|
+
error_code: 'august_lock_missing_bridge';
|
|
12705
|
+
} | {
|
|
12706
|
+
message: string;
|
|
12707
|
+
is_device_error: true;
|
|
12708
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12709
|
+
error_code: 'salto_site_user_limit_reached';
|
|
12710
|
+
} | {
|
|
12711
|
+
message: string;
|
|
12712
|
+
is_device_error: true;
|
|
12713
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12714
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
11937
12715
|
} | {
|
|
12716
|
+
message: string;
|
|
12717
|
+
is_device_error: true;
|
|
12718
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12719
|
+
error_code: 'missing_device_credentials';
|
|
12720
|
+
} | {
|
|
12721
|
+
message: string;
|
|
12722
|
+
is_device_error: true;
|
|
12723
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12724
|
+
error_code: 'auxiliary_heat_running';
|
|
12725
|
+
} | {
|
|
12726
|
+
message: string;
|
|
12727
|
+
is_device_error: true;
|
|
12728
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12729
|
+
error_code: 'subscription_required';
|
|
12730
|
+
}) | {
|
|
11938
12731
|
message: string;
|
|
11939
12732
|
is_connected_account_error: true;
|
|
11940
12733
|
error_code: string;
|
|
@@ -12057,15 +12850,15 @@ export interface Routes {
|
|
|
12057
12850
|
event_id: string;
|
|
12058
12851
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12059
12852
|
workspace_id: string;
|
|
12060
|
-
/**
|
|
12853
|
+
/** Date and time at which the event was created. */
|
|
12061
12854
|
created_at: string;
|
|
12062
|
-
/**
|
|
12855
|
+
/** Date and time at which the event occurred. */
|
|
12063
12856
|
occurred_at: string;
|
|
12064
|
-
/**
|
|
12857
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12065
12858
|
access_code_id: string;
|
|
12066
|
-
/**
|
|
12859
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12067
12860
|
device_id: string;
|
|
12068
|
-
/**
|
|
12861
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12069
12862
|
connected_account_id: string;
|
|
12070
12863
|
event_type: 'access_code.created';
|
|
12071
12864
|
} | {
|
|
@@ -12073,15 +12866,15 @@ export interface Routes {
|
|
|
12073
12866
|
event_id: string;
|
|
12074
12867
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12075
12868
|
workspace_id: string;
|
|
12076
|
-
/**
|
|
12869
|
+
/** Date and time at which the event was created. */
|
|
12077
12870
|
created_at: string;
|
|
12078
|
-
/**
|
|
12871
|
+
/** Date and time at which the event occurred. */
|
|
12079
12872
|
occurred_at: string;
|
|
12080
|
-
/**
|
|
12873
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12081
12874
|
access_code_id: string;
|
|
12082
|
-
/**
|
|
12875
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12083
12876
|
device_id: string;
|
|
12084
|
-
/**
|
|
12877
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12085
12878
|
connected_account_id: string;
|
|
12086
12879
|
event_type: 'access_code.changed';
|
|
12087
12880
|
} | {
|
|
@@ -12089,51 +12882,51 @@ export interface Routes {
|
|
|
12089
12882
|
event_id: string;
|
|
12090
12883
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12091
12884
|
workspace_id: string;
|
|
12092
|
-
/**
|
|
12885
|
+
/** Date and time at which the event was created. */
|
|
12093
12886
|
created_at: string;
|
|
12094
|
-
/**
|
|
12887
|
+
/** Date and time at which the event occurred. */
|
|
12095
12888
|
occurred_at: string;
|
|
12096
|
-
/**
|
|
12889
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12097
12890
|
access_code_id: string;
|
|
12098
|
-
/**
|
|
12891
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12099
12892
|
device_id: string;
|
|
12100
|
-
/**
|
|
12893
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12101
12894
|
connected_account_id: string;
|
|
12102
12895
|
event_type: 'access_code.scheduled_on_device';
|
|
12103
|
-
/**
|
|
12896
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12104
12897
|
code: string;
|
|
12105
12898
|
} | {
|
|
12106
12899
|
/** ID of the event. */
|
|
12107
12900
|
event_id: string;
|
|
12108
12901
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12109
12902
|
workspace_id: string;
|
|
12110
|
-
/**
|
|
12903
|
+
/** Date and time at which the event was created. */
|
|
12111
12904
|
created_at: string;
|
|
12112
|
-
/**
|
|
12905
|
+
/** Date and time at which the event occurred. */
|
|
12113
12906
|
occurred_at: string;
|
|
12114
|
-
/**
|
|
12907
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12115
12908
|
access_code_id: string;
|
|
12116
|
-
/**
|
|
12909
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12117
12910
|
device_id: string;
|
|
12118
|
-
/**
|
|
12911
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12119
12912
|
connected_account_id: string;
|
|
12120
12913
|
event_type: 'access_code.set_on_device';
|
|
12121
|
-
/**
|
|
12914
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12122
12915
|
code: string;
|
|
12123
12916
|
} | {
|
|
12124
12917
|
/** ID of the event. */
|
|
12125
12918
|
event_id: string;
|
|
12126
12919
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12127
12920
|
workspace_id: string;
|
|
12128
|
-
/**
|
|
12921
|
+
/** Date and time at which the event was created. */
|
|
12129
12922
|
created_at: string;
|
|
12130
|
-
/**
|
|
12923
|
+
/** Date and time at which the event occurred. */
|
|
12131
12924
|
occurred_at: string;
|
|
12132
|
-
/**
|
|
12925
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12133
12926
|
access_code_id: string;
|
|
12134
|
-
/**
|
|
12927
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12135
12928
|
device_id: string;
|
|
12136
|
-
/**
|
|
12929
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12137
12930
|
connected_account_id: string;
|
|
12138
12931
|
event_type: 'access_code.removed_from_device';
|
|
12139
12932
|
} | {
|
|
@@ -12141,15 +12934,15 @@ export interface Routes {
|
|
|
12141
12934
|
event_id: string;
|
|
12142
12935
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12143
12936
|
workspace_id: string;
|
|
12144
|
-
/**
|
|
12937
|
+
/** Date and time at which the event was created. */
|
|
12145
12938
|
created_at: string;
|
|
12146
|
-
/**
|
|
12939
|
+
/** Date and time at which the event occurred. */
|
|
12147
12940
|
occurred_at: string;
|
|
12148
|
-
/**
|
|
12941
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12149
12942
|
access_code_id: string;
|
|
12150
|
-
/**
|
|
12943
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12151
12944
|
device_id: string;
|
|
12152
|
-
/**
|
|
12945
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12153
12946
|
connected_account_id: string;
|
|
12154
12947
|
event_type: 'access_code.delay_in_setting_on_device';
|
|
12155
12948
|
} | {
|
|
@@ -12157,15 +12950,15 @@ export interface Routes {
|
|
|
12157
12950
|
event_id: string;
|
|
12158
12951
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12159
12952
|
workspace_id: string;
|
|
12160
|
-
/**
|
|
12953
|
+
/** Date and time at which the event was created. */
|
|
12161
12954
|
created_at: string;
|
|
12162
|
-
/**
|
|
12955
|
+
/** Date and time at which the event occurred. */
|
|
12163
12956
|
occurred_at: string;
|
|
12164
|
-
/**
|
|
12957
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12165
12958
|
access_code_id: string;
|
|
12166
|
-
/**
|
|
12959
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12167
12960
|
device_id: string;
|
|
12168
|
-
/**
|
|
12961
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12169
12962
|
connected_account_id: string;
|
|
12170
12963
|
event_type: 'access_code.failed_to_set_on_device';
|
|
12171
12964
|
} | {
|
|
@@ -12173,33 +12966,33 @@ export interface Routes {
|
|
|
12173
12966
|
event_id: string;
|
|
12174
12967
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12175
12968
|
workspace_id: string;
|
|
12176
|
-
/**
|
|
12969
|
+
/** Date and time at which the event was created. */
|
|
12177
12970
|
created_at: string;
|
|
12178
|
-
/**
|
|
12971
|
+
/** Date and time at which the event occurred. */
|
|
12179
12972
|
occurred_at: string;
|
|
12180
|
-
/**
|
|
12973
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12181
12974
|
access_code_id: string;
|
|
12182
|
-
/**
|
|
12975
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12183
12976
|
device_id: string;
|
|
12184
|
-
/**
|
|
12977
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12185
12978
|
connected_account_id: string;
|
|
12186
12979
|
event_type: 'access_code.deleted';
|
|
12187
|
-
/**
|
|
12980
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12188
12981
|
code: string | null;
|
|
12189
12982
|
} | {
|
|
12190
12983
|
/** ID of the event. */
|
|
12191
12984
|
event_id: string;
|
|
12192
12985
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12193
12986
|
workspace_id: string;
|
|
12194
|
-
/**
|
|
12987
|
+
/** Date and time at which the event was created. */
|
|
12195
12988
|
created_at: string;
|
|
12196
|
-
/**
|
|
12989
|
+
/** Date and time at which the event occurred. */
|
|
12197
12990
|
occurred_at: string;
|
|
12198
|
-
/**
|
|
12991
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12199
12992
|
access_code_id: string;
|
|
12200
|
-
/**
|
|
12993
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12201
12994
|
device_id: string;
|
|
12202
|
-
/**
|
|
12995
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12203
12996
|
connected_account_id: string;
|
|
12204
12997
|
event_type: 'access_code.delay_in_removing_from_device';
|
|
12205
12998
|
} | {
|
|
@@ -12207,15 +13000,15 @@ export interface Routes {
|
|
|
12207
13000
|
event_id: string;
|
|
12208
13001
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12209
13002
|
workspace_id: string;
|
|
12210
|
-
/**
|
|
13003
|
+
/** Date and time at which the event was created. */
|
|
12211
13004
|
created_at: string;
|
|
12212
|
-
/**
|
|
13005
|
+
/** Date and time at which the event occurred. */
|
|
12213
13006
|
occurred_at: string;
|
|
12214
|
-
/**
|
|
13007
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12215
13008
|
access_code_id: string;
|
|
12216
|
-
/**
|
|
13009
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12217
13010
|
device_id: string;
|
|
12218
|
-
/**
|
|
13011
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12219
13012
|
connected_account_id: string;
|
|
12220
13013
|
event_type: 'access_code.failed_to_remove_from_device';
|
|
12221
13014
|
} | {
|
|
@@ -12223,15 +13016,15 @@ export interface Routes {
|
|
|
12223
13016
|
event_id: string;
|
|
12224
13017
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12225
13018
|
workspace_id: string;
|
|
12226
|
-
/**
|
|
13019
|
+
/** Date and time at which the event was created. */
|
|
12227
13020
|
created_at: string;
|
|
12228
|
-
/**
|
|
13021
|
+
/** Date and time at which the event occurred. */
|
|
12229
13022
|
occurred_at: string;
|
|
12230
|
-
/**
|
|
13023
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12231
13024
|
access_code_id: string;
|
|
12232
|
-
/**
|
|
13025
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12233
13026
|
device_id: string;
|
|
12234
|
-
/**
|
|
13027
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12235
13028
|
connected_account_id: string;
|
|
12236
13029
|
event_type: 'access_code.modified_external_to_seam';
|
|
12237
13030
|
} | {
|
|
@@ -12239,15 +13032,15 @@ export interface Routes {
|
|
|
12239
13032
|
event_id: string;
|
|
12240
13033
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12241
13034
|
workspace_id: string;
|
|
12242
|
-
/**
|
|
13035
|
+
/** Date and time at which the event was created. */
|
|
12243
13036
|
created_at: string;
|
|
12244
|
-
/**
|
|
13037
|
+
/** Date and time at which the event occurred. */
|
|
12245
13038
|
occurred_at: string;
|
|
12246
|
-
/**
|
|
13039
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12247
13040
|
access_code_id: string;
|
|
12248
|
-
/**
|
|
13041
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12249
13042
|
device_id: string;
|
|
12250
|
-
/**
|
|
13043
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12251
13044
|
connected_account_id: string;
|
|
12252
13045
|
event_type: 'access_code.deleted_external_to_seam';
|
|
12253
13046
|
} | {
|
|
@@ -12255,15 +13048,15 @@ export interface Routes {
|
|
|
12255
13048
|
event_id: string;
|
|
12256
13049
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12257
13050
|
workspace_id: string;
|
|
12258
|
-
/**
|
|
13051
|
+
/** Date and time at which the event was created. */
|
|
12259
13052
|
created_at: string;
|
|
12260
|
-
/**
|
|
13053
|
+
/** Date and time at which the event occurred. */
|
|
12261
13054
|
occurred_at: string;
|
|
12262
|
-
/**
|
|
13055
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12263
13056
|
access_code_id: string;
|
|
12264
|
-
/**
|
|
13057
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12265
13058
|
device_id: string;
|
|
12266
|
-
/**
|
|
13059
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12267
13060
|
connected_account_id: string;
|
|
12268
13061
|
event_type: 'access_code.backup_access_code_pulled';
|
|
12269
13062
|
backup_access_code_id: string;
|
|
@@ -12272,15 +13065,15 @@ export interface Routes {
|
|
|
12272
13065
|
event_id: string;
|
|
12273
13066
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12274
13067
|
workspace_id: string;
|
|
12275
|
-
/**
|
|
13068
|
+
/** Date and time at which the event was created. */
|
|
12276
13069
|
created_at: string;
|
|
12277
|
-
/**
|
|
13070
|
+
/** Date and time at which the event occurred. */
|
|
12278
13071
|
occurred_at: string;
|
|
12279
|
-
/**
|
|
13072
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12280
13073
|
access_code_id: string;
|
|
12281
|
-
/**
|
|
13074
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12282
13075
|
device_id: string;
|
|
12283
|
-
/**
|
|
13076
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12284
13077
|
connected_account_id: string;
|
|
12285
13078
|
event_type: 'access_code.unmanaged.converted_to_managed';
|
|
12286
13079
|
} | {
|
|
@@ -12288,15 +13081,15 @@ export interface Routes {
|
|
|
12288
13081
|
event_id: string;
|
|
12289
13082
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12290
13083
|
workspace_id: string;
|
|
12291
|
-
/**
|
|
13084
|
+
/** Date and time at which the event was created. */
|
|
12292
13085
|
created_at: string;
|
|
12293
|
-
/**
|
|
13086
|
+
/** Date and time at which the event occurred. */
|
|
12294
13087
|
occurred_at: string;
|
|
12295
|
-
/**
|
|
13088
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12296
13089
|
access_code_id: string;
|
|
12297
|
-
/**
|
|
13090
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12298
13091
|
device_id: string;
|
|
12299
|
-
/**
|
|
13092
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12300
13093
|
connected_account_id: string;
|
|
12301
13094
|
event_type: 'access_code.unmanaged.failed_to_convert_to_managed';
|
|
12302
13095
|
} | {
|
|
@@ -12304,15 +13097,15 @@ export interface Routes {
|
|
|
12304
13097
|
event_id: string;
|
|
12305
13098
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12306
13099
|
workspace_id: string;
|
|
12307
|
-
/**
|
|
13100
|
+
/** Date and time at which the event was created. */
|
|
12308
13101
|
created_at: string;
|
|
12309
|
-
/**
|
|
13102
|
+
/** Date and time at which the event occurred. */
|
|
12310
13103
|
occurred_at: string;
|
|
12311
|
-
/**
|
|
13104
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12312
13105
|
access_code_id: string;
|
|
12313
|
-
/**
|
|
13106
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12314
13107
|
device_id: string;
|
|
12315
|
-
/**
|
|
13108
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12316
13109
|
connected_account_id: string;
|
|
12317
13110
|
event_type: 'access_code.unmanaged.created';
|
|
12318
13111
|
} | {
|
|
@@ -12320,15 +13113,15 @@ export interface Routes {
|
|
|
12320
13113
|
event_id: string;
|
|
12321
13114
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12322
13115
|
workspace_id: string;
|
|
12323
|
-
/**
|
|
13116
|
+
/** Date and time at which the event was created. */
|
|
12324
13117
|
created_at: string;
|
|
12325
|
-
/**
|
|
13118
|
+
/** Date and time at which the event occurred. */
|
|
12326
13119
|
occurred_at: string;
|
|
12327
|
-
/**
|
|
13120
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
12328
13121
|
access_code_id: string;
|
|
12329
|
-
/**
|
|
13122
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
12330
13123
|
device_id: string;
|
|
12331
|
-
/**
|
|
13124
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12332
13125
|
connected_account_id: string;
|
|
12333
13126
|
event_type: 'access_code.unmanaged.removed';
|
|
12334
13127
|
} | {
|
|
@@ -12336,13 +13129,13 @@ export interface Routes {
|
|
|
12336
13129
|
event_id: string;
|
|
12337
13130
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12338
13131
|
workspace_id: string;
|
|
12339
|
-
/**
|
|
13132
|
+
/** Date and time at which the event was created. */
|
|
12340
13133
|
created_at: string;
|
|
12341
|
-
/**
|
|
13134
|
+
/** Date and time at which the event occurred. */
|
|
12342
13135
|
occurred_at: string;
|
|
12343
|
-
/** ID of the connected account. */
|
|
13136
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12344
13137
|
connected_account_id?: string | undefined;
|
|
12345
|
-
/** ID of the ACS system. */
|
|
13138
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
12346
13139
|
acs_system_id: string;
|
|
12347
13140
|
event_type: 'acs_system.connected';
|
|
12348
13141
|
} | {
|
|
@@ -12350,13 +13143,13 @@ export interface Routes {
|
|
|
12350
13143
|
event_id: string;
|
|
12351
13144
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12352
13145
|
workspace_id: string;
|
|
12353
|
-
/**
|
|
13146
|
+
/** Date and time at which the event was created. */
|
|
12354
13147
|
created_at: string;
|
|
12355
|
-
/**
|
|
13148
|
+
/** Date and time at which the event occurred. */
|
|
12356
13149
|
occurred_at: string;
|
|
12357
|
-
/** ID of the connected account. */
|
|
13150
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12358
13151
|
connected_account_id?: string | undefined;
|
|
12359
|
-
/** ID of the ACS system. */
|
|
13152
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
12360
13153
|
acs_system_id: string;
|
|
12361
13154
|
event_type: 'acs_system.added';
|
|
12362
13155
|
} | {
|
|
@@ -12364,13 +13157,13 @@ export interface Routes {
|
|
|
12364
13157
|
event_id: string;
|
|
12365
13158
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12366
13159
|
workspace_id: string;
|
|
12367
|
-
/**
|
|
13160
|
+
/** Date and time at which the event was created. */
|
|
12368
13161
|
created_at: string;
|
|
12369
|
-
/**
|
|
13162
|
+
/** Date and time at which the event occurred. */
|
|
12370
13163
|
occurred_at: string;
|
|
12371
|
-
/** ID of the connected account. */
|
|
13164
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12372
13165
|
connected_account_id?: string | undefined;
|
|
12373
|
-
/** ID of the ACS system. */
|
|
13166
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
12374
13167
|
acs_system_id: string;
|
|
12375
13168
|
event_type: 'acs_system.disconnected';
|
|
12376
13169
|
} | {
|
|
@@ -12378,13 +13171,13 @@ export interface Routes {
|
|
|
12378
13171
|
event_id: string;
|
|
12379
13172
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12380
13173
|
workspace_id: string;
|
|
12381
|
-
/**
|
|
13174
|
+
/** Date and time at which the event was created. */
|
|
12382
13175
|
created_at: string;
|
|
12383
|
-
/**
|
|
13176
|
+
/** Date and time at which the event occurred. */
|
|
12384
13177
|
occurred_at: string;
|
|
12385
|
-
/** ID of the connected account. */
|
|
13178
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12386
13179
|
connected_account_id?: string | undefined;
|
|
12387
|
-
/** ID of the ACS system. */
|
|
13180
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
12388
13181
|
acs_system_id: string;
|
|
12389
13182
|
acs_credential_id: string;
|
|
12390
13183
|
event_type: 'acs_credential.deleted';
|
|
@@ -12393,13 +13186,13 @@ export interface Routes {
|
|
|
12393
13186
|
event_id: string;
|
|
12394
13187
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12395
13188
|
workspace_id: string;
|
|
12396
|
-
/**
|
|
13189
|
+
/** Date and time at which the event was created. */
|
|
12397
13190
|
created_at: string;
|
|
12398
|
-
/**
|
|
13191
|
+
/** Date and time at which the event occurred. */
|
|
12399
13192
|
occurred_at: string;
|
|
12400
|
-
/** ID of the connected account. */
|
|
13193
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12401
13194
|
connected_account_id?: string | undefined;
|
|
12402
|
-
/** ID of the ACS system. */
|
|
13195
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
12403
13196
|
acs_system_id: string;
|
|
12404
13197
|
acs_credential_id: string;
|
|
12405
13198
|
event_type: 'acs_credential.issued';
|
|
@@ -12408,13 +13201,13 @@ export interface Routes {
|
|
|
12408
13201
|
event_id: string;
|
|
12409
13202
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12410
13203
|
workspace_id: string;
|
|
12411
|
-
/**
|
|
13204
|
+
/** Date and time at which the event was created. */
|
|
12412
13205
|
created_at: string;
|
|
12413
|
-
/**
|
|
13206
|
+
/** Date and time at which the event occurred. */
|
|
12414
13207
|
occurred_at: string;
|
|
12415
|
-
/** ID of the connected account. */
|
|
13208
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12416
13209
|
connected_account_id?: string | undefined;
|
|
12417
|
-
/** ID of the ACS system. */
|
|
13210
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
12418
13211
|
acs_system_id: string;
|
|
12419
13212
|
acs_user_id: string;
|
|
12420
13213
|
event_type: 'acs_user.deleted';
|
|
@@ -12423,15 +13216,15 @@ export interface Routes {
|
|
|
12423
13216
|
event_id: string;
|
|
12424
13217
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12425
13218
|
workspace_id: string;
|
|
12426
|
-
/**
|
|
13219
|
+
/** Date and time at which the event was created. */
|
|
12427
13220
|
created_at: string;
|
|
12428
|
-
/**
|
|
13221
|
+
/** Date and time at which the event occurred. */
|
|
12429
13222
|
occurred_at: string;
|
|
12430
|
-
/** ID of the connected account. */
|
|
13223
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12431
13224
|
connected_account_id?: string | undefined;
|
|
12432
|
-
/** ID of the ACS system. */
|
|
13225
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
12433
13226
|
acs_system_id: string;
|
|
12434
|
-
/** ID of the ACS encoder. */
|
|
13227
|
+
/** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
12435
13228
|
acs_encoder_id: string;
|
|
12436
13229
|
event_type: 'acs_encoder.added';
|
|
12437
13230
|
} | {
|
|
@@ -12439,15 +13232,15 @@ export interface Routes {
|
|
|
12439
13232
|
event_id: string;
|
|
12440
13233
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12441
13234
|
workspace_id: string;
|
|
12442
|
-
/**
|
|
13235
|
+
/** Date and time at which the event was created. */
|
|
12443
13236
|
created_at: string;
|
|
12444
|
-
/**
|
|
13237
|
+
/** Date and time at which the event occurred. */
|
|
12445
13238
|
occurred_at: string;
|
|
12446
|
-
/** ID of the connected account. */
|
|
13239
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12447
13240
|
connected_account_id?: string | undefined;
|
|
12448
|
-
/** ID of the ACS system. */
|
|
13241
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
12449
13242
|
acs_system_id: string;
|
|
12450
|
-
/** ID of the ACS encoder. */
|
|
13243
|
+
/** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
12451
13244
|
acs_encoder_id: string;
|
|
12452
13245
|
event_type: 'acs_encoder.removed';
|
|
12453
13246
|
} | {
|
|
@@ -12455,11 +13248,11 @@ export interface Routes {
|
|
|
12455
13248
|
event_id: string;
|
|
12456
13249
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12457
13250
|
workspace_id: string;
|
|
12458
|
-
/**
|
|
13251
|
+
/** Date and time at which the event was created. */
|
|
12459
13252
|
created_at: string;
|
|
12460
|
-
/**
|
|
13253
|
+
/** Date and time at which the event occurred. */
|
|
12461
13254
|
occurred_at: string;
|
|
12462
|
-
/** ID of the client session. */
|
|
13255
|
+
/** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
12463
13256
|
client_session_id: string;
|
|
12464
13257
|
event_type: 'client_session.deleted';
|
|
12465
13258
|
} | {
|
|
@@ -12467,53 +13260,53 @@ export interface Routes {
|
|
|
12467
13260
|
event_id: string;
|
|
12468
13261
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12469
13262
|
workspace_id: string;
|
|
12470
|
-
/**
|
|
13263
|
+
/** Date and time at which the event was created. */
|
|
12471
13264
|
created_at: string;
|
|
12472
|
-
/**
|
|
13265
|
+
/** Date and time at which the event occurred. */
|
|
12473
13266
|
occurred_at: string;
|
|
12474
|
-
/** ID of the connected account. */
|
|
13267
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12475
13268
|
connected_account_id: string;
|
|
12476
13269
|
event_type: 'connected_account.connected';
|
|
12477
|
-
/** ID of the
|
|
13270
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
12478
13271
|
connect_webview_id: string;
|
|
12479
13272
|
} | {
|
|
12480
13273
|
/** ID of the event. */
|
|
12481
13274
|
event_id: string;
|
|
12482
13275
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12483
13276
|
workspace_id: string;
|
|
12484
|
-
/**
|
|
13277
|
+
/** Date and time at which the event was created. */
|
|
12485
13278
|
created_at: string;
|
|
12486
|
-
/**
|
|
13279
|
+
/** Date and time at which the event occurred. */
|
|
12487
13280
|
occurred_at: string;
|
|
12488
|
-
/** ID of the connected account. */
|
|
13281
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12489
13282
|
connected_account_id: string;
|
|
12490
13283
|
event_type: 'connected_account.created';
|
|
12491
|
-
/** ID of the
|
|
13284
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
12492
13285
|
connect_webview_id: string;
|
|
12493
13286
|
} | {
|
|
12494
13287
|
/** ID of the event. */
|
|
12495
13288
|
event_id: string;
|
|
12496
13289
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12497
13290
|
workspace_id: string;
|
|
12498
|
-
/**
|
|
13291
|
+
/** Date and time at which the event was created. */
|
|
12499
13292
|
created_at: string;
|
|
12500
|
-
/**
|
|
13293
|
+
/** Date and time at which the event occurred. */
|
|
12501
13294
|
occurred_at: string;
|
|
12502
|
-
/** ID of the connected account. */
|
|
13295
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12503
13296
|
connected_account_id: string;
|
|
12504
13297
|
event_type: 'connected_account.successful_login';
|
|
12505
|
-
/** ID of the
|
|
13298
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
12506
13299
|
connect_webview_id: string;
|
|
12507
13300
|
} | {
|
|
12508
13301
|
/** ID of the event. */
|
|
12509
13302
|
event_id: string;
|
|
12510
13303
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12511
13304
|
workspace_id: string;
|
|
12512
|
-
/**
|
|
13305
|
+
/** Date and time at which the event was created. */
|
|
12513
13306
|
created_at: string;
|
|
12514
|
-
/**
|
|
13307
|
+
/** Date and time at which the event occurred. */
|
|
12515
13308
|
occurred_at: string;
|
|
12516
|
-
/** ID of the connected account. */
|
|
13309
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12517
13310
|
connected_account_id: string;
|
|
12518
13311
|
event_type: 'connected_account.disconnected';
|
|
12519
13312
|
} | {
|
|
@@ -12521,11 +13314,11 @@ export interface Routes {
|
|
|
12521
13314
|
event_id: string;
|
|
12522
13315
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12523
13316
|
workspace_id: string;
|
|
12524
|
-
/**
|
|
13317
|
+
/** Date and time at which the event was created. */
|
|
12525
13318
|
created_at: string;
|
|
12526
|
-
/**
|
|
13319
|
+
/** Date and time at which the event occurred. */
|
|
12527
13320
|
occurred_at: string;
|
|
12528
|
-
/** ID of the connected account. */
|
|
13321
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12529
13322
|
connected_account_id: string;
|
|
12530
13323
|
event_type: 'connected_account.completed_first_sync';
|
|
12531
13324
|
} | {
|
|
@@ -12533,11 +13326,11 @@ export interface Routes {
|
|
|
12533
13326
|
event_id: string;
|
|
12534
13327
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12535
13328
|
workspace_id: string;
|
|
12536
|
-
/**
|
|
13329
|
+
/** Date and time at which the event was created. */
|
|
12537
13330
|
created_at: string;
|
|
12538
|
-
/**
|
|
13331
|
+
/** Date and time at which the event occurred. */
|
|
12539
13332
|
occurred_at: string;
|
|
12540
|
-
/** ID of the connected account. */
|
|
13333
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12541
13334
|
connected_account_id: string;
|
|
12542
13335
|
event_type: 'connected_account.deleted';
|
|
12543
13336
|
} | {
|
|
@@ -12545,11 +13338,11 @@ export interface Routes {
|
|
|
12545
13338
|
event_id: string;
|
|
12546
13339
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12547
13340
|
workspace_id: string;
|
|
12548
|
-
/**
|
|
13341
|
+
/** Date and time at which the event was created. */
|
|
12549
13342
|
created_at: string;
|
|
12550
|
-
/**
|
|
13343
|
+
/** Date and time at which the event occurred. */
|
|
12551
13344
|
occurred_at: string;
|
|
12552
|
-
/** ID of the connected account. */
|
|
13345
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12553
13346
|
connected_account_id: string;
|
|
12554
13347
|
event_type: 'connected_account.completed_first_sync_after_reconnection';
|
|
12555
13348
|
} | {
|
|
@@ -12557,15 +13350,15 @@ export interface Routes {
|
|
|
12557
13350
|
event_id: string;
|
|
12558
13351
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12559
13352
|
workspace_id: string;
|
|
12560
|
-
/**
|
|
13353
|
+
/** Date and time at which the event was created. */
|
|
12561
13354
|
created_at: string;
|
|
12562
|
-
/**
|
|
13355
|
+
/** Date and time at which the event occurred. */
|
|
12563
13356
|
occurred_at: string;
|
|
12564
|
-
/**
|
|
13357
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
12565
13358
|
action_attempt_id: string;
|
|
12566
|
-
/**
|
|
13359
|
+
/** Type of action. */
|
|
12567
13360
|
action_type: string;
|
|
12568
|
-
/**
|
|
13361
|
+
/** Status of the action. */
|
|
12569
13362
|
status: string;
|
|
12570
13363
|
event_type: 'action_attempt.lock_door.succeeded';
|
|
12571
13364
|
} | {
|
|
@@ -12573,15 +13366,15 @@ export interface Routes {
|
|
|
12573
13366
|
event_id: string;
|
|
12574
13367
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12575
13368
|
workspace_id: string;
|
|
12576
|
-
/**
|
|
13369
|
+
/** Date and time at which the event was created. */
|
|
12577
13370
|
created_at: string;
|
|
12578
|
-
/**
|
|
13371
|
+
/** Date and time at which the event occurred. */
|
|
12579
13372
|
occurred_at: string;
|
|
12580
|
-
/**
|
|
13373
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
12581
13374
|
action_attempt_id: string;
|
|
12582
|
-
/**
|
|
13375
|
+
/** Type of action. */
|
|
12583
13376
|
action_type: string;
|
|
12584
|
-
/**
|
|
13377
|
+
/** Status of the action. */
|
|
12585
13378
|
status: string;
|
|
12586
13379
|
event_type: 'action_attempt.lock_door.failed';
|
|
12587
13380
|
} | {
|
|
@@ -12589,15 +13382,15 @@ export interface Routes {
|
|
|
12589
13382
|
event_id: string;
|
|
12590
13383
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12591
13384
|
workspace_id: string;
|
|
12592
|
-
/**
|
|
13385
|
+
/** Date and time at which the event was created. */
|
|
12593
13386
|
created_at: string;
|
|
12594
|
-
/**
|
|
13387
|
+
/** Date and time at which the event occurred. */
|
|
12595
13388
|
occurred_at: string;
|
|
12596
|
-
/**
|
|
13389
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
12597
13390
|
action_attempt_id: string;
|
|
12598
|
-
/**
|
|
13391
|
+
/** Type of action. */
|
|
12599
13392
|
action_type: string;
|
|
12600
|
-
/**
|
|
13393
|
+
/** Status of the action. */
|
|
12601
13394
|
status: string;
|
|
12602
13395
|
event_type: 'action_attempt.unlock_door.succeeded';
|
|
12603
13396
|
} | {
|
|
@@ -12605,15 +13398,15 @@ export interface Routes {
|
|
|
12605
13398
|
event_id: string;
|
|
12606
13399
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12607
13400
|
workspace_id: string;
|
|
12608
|
-
/**
|
|
13401
|
+
/** Date and time at which the event was created. */
|
|
12609
13402
|
created_at: string;
|
|
12610
|
-
/**
|
|
13403
|
+
/** Date and time at which the event occurred. */
|
|
12611
13404
|
occurred_at: string;
|
|
12612
|
-
/**
|
|
13405
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
12613
13406
|
action_attempt_id: string;
|
|
12614
|
-
/**
|
|
13407
|
+
/** Type of action. */
|
|
12615
13408
|
action_type: string;
|
|
12616
|
-
/**
|
|
13409
|
+
/** Status of the action. */
|
|
12617
13410
|
status: string;
|
|
12618
13411
|
event_type: 'action_attempt.unlock_door.failed';
|
|
12619
13412
|
} | {
|
|
@@ -12621,25 +13414,25 @@ export interface Routes {
|
|
|
12621
13414
|
event_id: string;
|
|
12622
13415
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12623
13416
|
workspace_id: string;
|
|
12624
|
-
/**
|
|
13417
|
+
/** Date and time at which the event was created. */
|
|
12625
13418
|
created_at: string;
|
|
12626
|
-
/**
|
|
13419
|
+
/** Date and time at which the event occurred. */
|
|
12627
13420
|
occurred_at: string;
|
|
12628
|
-
/** ID of the
|
|
13421
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
12629
13422
|
connect_webview_id: string;
|
|
12630
13423
|
event_type: 'connect_webview.login_succeeded';
|
|
12631
|
-
/** ID of the connected account. */
|
|
13424
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
12632
13425
|
connected_account_id: string;
|
|
12633
13426
|
} | {
|
|
12634
13427
|
/** ID of the event. */
|
|
12635
13428
|
event_id: string;
|
|
12636
13429
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12637
13430
|
workspace_id: string;
|
|
12638
|
-
/**
|
|
13431
|
+
/** Date and time at which the event was created. */
|
|
12639
13432
|
created_at: string;
|
|
12640
|
-
/**
|
|
13433
|
+
/** Date and time at which the event occurred. */
|
|
12641
13434
|
occurred_at: string;
|
|
12642
|
-
/** ID of the
|
|
13435
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
12643
13436
|
connect_webview_id: string;
|
|
12644
13437
|
event_type: 'connect_webview.login_failed';
|
|
12645
13438
|
} | {
|
|
@@ -12647,9 +13440,9 @@ export interface Routes {
|
|
|
12647
13440
|
event_id: string;
|
|
12648
13441
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12649
13442
|
workspace_id: string;
|
|
12650
|
-
/**
|
|
13443
|
+
/** Date and time at which the event was created. */
|
|
12651
13444
|
created_at: string;
|
|
12652
|
-
/**
|
|
13445
|
+
/** Date and time at which the event occurred. */
|
|
12653
13446
|
occurred_at: string;
|
|
12654
13447
|
/** ID of the device. */
|
|
12655
13448
|
device_id: string;
|
|
@@ -12661,9 +13454,9 @@ export interface Routes {
|
|
|
12661
13454
|
event_id: string;
|
|
12662
13455
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12663
13456
|
workspace_id: string;
|
|
12664
|
-
/**
|
|
13457
|
+
/** Date and time at which the event was created. */
|
|
12665
13458
|
created_at: string;
|
|
12666
|
-
/**
|
|
13459
|
+
/** Date and time at which the event occurred. */
|
|
12667
13460
|
occurred_at: string;
|
|
12668
13461
|
/** ID of the device. */
|
|
12669
13462
|
device_id: string;
|
|
@@ -12675,9 +13468,9 @@ export interface Routes {
|
|
|
12675
13468
|
event_id: string;
|
|
12676
13469
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12677
13470
|
workspace_id: string;
|
|
12678
|
-
/**
|
|
13471
|
+
/** Date and time at which the event was created. */
|
|
12679
13472
|
created_at: string;
|
|
12680
|
-
/**
|
|
13473
|
+
/** Date and time at which the event occurred. */
|
|
12681
13474
|
occurred_at: string;
|
|
12682
13475
|
/** ID of the device. */
|
|
12683
13476
|
device_id: string;
|
|
@@ -12689,9 +13482,9 @@ export interface Routes {
|
|
|
12689
13482
|
event_id: string;
|
|
12690
13483
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12691
13484
|
workspace_id: string;
|
|
12692
|
-
/**
|
|
13485
|
+
/** Date and time at which the event was created. */
|
|
12693
13486
|
created_at: string;
|
|
12694
|
-
/**
|
|
13487
|
+
/** Date and time at which the event occurred. */
|
|
12695
13488
|
occurred_at: string;
|
|
12696
13489
|
/** ID of the device. */
|
|
12697
13490
|
device_id: string;
|
|
@@ -12703,9 +13496,9 @@ export interface Routes {
|
|
|
12703
13496
|
event_id: string;
|
|
12704
13497
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12705
13498
|
workspace_id: string;
|
|
12706
|
-
/**
|
|
13499
|
+
/** Date and time at which the event was created. */
|
|
12707
13500
|
created_at: string;
|
|
12708
|
-
/**
|
|
13501
|
+
/** Date and time at which the event occurred. */
|
|
12709
13502
|
occurred_at: string;
|
|
12710
13503
|
/** ID of the device. */
|
|
12711
13504
|
device_id: string;
|
|
@@ -12717,9 +13510,9 @@ export interface Routes {
|
|
|
12717
13510
|
event_id: string;
|
|
12718
13511
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12719
13512
|
workspace_id: string;
|
|
12720
|
-
/**
|
|
13513
|
+
/** Date and time at which the event was created. */
|
|
12721
13514
|
created_at: string;
|
|
12722
|
-
/**
|
|
13515
|
+
/** Date and time at which the event occurred. */
|
|
12723
13516
|
occurred_at: string;
|
|
12724
13517
|
/** ID of the device. */
|
|
12725
13518
|
device_id: string;
|
|
@@ -12733,9 +13526,9 @@ export interface Routes {
|
|
|
12733
13526
|
event_id: string;
|
|
12734
13527
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12735
13528
|
workspace_id: string;
|
|
12736
|
-
/**
|
|
13529
|
+
/** Date and time at which the event was created. */
|
|
12737
13530
|
created_at: string;
|
|
12738
|
-
/**
|
|
13531
|
+
/** Date and time at which the event occurred. */
|
|
12739
13532
|
occurred_at: string;
|
|
12740
13533
|
/** ID of the device. */
|
|
12741
13534
|
device_id: string;
|
|
@@ -12749,9 +13542,9 @@ export interface Routes {
|
|
|
12749
13542
|
event_id: string;
|
|
12750
13543
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12751
13544
|
workspace_id: string;
|
|
12752
|
-
/**
|
|
13545
|
+
/** Date and time at which the event was created. */
|
|
12753
13546
|
created_at: string;
|
|
12754
|
-
/**
|
|
13547
|
+
/** Date and time at which the event occurred. */
|
|
12755
13548
|
occurred_at: string;
|
|
12756
13549
|
/** ID of the device. */
|
|
12757
13550
|
device_id: string;
|
|
@@ -12763,9 +13556,9 @@ export interface Routes {
|
|
|
12763
13556
|
event_id: string;
|
|
12764
13557
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12765
13558
|
workspace_id: string;
|
|
12766
|
-
/**
|
|
13559
|
+
/** Date and time at which the event was created. */
|
|
12767
13560
|
created_at: string;
|
|
12768
|
-
/**
|
|
13561
|
+
/** Date and time at which the event occurred. */
|
|
12769
13562
|
occurred_at: string;
|
|
12770
13563
|
/** ID of the device. */
|
|
12771
13564
|
device_id: string;
|
|
@@ -12779,9 +13572,9 @@ export interface Routes {
|
|
|
12779
13572
|
event_id: string;
|
|
12780
13573
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12781
13574
|
workspace_id: string;
|
|
12782
|
-
/**
|
|
13575
|
+
/** Date and time at which the event was created. */
|
|
12783
13576
|
created_at: string;
|
|
12784
|
-
/**
|
|
13577
|
+
/** Date and time at which the event occurred. */
|
|
12785
13578
|
occurred_at: string;
|
|
12786
13579
|
/** ID of the device. */
|
|
12787
13580
|
device_id: string;
|
|
@@ -12797,9 +13590,9 @@ export interface Routes {
|
|
|
12797
13590
|
event_id: string;
|
|
12798
13591
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12799
13592
|
workspace_id: string;
|
|
12800
|
-
/**
|
|
13593
|
+
/** Date and time at which the event was created. */
|
|
12801
13594
|
created_at: string;
|
|
12802
|
-
/**
|
|
13595
|
+
/** Date and time at which the event occurred. */
|
|
12803
13596
|
occurred_at: string;
|
|
12804
13597
|
/** ID of the device. */
|
|
12805
13598
|
device_id: string;
|
|
@@ -12811,9 +13604,9 @@ export interface Routes {
|
|
|
12811
13604
|
event_id: string;
|
|
12812
13605
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12813
13606
|
workspace_id: string;
|
|
12814
|
-
/**
|
|
13607
|
+
/** Date and time at which the event was created. */
|
|
12815
13608
|
created_at: string;
|
|
12816
|
-
/**
|
|
13609
|
+
/** Date and time at which the event occurred. */
|
|
12817
13610
|
occurred_at: string;
|
|
12818
13611
|
/** ID of the device. */
|
|
12819
13612
|
device_id: string;
|
|
@@ -12825,9 +13618,9 @@ export interface Routes {
|
|
|
12825
13618
|
event_id: string;
|
|
12826
13619
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12827
13620
|
workspace_id: string;
|
|
12828
|
-
/**
|
|
13621
|
+
/** Date and time at which the event was created. */
|
|
12829
13622
|
created_at: string;
|
|
12830
|
-
/**
|
|
13623
|
+
/** Date and time at which the event occurred. */
|
|
12831
13624
|
occurred_at: string;
|
|
12832
13625
|
/** ID of the device. */
|
|
12833
13626
|
device_id: string;
|
|
@@ -12839,9 +13632,9 @@ export interface Routes {
|
|
|
12839
13632
|
event_id: string;
|
|
12840
13633
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12841
13634
|
workspace_id: string;
|
|
12842
|
-
/**
|
|
13635
|
+
/** Date and time at which the event was created. */
|
|
12843
13636
|
created_at: string;
|
|
12844
|
-
/**
|
|
13637
|
+
/** Date and time at which the event occurred. */
|
|
12845
13638
|
occurred_at: string;
|
|
12846
13639
|
/** ID of the device. */
|
|
12847
13640
|
device_id: string;
|
|
@@ -12853,9 +13646,9 @@ export interface Routes {
|
|
|
12853
13646
|
event_id: string;
|
|
12854
13647
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12855
13648
|
workspace_id: string;
|
|
12856
|
-
/**
|
|
13649
|
+
/** Date and time at which the event was created. */
|
|
12857
13650
|
created_at: string;
|
|
12858
|
-
/**
|
|
13651
|
+
/** Date and time at which the event occurred. */
|
|
12859
13652
|
occurred_at: string;
|
|
12860
13653
|
/** ID of the device. */
|
|
12861
13654
|
device_id: string;
|
|
@@ -12867,9 +13660,9 @@ export interface Routes {
|
|
|
12867
13660
|
event_id: string;
|
|
12868
13661
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12869
13662
|
workspace_id: string;
|
|
12870
|
-
/**
|
|
13663
|
+
/** Date and time at which the event was created. */
|
|
12871
13664
|
created_at: string;
|
|
12872
|
-
/**
|
|
13665
|
+
/** Date and time at which the event occurred. */
|
|
12873
13666
|
occurred_at: string;
|
|
12874
13667
|
/** ID of the device. */
|
|
12875
13668
|
device_id: string;
|
|
@@ -12881,9 +13674,9 @@ export interface Routes {
|
|
|
12881
13674
|
event_id: string;
|
|
12882
13675
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12883
13676
|
workspace_id: string;
|
|
12884
|
-
/**
|
|
13677
|
+
/** Date and time at which the event was created. */
|
|
12885
13678
|
created_at: string;
|
|
12886
|
-
/**
|
|
13679
|
+
/** Date and time at which the event occurred. */
|
|
12887
13680
|
occurred_at: string;
|
|
12888
13681
|
/** ID of the device. */
|
|
12889
13682
|
device_id: string;
|
|
@@ -12895,9 +13688,9 @@ export interface Routes {
|
|
|
12895
13688
|
event_id: string;
|
|
12896
13689
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12897
13690
|
workspace_id: string;
|
|
12898
|
-
/**
|
|
13691
|
+
/** Date and time at which the event was created. */
|
|
12899
13692
|
created_at: string;
|
|
12900
|
-
/**
|
|
13693
|
+
/** Date and time at which the event occurred. */
|
|
12901
13694
|
occurred_at: string;
|
|
12902
13695
|
/** ID of the device. */
|
|
12903
13696
|
device_id: string;
|
|
@@ -12909,9 +13702,9 @@ export interface Routes {
|
|
|
12909
13702
|
event_id: string;
|
|
12910
13703
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12911
13704
|
workspace_id: string;
|
|
12912
|
-
/**
|
|
13705
|
+
/** Date and time at which the event was created. */
|
|
12913
13706
|
created_at: string;
|
|
12914
|
-
/**
|
|
13707
|
+
/** Date and time at which the event occurred. */
|
|
12915
13708
|
occurred_at: string;
|
|
12916
13709
|
/** ID of the device. */
|
|
12917
13710
|
device_id: string;
|
|
@@ -12923,9 +13716,9 @@ export interface Routes {
|
|
|
12923
13716
|
event_id: string;
|
|
12924
13717
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12925
13718
|
workspace_id: string;
|
|
12926
|
-
/**
|
|
13719
|
+
/** Date and time at which the event was created. */
|
|
12927
13720
|
created_at: string;
|
|
12928
|
-
/**
|
|
13721
|
+
/** Date and time at which the event occurred. */
|
|
12929
13722
|
occurred_at: string;
|
|
12930
13723
|
/** ID of the device. */
|
|
12931
13724
|
device_id: string;
|
|
@@ -12937,9 +13730,9 @@ export interface Routes {
|
|
|
12937
13730
|
event_id: string;
|
|
12938
13731
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12939
13732
|
workspace_id: string;
|
|
12940
|
-
/**
|
|
13733
|
+
/** Date and time at which the event was created. */
|
|
12941
13734
|
created_at: string;
|
|
12942
|
-
/**
|
|
13735
|
+
/** Date and time at which the event occurred. */
|
|
12943
13736
|
occurred_at: string;
|
|
12944
13737
|
/** ID of the device. */
|
|
12945
13738
|
device_id: string;
|
|
@@ -12951,9 +13744,9 @@ export interface Routes {
|
|
|
12951
13744
|
event_id: string;
|
|
12952
13745
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12953
13746
|
workspace_id: string;
|
|
12954
|
-
/**
|
|
13747
|
+
/** Date and time at which the event was created. */
|
|
12955
13748
|
created_at: string;
|
|
12956
|
-
/**
|
|
13749
|
+
/** Date and time at which the event occurred. */
|
|
12957
13750
|
occurred_at: string;
|
|
12958
13751
|
/** ID of the device. */
|
|
12959
13752
|
device_id: string;
|
|
@@ -12965,9 +13758,9 @@ export interface Routes {
|
|
|
12965
13758
|
event_id: string;
|
|
12966
13759
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12967
13760
|
workspace_id: string;
|
|
12968
|
-
/**
|
|
13761
|
+
/** Date and time at which the event was created. */
|
|
12969
13762
|
created_at: string;
|
|
12970
|
-
/**
|
|
13763
|
+
/** Date and time at which the event occurred. */
|
|
12971
13764
|
occurred_at: string;
|
|
12972
13765
|
/** ID of the device. */
|
|
12973
13766
|
device_id: string;
|
|
@@ -12991,9 +13784,9 @@ export interface Routes {
|
|
|
12991
13784
|
event_id: string;
|
|
12992
13785
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
12993
13786
|
workspace_id: string;
|
|
12994
|
-
/**
|
|
13787
|
+
/** Date and time at which the event was created. */
|
|
12995
13788
|
created_at: string;
|
|
12996
|
-
/**
|
|
13789
|
+
/** Date and time at which the event occurred. */
|
|
12997
13790
|
occurred_at: string;
|
|
12998
13791
|
/** ID of the device. */
|
|
12999
13792
|
device_id: string;
|
|
@@ -13004,16 +13797,16 @@ export interface Routes {
|
|
|
13004
13797
|
access_code_id?: string | undefined;
|
|
13005
13798
|
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
|
|
13006
13799
|
action_attempt_id?: string | undefined;
|
|
13007
|
-
/** Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
13800
|
+
/** Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
13008
13801
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
13009
13802
|
} | {
|
|
13010
13803
|
/** ID of the event. */
|
|
13011
13804
|
event_id: string;
|
|
13012
13805
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13013
13806
|
workspace_id: string;
|
|
13014
|
-
/**
|
|
13807
|
+
/** Date and time at which the event was created. */
|
|
13015
13808
|
created_at: string;
|
|
13016
|
-
/**
|
|
13809
|
+
/** Date and time at which the event occurred. */
|
|
13017
13810
|
occurred_at: string;
|
|
13018
13811
|
/** ID of the device. */
|
|
13019
13812
|
device_id: string;
|
|
@@ -13024,16 +13817,16 @@ export interface Routes {
|
|
|
13024
13817
|
access_code_id?: string | undefined;
|
|
13025
13818
|
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
|
|
13026
13819
|
action_attempt_id?: string | undefined;
|
|
13027
|
-
/** Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
13820
|
+
/** Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
13028
13821
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
13029
13822
|
} | {
|
|
13030
13823
|
/** ID of the event. */
|
|
13031
13824
|
event_id: string;
|
|
13032
13825
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13033
13826
|
workspace_id: string;
|
|
13034
|
-
/**
|
|
13827
|
+
/** Date and time at which the event was created. */
|
|
13035
13828
|
created_at: string;
|
|
13036
|
-
/**
|
|
13829
|
+
/** Date and time at which the event occurred. */
|
|
13037
13830
|
occurred_at: string;
|
|
13038
13831
|
/** ID of the device. */
|
|
13039
13832
|
device_id: string;
|
|
@@ -13047,9 +13840,9 @@ export interface Routes {
|
|
|
13047
13840
|
event_id: string;
|
|
13048
13841
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13049
13842
|
workspace_id: string;
|
|
13050
|
-
/**
|
|
13843
|
+
/** Date and time at which the event was created. */
|
|
13051
13844
|
created_at: string;
|
|
13052
|
-
/**
|
|
13845
|
+
/** Date and time at which the event occurred. */
|
|
13053
13846
|
occurred_at: string;
|
|
13054
13847
|
/** ID of the device. */
|
|
13055
13848
|
device_id: string;
|
|
@@ -13060,23 +13853,23 @@ export interface Routes {
|
|
|
13060
13853
|
thermostat_schedule_id: string | null;
|
|
13061
13854
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
|
|
13062
13855
|
climate_preset_key: string;
|
|
13063
|
-
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
13856
|
+
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
13064
13857
|
is_fallback_climate_preset: boolean;
|
|
13065
13858
|
} | {
|
|
13066
13859
|
/** ID of the event. */
|
|
13067
13860
|
event_id: string;
|
|
13068
13861
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13069
13862
|
workspace_id: string;
|
|
13070
|
-
/**
|
|
13863
|
+
/** Date and time at which the event was created. */
|
|
13071
13864
|
created_at: string;
|
|
13072
|
-
/**
|
|
13865
|
+
/** Date and time at which the event occurred. */
|
|
13073
13866
|
occurred_at: string;
|
|
13074
13867
|
/** ID of the device. */
|
|
13075
13868
|
device_id: string;
|
|
13076
13869
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13077
13870
|
connected_account_id: string;
|
|
13078
13871
|
event_type: 'thermostat.manually_adjusted';
|
|
13079
|
-
/** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
|
|
13872
|
+
/** Method used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
13080
13873
|
method: 'seam' | 'external';
|
|
13081
13874
|
/** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
|
|
13082
13875
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
@@ -13095,18 +13888,18 @@ export interface Routes {
|
|
|
13095
13888
|
event_id: string;
|
|
13096
13889
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13097
13890
|
workspace_id: string;
|
|
13098
|
-
/**
|
|
13891
|
+
/** Date and time at which the event was created. */
|
|
13099
13892
|
created_at: string;
|
|
13100
|
-
/**
|
|
13893
|
+
/** Date and time at which the event occurred. */
|
|
13101
13894
|
occurred_at: string;
|
|
13102
13895
|
/** ID of the device. */
|
|
13103
13896
|
device_id: string;
|
|
13104
13897
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13105
13898
|
connected_account_id: string;
|
|
13106
13899
|
event_type: 'thermostat.temperature_threshold_exceeded';
|
|
13107
|
-
/** Temperature, in °C, reported by the thermostat. */
|
|
13900
|
+
/** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
13108
13901
|
temperature_celsius: number;
|
|
13109
|
-
/** Temperature, in °F, reported by the thermostat. */
|
|
13902
|
+
/** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
13110
13903
|
temperature_fahrenheit: number;
|
|
13111
13904
|
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
13112
13905
|
upper_limit_celsius: number | null;
|
|
@@ -13121,18 +13914,18 @@ export interface Routes {
|
|
|
13121
13914
|
event_id: string;
|
|
13122
13915
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13123
13916
|
workspace_id: string;
|
|
13124
|
-
/**
|
|
13917
|
+
/** Date and time at which the event was created. */
|
|
13125
13918
|
created_at: string;
|
|
13126
|
-
/**
|
|
13919
|
+
/** Date and time at which the event occurred. */
|
|
13127
13920
|
occurred_at: string;
|
|
13128
13921
|
/** ID of the device. */
|
|
13129
13922
|
device_id: string;
|
|
13130
13923
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13131
13924
|
connected_account_id: string;
|
|
13132
13925
|
event_type: 'thermostat.temperature_threshold_no_longer_exceeded';
|
|
13133
|
-
/** Temperature, in °C, reported by the thermostat. */
|
|
13926
|
+
/** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
13134
13927
|
temperature_celsius: number;
|
|
13135
|
-
/** Temperature, in °F, reported by the thermostat. */
|
|
13928
|
+
/** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
13136
13929
|
temperature_fahrenheit: number;
|
|
13137
13930
|
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
13138
13931
|
upper_limit_celsius: number | null;
|
|
@@ -13147,11 +13940,11 @@ export interface Routes {
|
|
|
13147
13940
|
event_id: string;
|
|
13148
13941
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13149
13942
|
workspace_id: string;
|
|
13150
|
-
/**
|
|
13943
|
+
/** Date and time at which the event was created. */
|
|
13151
13944
|
created_at: string;
|
|
13152
|
-
/**
|
|
13945
|
+
/** Date and time at which the event occurred. */
|
|
13153
13946
|
occurred_at: string;
|
|
13154
|
-
/** ID of the enrollment automation. */
|
|
13947
|
+
/** ID of the [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut). */
|
|
13155
13948
|
enrollment_automation_id: string;
|
|
13156
13949
|
event_type: 'enrollment_automation.deleted';
|
|
13157
13950
|
} | {
|
|
@@ -13159,11 +13952,11 @@ export interface Routes {
|
|
|
13159
13952
|
event_id: string;
|
|
13160
13953
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13161
13954
|
workspace_id: string;
|
|
13162
|
-
/**
|
|
13955
|
+
/** Date and time at which the event was created. */
|
|
13163
13956
|
created_at: string;
|
|
13164
|
-
/**
|
|
13957
|
+
/** Date and time at which the event occurred. */
|
|
13165
13958
|
occurred_at: string;
|
|
13166
|
-
/** ID of the device. */
|
|
13959
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13167
13960
|
device_id: string;
|
|
13168
13961
|
event_type: 'phone.deactivated';
|
|
13169
13962
|
}) | undefined;
|
|
@@ -13198,15 +13991,15 @@ export interface Routes {
|
|
|
13198
13991
|
event_id: string;
|
|
13199
13992
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13200
13993
|
workspace_id: string;
|
|
13201
|
-
/**
|
|
13994
|
+
/** Date and time at which the event was created. */
|
|
13202
13995
|
created_at: string;
|
|
13203
|
-
/**
|
|
13996
|
+
/** Date and time at which the event occurred. */
|
|
13204
13997
|
occurred_at: string;
|
|
13205
|
-
/**
|
|
13998
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13206
13999
|
access_code_id: string;
|
|
13207
|
-
/**
|
|
14000
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13208
14001
|
device_id: string;
|
|
13209
|
-
/**
|
|
14002
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13210
14003
|
connected_account_id: string;
|
|
13211
14004
|
event_type: 'access_code.created';
|
|
13212
14005
|
} | {
|
|
@@ -13214,15 +14007,15 @@ export interface Routes {
|
|
|
13214
14007
|
event_id: string;
|
|
13215
14008
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13216
14009
|
workspace_id: string;
|
|
13217
|
-
/**
|
|
14010
|
+
/** Date and time at which the event was created. */
|
|
13218
14011
|
created_at: string;
|
|
13219
|
-
/**
|
|
14012
|
+
/** Date and time at which the event occurred. */
|
|
13220
14013
|
occurred_at: string;
|
|
13221
|
-
/**
|
|
14014
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13222
14015
|
access_code_id: string;
|
|
13223
|
-
/**
|
|
14016
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13224
14017
|
device_id: string;
|
|
13225
|
-
/**
|
|
14018
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13226
14019
|
connected_account_id: string;
|
|
13227
14020
|
event_type: 'access_code.changed';
|
|
13228
14021
|
} | {
|
|
@@ -13230,51 +14023,51 @@ export interface Routes {
|
|
|
13230
14023
|
event_id: string;
|
|
13231
14024
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13232
14025
|
workspace_id: string;
|
|
13233
|
-
/**
|
|
14026
|
+
/** Date and time at which the event was created. */
|
|
13234
14027
|
created_at: string;
|
|
13235
|
-
/**
|
|
14028
|
+
/** Date and time at which the event occurred. */
|
|
13236
14029
|
occurred_at: string;
|
|
13237
|
-
/**
|
|
14030
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13238
14031
|
access_code_id: string;
|
|
13239
|
-
/**
|
|
14032
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13240
14033
|
device_id: string;
|
|
13241
|
-
/**
|
|
14034
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13242
14035
|
connected_account_id: string;
|
|
13243
14036
|
event_type: 'access_code.scheduled_on_device';
|
|
13244
|
-
/**
|
|
14037
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13245
14038
|
code: string;
|
|
13246
14039
|
} | {
|
|
13247
14040
|
/** ID of the event. */
|
|
13248
14041
|
event_id: string;
|
|
13249
14042
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13250
14043
|
workspace_id: string;
|
|
13251
|
-
/**
|
|
14044
|
+
/** Date and time at which the event was created. */
|
|
13252
14045
|
created_at: string;
|
|
13253
|
-
/**
|
|
14046
|
+
/** Date and time at which the event occurred. */
|
|
13254
14047
|
occurred_at: string;
|
|
13255
|
-
/**
|
|
14048
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13256
14049
|
access_code_id: string;
|
|
13257
|
-
/**
|
|
14050
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13258
14051
|
device_id: string;
|
|
13259
|
-
/**
|
|
14052
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13260
14053
|
connected_account_id: string;
|
|
13261
14054
|
event_type: 'access_code.set_on_device';
|
|
13262
|
-
/**
|
|
14055
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13263
14056
|
code: string;
|
|
13264
14057
|
} | {
|
|
13265
14058
|
/** ID of the event. */
|
|
13266
14059
|
event_id: string;
|
|
13267
14060
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13268
14061
|
workspace_id: string;
|
|
13269
|
-
/**
|
|
14062
|
+
/** Date and time at which the event was created. */
|
|
13270
14063
|
created_at: string;
|
|
13271
|
-
/**
|
|
14064
|
+
/** Date and time at which the event occurred. */
|
|
13272
14065
|
occurred_at: string;
|
|
13273
|
-
/**
|
|
14066
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13274
14067
|
access_code_id: string;
|
|
13275
|
-
/**
|
|
14068
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13276
14069
|
device_id: string;
|
|
13277
|
-
/**
|
|
14070
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13278
14071
|
connected_account_id: string;
|
|
13279
14072
|
event_type: 'access_code.removed_from_device';
|
|
13280
14073
|
} | {
|
|
@@ -13282,15 +14075,15 @@ export interface Routes {
|
|
|
13282
14075
|
event_id: string;
|
|
13283
14076
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13284
14077
|
workspace_id: string;
|
|
13285
|
-
/**
|
|
14078
|
+
/** Date and time at which the event was created. */
|
|
13286
14079
|
created_at: string;
|
|
13287
|
-
/**
|
|
14080
|
+
/** Date and time at which the event occurred. */
|
|
13288
14081
|
occurred_at: string;
|
|
13289
|
-
/**
|
|
14082
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13290
14083
|
access_code_id: string;
|
|
13291
|
-
/**
|
|
14084
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13292
14085
|
device_id: string;
|
|
13293
|
-
/**
|
|
14086
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13294
14087
|
connected_account_id: string;
|
|
13295
14088
|
event_type: 'access_code.delay_in_setting_on_device';
|
|
13296
14089
|
} | {
|
|
@@ -13298,15 +14091,15 @@ export interface Routes {
|
|
|
13298
14091
|
event_id: string;
|
|
13299
14092
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13300
14093
|
workspace_id: string;
|
|
13301
|
-
/**
|
|
14094
|
+
/** Date and time at which the event was created. */
|
|
13302
14095
|
created_at: string;
|
|
13303
|
-
/**
|
|
14096
|
+
/** Date and time at which the event occurred. */
|
|
13304
14097
|
occurred_at: string;
|
|
13305
|
-
/**
|
|
14098
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13306
14099
|
access_code_id: string;
|
|
13307
|
-
/**
|
|
14100
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13308
14101
|
device_id: string;
|
|
13309
|
-
/**
|
|
14102
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13310
14103
|
connected_account_id: string;
|
|
13311
14104
|
event_type: 'access_code.failed_to_set_on_device';
|
|
13312
14105
|
} | {
|
|
@@ -13314,33 +14107,33 @@ export interface Routes {
|
|
|
13314
14107
|
event_id: string;
|
|
13315
14108
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13316
14109
|
workspace_id: string;
|
|
13317
|
-
/**
|
|
14110
|
+
/** Date and time at which the event was created. */
|
|
13318
14111
|
created_at: string;
|
|
13319
|
-
/**
|
|
14112
|
+
/** Date and time at which the event occurred. */
|
|
13320
14113
|
occurred_at: string;
|
|
13321
|
-
/**
|
|
14114
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13322
14115
|
access_code_id: string;
|
|
13323
|
-
/**
|
|
14116
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13324
14117
|
device_id: string;
|
|
13325
|
-
/**
|
|
14118
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13326
14119
|
connected_account_id: string;
|
|
13327
14120
|
event_type: 'access_code.deleted';
|
|
13328
|
-
/**
|
|
14121
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13329
14122
|
code: string | null;
|
|
13330
14123
|
} | {
|
|
13331
14124
|
/** ID of the event. */
|
|
13332
14125
|
event_id: string;
|
|
13333
14126
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13334
14127
|
workspace_id: string;
|
|
13335
|
-
/**
|
|
14128
|
+
/** Date and time at which the event was created. */
|
|
13336
14129
|
created_at: string;
|
|
13337
|
-
/**
|
|
14130
|
+
/** Date and time at which the event occurred. */
|
|
13338
14131
|
occurred_at: string;
|
|
13339
|
-
/**
|
|
14132
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13340
14133
|
access_code_id: string;
|
|
13341
|
-
/**
|
|
14134
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13342
14135
|
device_id: string;
|
|
13343
|
-
/**
|
|
14136
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13344
14137
|
connected_account_id: string;
|
|
13345
14138
|
event_type: 'access_code.delay_in_removing_from_device';
|
|
13346
14139
|
} | {
|
|
@@ -13348,15 +14141,15 @@ export interface Routes {
|
|
|
13348
14141
|
event_id: string;
|
|
13349
14142
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13350
14143
|
workspace_id: string;
|
|
13351
|
-
/**
|
|
14144
|
+
/** Date and time at which the event was created. */
|
|
13352
14145
|
created_at: string;
|
|
13353
|
-
/**
|
|
14146
|
+
/** Date and time at which the event occurred. */
|
|
13354
14147
|
occurred_at: string;
|
|
13355
|
-
/**
|
|
14148
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13356
14149
|
access_code_id: string;
|
|
13357
|
-
/**
|
|
14150
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13358
14151
|
device_id: string;
|
|
13359
|
-
/**
|
|
14152
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13360
14153
|
connected_account_id: string;
|
|
13361
14154
|
event_type: 'access_code.failed_to_remove_from_device';
|
|
13362
14155
|
} | {
|
|
@@ -13364,15 +14157,15 @@ export interface Routes {
|
|
|
13364
14157
|
event_id: string;
|
|
13365
14158
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13366
14159
|
workspace_id: string;
|
|
13367
|
-
/**
|
|
14160
|
+
/** Date and time at which the event was created. */
|
|
13368
14161
|
created_at: string;
|
|
13369
|
-
/**
|
|
14162
|
+
/** Date and time at which the event occurred. */
|
|
13370
14163
|
occurred_at: string;
|
|
13371
|
-
/**
|
|
14164
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13372
14165
|
access_code_id: string;
|
|
13373
|
-
/**
|
|
14166
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13374
14167
|
device_id: string;
|
|
13375
|
-
/**
|
|
14168
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13376
14169
|
connected_account_id: string;
|
|
13377
14170
|
event_type: 'access_code.modified_external_to_seam';
|
|
13378
14171
|
} | {
|
|
@@ -13380,15 +14173,15 @@ export interface Routes {
|
|
|
13380
14173
|
event_id: string;
|
|
13381
14174
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13382
14175
|
workspace_id: string;
|
|
13383
|
-
/**
|
|
14176
|
+
/** Date and time at which the event was created. */
|
|
13384
14177
|
created_at: string;
|
|
13385
|
-
/**
|
|
14178
|
+
/** Date and time at which the event occurred. */
|
|
13386
14179
|
occurred_at: string;
|
|
13387
|
-
/**
|
|
14180
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13388
14181
|
access_code_id: string;
|
|
13389
|
-
/**
|
|
14182
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13390
14183
|
device_id: string;
|
|
13391
|
-
/**
|
|
14184
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13392
14185
|
connected_account_id: string;
|
|
13393
14186
|
event_type: 'access_code.deleted_external_to_seam';
|
|
13394
14187
|
} | {
|
|
@@ -13396,15 +14189,15 @@ export interface Routes {
|
|
|
13396
14189
|
event_id: string;
|
|
13397
14190
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13398
14191
|
workspace_id: string;
|
|
13399
|
-
/**
|
|
14192
|
+
/** Date and time at which the event was created. */
|
|
13400
14193
|
created_at: string;
|
|
13401
|
-
/**
|
|
14194
|
+
/** Date and time at which the event occurred. */
|
|
13402
14195
|
occurred_at: string;
|
|
13403
|
-
/**
|
|
14196
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13404
14197
|
access_code_id: string;
|
|
13405
|
-
/**
|
|
14198
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13406
14199
|
device_id: string;
|
|
13407
|
-
/**
|
|
14200
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13408
14201
|
connected_account_id: string;
|
|
13409
14202
|
event_type: 'access_code.backup_access_code_pulled';
|
|
13410
14203
|
backup_access_code_id: string;
|
|
@@ -13413,15 +14206,15 @@ export interface Routes {
|
|
|
13413
14206
|
event_id: string;
|
|
13414
14207
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13415
14208
|
workspace_id: string;
|
|
13416
|
-
/**
|
|
14209
|
+
/** Date and time at which the event was created. */
|
|
13417
14210
|
created_at: string;
|
|
13418
|
-
/**
|
|
14211
|
+
/** Date and time at which the event occurred. */
|
|
13419
14212
|
occurred_at: string;
|
|
13420
|
-
/**
|
|
14213
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13421
14214
|
access_code_id: string;
|
|
13422
|
-
/**
|
|
14215
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13423
14216
|
device_id: string;
|
|
13424
|
-
/**
|
|
14217
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13425
14218
|
connected_account_id: string;
|
|
13426
14219
|
event_type: 'access_code.unmanaged.converted_to_managed';
|
|
13427
14220
|
} | {
|
|
@@ -13429,15 +14222,15 @@ export interface Routes {
|
|
|
13429
14222
|
event_id: string;
|
|
13430
14223
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13431
14224
|
workspace_id: string;
|
|
13432
|
-
/**
|
|
14225
|
+
/** Date and time at which the event was created. */
|
|
13433
14226
|
created_at: string;
|
|
13434
|
-
/**
|
|
14227
|
+
/** Date and time at which the event occurred. */
|
|
13435
14228
|
occurred_at: string;
|
|
13436
|
-
/**
|
|
14229
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13437
14230
|
access_code_id: string;
|
|
13438
|
-
/**
|
|
14231
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13439
14232
|
device_id: string;
|
|
13440
|
-
/**
|
|
14233
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13441
14234
|
connected_account_id: string;
|
|
13442
14235
|
event_type: 'access_code.unmanaged.failed_to_convert_to_managed';
|
|
13443
14236
|
} | {
|
|
@@ -13445,15 +14238,15 @@ export interface Routes {
|
|
|
13445
14238
|
event_id: string;
|
|
13446
14239
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13447
14240
|
workspace_id: string;
|
|
13448
|
-
/**
|
|
14241
|
+
/** Date and time at which the event was created. */
|
|
13449
14242
|
created_at: string;
|
|
13450
|
-
/**
|
|
14243
|
+
/** Date and time at which the event occurred. */
|
|
13451
14244
|
occurred_at: string;
|
|
13452
|
-
/**
|
|
14245
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13453
14246
|
access_code_id: string;
|
|
13454
|
-
/**
|
|
14247
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13455
14248
|
device_id: string;
|
|
13456
|
-
/**
|
|
14249
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13457
14250
|
connected_account_id: string;
|
|
13458
14251
|
event_type: 'access_code.unmanaged.created';
|
|
13459
14252
|
} | {
|
|
@@ -13461,15 +14254,15 @@ export interface Routes {
|
|
|
13461
14254
|
event_id: string;
|
|
13462
14255
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13463
14256
|
workspace_id: string;
|
|
13464
|
-
/**
|
|
14257
|
+
/** Date and time at which the event was created. */
|
|
13465
14258
|
created_at: string;
|
|
13466
|
-
/**
|
|
14259
|
+
/** Date and time at which the event occurred. */
|
|
13467
14260
|
occurred_at: string;
|
|
13468
|
-
/**
|
|
14261
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
13469
14262
|
access_code_id: string;
|
|
13470
|
-
/**
|
|
14263
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
13471
14264
|
device_id: string;
|
|
13472
|
-
/**
|
|
14265
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13473
14266
|
connected_account_id: string;
|
|
13474
14267
|
event_type: 'access_code.unmanaged.removed';
|
|
13475
14268
|
} | {
|
|
@@ -13477,13 +14270,13 @@ export interface Routes {
|
|
|
13477
14270
|
event_id: string;
|
|
13478
14271
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13479
14272
|
workspace_id: string;
|
|
13480
|
-
/**
|
|
14273
|
+
/** Date and time at which the event was created. */
|
|
13481
14274
|
created_at: string;
|
|
13482
|
-
/**
|
|
14275
|
+
/** Date and time at which the event occurred. */
|
|
13483
14276
|
occurred_at: string;
|
|
13484
|
-
/** ID of the connected account. */
|
|
14277
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13485
14278
|
connected_account_id?: string | undefined;
|
|
13486
|
-
/** ID of the ACS system. */
|
|
14279
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13487
14280
|
acs_system_id: string;
|
|
13488
14281
|
event_type: 'acs_system.connected';
|
|
13489
14282
|
} | {
|
|
@@ -13491,13 +14284,13 @@ export interface Routes {
|
|
|
13491
14284
|
event_id: string;
|
|
13492
14285
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13493
14286
|
workspace_id: string;
|
|
13494
|
-
/**
|
|
14287
|
+
/** Date and time at which the event was created. */
|
|
13495
14288
|
created_at: string;
|
|
13496
|
-
/**
|
|
14289
|
+
/** Date and time at which the event occurred. */
|
|
13497
14290
|
occurred_at: string;
|
|
13498
|
-
/** ID of the connected account. */
|
|
14291
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13499
14292
|
connected_account_id?: string | undefined;
|
|
13500
|
-
/** ID of the ACS system. */
|
|
14293
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13501
14294
|
acs_system_id: string;
|
|
13502
14295
|
event_type: 'acs_system.added';
|
|
13503
14296
|
} | {
|
|
@@ -13505,13 +14298,13 @@ export interface Routes {
|
|
|
13505
14298
|
event_id: string;
|
|
13506
14299
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13507
14300
|
workspace_id: string;
|
|
13508
|
-
/**
|
|
14301
|
+
/** Date and time at which the event was created. */
|
|
13509
14302
|
created_at: string;
|
|
13510
|
-
/**
|
|
14303
|
+
/** Date and time at which the event occurred. */
|
|
13511
14304
|
occurred_at: string;
|
|
13512
|
-
/** ID of the connected account. */
|
|
14305
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13513
14306
|
connected_account_id?: string | undefined;
|
|
13514
|
-
/** ID of the ACS system. */
|
|
14307
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13515
14308
|
acs_system_id: string;
|
|
13516
14309
|
event_type: 'acs_system.disconnected';
|
|
13517
14310
|
} | {
|
|
@@ -13519,13 +14312,13 @@ export interface Routes {
|
|
|
13519
14312
|
event_id: string;
|
|
13520
14313
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13521
14314
|
workspace_id: string;
|
|
13522
|
-
/**
|
|
14315
|
+
/** Date and time at which the event was created. */
|
|
13523
14316
|
created_at: string;
|
|
13524
|
-
/**
|
|
14317
|
+
/** Date and time at which the event occurred. */
|
|
13525
14318
|
occurred_at: string;
|
|
13526
|
-
/** ID of the connected account. */
|
|
14319
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13527
14320
|
connected_account_id?: string | undefined;
|
|
13528
|
-
/** ID of the ACS system. */
|
|
14321
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13529
14322
|
acs_system_id: string;
|
|
13530
14323
|
acs_credential_id: string;
|
|
13531
14324
|
event_type: 'acs_credential.deleted';
|
|
@@ -13534,13 +14327,13 @@ export interface Routes {
|
|
|
13534
14327
|
event_id: string;
|
|
13535
14328
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13536
14329
|
workspace_id: string;
|
|
13537
|
-
/**
|
|
14330
|
+
/** Date and time at which the event was created. */
|
|
13538
14331
|
created_at: string;
|
|
13539
|
-
/**
|
|
14332
|
+
/** Date and time at which the event occurred. */
|
|
13540
14333
|
occurred_at: string;
|
|
13541
|
-
/** ID of the connected account. */
|
|
14334
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13542
14335
|
connected_account_id?: string | undefined;
|
|
13543
|
-
/** ID of the ACS system. */
|
|
14336
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13544
14337
|
acs_system_id: string;
|
|
13545
14338
|
acs_credential_id: string;
|
|
13546
14339
|
event_type: 'acs_credential.issued';
|
|
@@ -13549,13 +14342,13 @@ export interface Routes {
|
|
|
13549
14342
|
event_id: string;
|
|
13550
14343
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13551
14344
|
workspace_id: string;
|
|
13552
|
-
/**
|
|
14345
|
+
/** Date and time at which the event was created. */
|
|
13553
14346
|
created_at: string;
|
|
13554
|
-
/**
|
|
14347
|
+
/** Date and time at which the event occurred. */
|
|
13555
14348
|
occurred_at: string;
|
|
13556
|
-
/** ID of the connected account. */
|
|
14349
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13557
14350
|
connected_account_id?: string | undefined;
|
|
13558
|
-
/** ID of the ACS system. */
|
|
14351
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13559
14352
|
acs_system_id: string;
|
|
13560
14353
|
acs_user_id: string;
|
|
13561
14354
|
event_type: 'acs_user.deleted';
|
|
@@ -13564,15 +14357,15 @@ export interface Routes {
|
|
|
13564
14357
|
event_id: string;
|
|
13565
14358
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13566
14359
|
workspace_id: string;
|
|
13567
|
-
/**
|
|
14360
|
+
/** Date and time at which the event was created. */
|
|
13568
14361
|
created_at: string;
|
|
13569
|
-
/**
|
|
14362
|
+
/** Date and time at which the event occurred. */
|
|
13570
14363
|
occurred_at: string;
|
|
13571
|
-
/** ID of the connected account. */
|
|
14364
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13572
14365
|
connected_account_id?: string | undefined;
|
|
13573
|
-
/** ID of the ACS system. */
|
|
14366
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13574
14367
|
acs_system_id: string;
|
|
13575
|
-
/** ID of the ACS encoder. */
|
|
14368
|
+
/** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
13576
14369
|
acs_encoder_id: string;
|
|
13577
14370
|
event_type: 'acs_encoder.added';
|
|
13578
14371
|
} | {
|
|
@@ -13580,15 +14373,15 @@ export interface Routes {
|
|
|
13580
14373
|
event_id: string;
|
|
13581
14374
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13582
14375
|
workspace_id: string;
|
|
13583
|
-
/**
|
|
14376
|
+
/** Date and time at which the event was created. */
|
|
13584
14377
|
created_at: string;
|
|
13585
|
-
/**
|
|
14378
|
+
/** Date and time at which the event occurred. */
|
|
13586
14379
|
occurred_at: string;
|
|
13587
|
-
/** ID of the connected account. */
|
|
14380
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13588
14381
|
connected_account_id?: string | undefined;
|
|
13589
|
-
/** ID of the ACS system. */
|
|
14382
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13590
14383
|
acs_system_id: string;
|
|
13591
|
-
/** ID of the ACS encoder. */
|
|
14384
|
+
/** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
13592
14385
|
acs_encoder_id: string;
|
|
13593
14386
|
event_type: 'acs_encoder.removed';
|
|
13594
14387
|
} | {
|
|
@@ -13596,11 +14389,11 @@ export interface Routes {
|
|
|
13596
14389
|
event_id: string;
|
|
13597
14390
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13598
14391
|
workspace_id: string;
|
|
13599
|
-
/**
|
|
14392
|
+
/** Date and time at which the event was created. */
|
|
13600
14393
|
created_at: string;
|
|
13601
|
-
/**
|
|
14394
|
+
/** Date and time at which the event occurred. */
|
|
13602
14395
|
occurred_at: string;
|
|
13603
|
-
/** ID of the client session. */
|
|
14396
|
+
/** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
13604
14397
|
client_session_id: string;
|
|
13605
14398
|
event_type: 'client_session.deleted';
|
|
13606
14399
|
} | {
|
|
@@ -13608,53 +14401,53 @@ export interface Routes {
|
|
|
13608
14401
|
event_id: string;
|
|
13609
14402
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13610
14403
|
workspace_id: string;
|
|
13611
|
-
/**
|
|
14404
|
+
/** Date and time at which the event was created. */
|
|
13612
14405
|
created_at: string;
|
|
13613
|
-
/**
|
|
14406
|
+
/** Date and time at which the event occurred. */
|
|
13614
14407
|
occurred_at: string;
|
|
13615
|
-
/** ID of the connected account. */
|
|
14408
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13616
14409
|
connected_account_id: string;
|
|
13617
14410
|
event_type: 'connected_account.connected';
|
|
13618
|
-
/** ID of the
|
|
14411
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
13619
14412
|
connect_webview_id: string;
|
|
13620
14413
|
} | {
|
|
13621
14414
|
/** ID of the event. */
|
|
13622
14415
|
event_id: string;
|
|
13623
14416
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13624
14417
|
workspace_id: string;
|
|
13625
|
-
/**
|
|
14418
|
+
/** Date and time at which the event was created. */
|
|
13626
14419
|
created_at: string;
|
|
13627
|
-
/**
|
|
14420
|
+
/** Date and time at which the event occurred. */
|
|
13628
14421
|
occurred_at: string;
|
|
13629
|
-
/** ID of the connected account. */
|
|
14422
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13630
14423
|
connected_account_id: string;
|
|
13631
14424
|
event_type: 'connected_account.created';
|
|
13632
|
-
/** ID of the
|
|
14425
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
13633
14426
|
connect_webview_id: string;
|
|
13634
14427
|
} | {
|
|
13635
14428
|
/** ID of the event. */
|
|
13636
14429
|
event_id: string;
|
|
13637
14430
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13638
14431
|
workspace_id: string;
|
|
13639
|
-
/**
|
|
14432
|
+
/** Date and time at which the event was created. */
|
|
13640
14433
|
created_at: string;
|
|
13641
|
-
/**
|
|
14434
|
+
/** Date and time at which the event occurred. */
|
|
13642
14435
|
occurred_at: string;
|
|
13643
|
-
/** ID of the connected account. */
|
|
14436
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13644
14437
|
connected_account_id: string;
|
|
13645
14438
|
event_type: 'connected_account.successful_login';
|
|
13646
|
-
/** ID of the
|
|
14439
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
13647
14440
|
connect_webview_id: string;
|
|
13648
14441
|
} | {
|
|
13649
14442
|
/** ID of the event. */
|
|
13650
14443
|
event_id: string;
|
|
13651
14444
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13652
14445
|
workspace_id: string;
|
|
13653
|
-
/**
|
|
14446
|
+
/** Date and time at which the event was created. */
|
|
13654
14447
|
created_at: string;
|
|
13655
|
-
/**
|
|
14448
|
+
/** Date and time at which the event occurred. */
|
|
13656
14449
|
occurred_at: string;
|
|
13657
|
-
/** ID of the connected account. */
|
|
14450
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13658
14451
|
connected_account_id: string;
|
|
13659
14452
|
event_type: 'connected_account.disconnected';
|
|
13660
14453
|
} | {
|
|
@@ -13662,11 +14455,11 @@ export interface Routes {
|
|
|
13662
14455
|
event_id: string;
|
|
13663
14456
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13664
14457
|
workspace_id: string;
|
|
13665
|
-
/**
|
|
14458
|
+
/** Date and time at which the event was created. */
|
|
13666
14459
|
created_at: string;
|
|
13667
|
-
/**
|
|
14460
|
+
/** Date and time at which the event occurred. */
|
|
13668
14461
|
occurred_at: string;
|
|
13669
|
-
/** ID of the connected account. */
|
|
14462
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13670
14463
|
connected_account_id: string;
|
|
13671
14464
|
event_type: 'connected_account.completed_first_sync';
|
|
13672
14465
|
} | {
|
|
@@ -13674,11 +14467,11 @@ export interface Routes {
|
|
|
13674
14467
|
event_id: string;
|
|
13675
14468
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13676
14469
|
workspace_id: string;
|
|
13677
|
-
/**
|
|
14470
|
+
/** Date and time at which the event was created. */
|
|
13678
14471
|
created_at: string;
|
|
13679
|
-
/**
|
|
14472
|
+
/** Date and time at which the event occurred. */
|
|
13680
14473
|
occurred_at: string;
|
|
13681
|
-
/** ID of the connected account. */
|
|
14474
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13682
14475
|
connected_account_id: string;
|
|
13683
14476
|
event_type: 'connected_account.deleted';
|
|
13684
14477
|
} | {
|
|
@@ -13686,11 +14479,11 @@ export interface Routes {
|
|
|
13686
14479
|
event_id: string;
|
|
13687
14480
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13688
14481
|
workspace_id: string;
|
|
13689
|
-
/**
|
|
14482
|
+
/** Date and time at which the event was created. */
|
|
13690
14483
|
created_at: string;
|
|
13691
|
-
/**
|
|
14484
|
+
/** Date and time at which the event occurred. */
|
|
13692
14485
|
occurred_at: string;
|
|
13693
|
-
/** ID of the connected account. */
|
|
14486
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13694
14487
|
connected_account_id: string;
|
|
13695
14488
|
event_type: 'connected_account.completed_first_sync_after_reconnection';
|
|
13696
14489
|
} | {
|
|
@@ -13698,15 +14491,15 @@ export interface Routes {
|
|
|
13698
14491
|
event_id: string;
|
|
13699
14492
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13700
14493
|
workspace_id: string;
|
|
13701
|
-
/**
|
|
14494
|
+
/** Date and time at which the event was created. */
|
|
13702
14495
|
created_at: string;
|
|
13703
|
-
/**
|
|
14496
|
+
/** Date and time at which the event occurred. */
|
|
13704
14497
|
occurred_at: string;
|
|
13705
|
-
/**
|
|
14498
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
13706
14499
|
action_attempt_id: string;
|
|
13707
|
-
/**
|
|
14500
|
+
/** Type of action. */
|
|
13708
14501
|
action_type: string;
|
|
13709
|
-
/**
|
|
14502
|
+
/** Status of the action. */
|
|
13710
14503
|
status: string;
|
|
13711
14504
|
event_type: 'action_attempt.lock_door.succeeded';
|
|
13712
14505
|
} | {
|
|
@@ -13714,15 +14507,15 @@ export interface Routes {
|
|
|
13714
14507
|
event_id: string;
|
|
13715
14508
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13716
14509
|
workspace_id: string;
|
|
13717
|
-
/**
|
|
14510
|
+
/** Date and time at which the event was created. */
|
|
13718
14511
|
created_at: string;
|
|
13719
|
-
/**
|
|
14512
|
+
/** Date and time at which the event occurred. */
|
|
13720
14513
|
occurred_at: string;
|
|
13721
|
-
/**
|
|
14514
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
13722
14515
|
action_attempt_id: string;
|
|
13723
|
-
/**
|
|
14516
|
+
/** Type of action. */
|
|
13724
14517
|
action_type: string;
|
|
13725
|
-
/**
|
|
14518
|
+
/** Status of the action. */
|
|
13726
14519
|
status: string;
|
|
13727
14520
|
event_type: 'action_attempt.lock_door.failed';
|
|
13728
14521
|
} | {
|
|
@@ -13730,15 +14523,15 @@ export interface Routes {
|
|
|
13730
14523
|
event_id: string;
|
|
13731
14524
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13732
14525
|
workspace_id: string;
|
|
13733
|
-
/**
|
|
14526
|
+
/** Date and time at which the event was created. */
|
|
13734
14527
|
created_at: string;
|
|
13735
|
-
/**
|
|
14528
|
+
/** Date and time at which the event occurred. */
|
|
13736
14529
|
occurred_at: string;
|
|
13737
|
-
/**
|
|
14530
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
13738
14531
|
action_attempt_id: string;
|
|
13739
|
-
/**
|
|
14532
|
+
/** Type of action. */
|
|
13740
14533
|
action_type: string;
|
|
13741
|
-
/**
|
|
14534
|
+
/** Status of the action. */
|
|
13742
14535
|
status: string;
|
|
13743
14536
|
event_type: 'action_attempt.unlock_door.succeeded';
|
|
13744
14537
|
} | {
|
|
@@ -13746,15 +14539,15 @@ export interface Routes {
|
|
|
13746
14539
|
event_id: string;
|
|
13747
14540
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13748
14541
|
workspace_id: string;
|
|
13749
|
-
/**
|
|
14542
|
+
/** Date and time at which the event was created. */
|
|
13750
14543
|
created_at: string;
|
|
13751
|
-
/**
|
|
14544
|
+
/** Date and time at which the event occurred. */
|
|
13752
14545
|
occurred_at: string;
|
|
13753
|
-
/**
|
|
14546
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
13754
14547
|
action_attempt_id: string;
|
|
13755
|
-
/**
|
|
14548
|
+
/** Type of action. */
|
|
13756
14549
|
action_type: string;
|
|
13757
|
-
/**
|
|
14550
|
+
/** Status of the action. */
|
|
13758
14551
|
status: string;
|
|
13759
14552
|
event_type: 'action_attempt.unlock_door.failed';
|
|
13760
14553
|
} | {
|
|
@@ -13762,25 +14555,25 @@ export interface Routes {
|
|
|
13762
14555
|
event_id: string;
|
|
13763
14556
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13764
14557
|
workspace_id: string;
|
|
13765
|
-
/**
|
|
14558
|
+
/** Date and time at which the event was created. */
|
|
13766
14559
|
created_at: string;
|
|
13767
|
-
/**
|
|
14560
|
+
/** Date and time at which the event occurred. */
|
|
13768
14561
|
occurred_at: string;
|
|
13769
|
-
/** ID of the
|
|
14562
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
13770
14563
|
connect_webview_id: string;
|
|
13771
14564
|
event_type: 'connect_webview.login_succeeded';
|
|
13772
|
-
/** ID of the connected account. */
|
|
14565
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
13773
14566
|
connected_account_id: string;
|
|
13774
14567
|
} | {
|
|
13775
14568
|
/** ID of the event. */
|
|
13776
14569
|
event_id: string;
|
|
13777
14570
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13778
14571
|
workspace_id: string;
|
|
13779
|
-
/**
|
|
14572
|
+
/** Date and time at which the event was created. */
|
|
13780
14573
|
created_at: string;
|
|
13781
|
-
/**
|
|
14574
|
+
/** Date and time at which the event occurred. */
|
|
13782
14575
|
occurred_at: string;
|
|
13783
|
-
/** ID of the
|
|
14576
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
13784
14577
|
connect_webview_id: string;
|
|
13785
14578
|
event_type: 'connect_webview.login_failed';
|
|
13786
14579
|
} | {
|
|
@@ -13788,9 +14581,9 @@ export interface Routes {
|
|
|
13788
14581
|
event_id: string;
|
|
13789
14582
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13790
14583
|
workspace_id: string;
|
|
13791
|
-
/**
|
|
14584
|
+
/** Date and time at which the event was created. */
|
|
13792
14585
|
created_at: string;
|
|
13793
|
-
/**
|
|
14586
|
+
/** Date and time at which the event occurred. */
|
|
13794
14587
|
occurred_at: string;
|
|
13795
14588
|
/** ID of the device. */
|
|
13796
14589
|
device_id: string;
|
|
@@ -13802,9 +14595,9 @@ export interface Routes {
|
|
|
13802
14595
|
event_id: string;
|
|
13803
14596
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13804
14597
|
workspace_id: string;
|
|
13805
|
-
/**
|
|
14598
|
+
/** Date and time at which the event was created. */
|
|
13806
14599
|
created_at: string;
|
|
13807
|
-
/**
|
|
14600
|
+
/** Date and time at which the event occurred. */
|
|
13808
14601
|
occurred_at: string;
|
|
13809
14602
|
/** ID of the device. */
|
|
13810
14603
|
device_id: string;
|
|
@@ -13816,9 +14609,9 @@ export interface Routes {
|
|
|
13816
14609
|
event_id: string;
|
|
13817
14610
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13818
14611
|
workspace_id: string;
|
|
13819
|
-
/**
|
|
14612
|
+
/** Date and time at which the event was created. */
|
|
13820
14613
|
created_at: string;
|
|
13821
|
-
/**
|
|
14614
|
+
/** Date and time at which the event occurred. */
|
|
13822
14615
|
occurred_at: string;
|
|
13823
14616
|
/** ID of the device. */
|
|
13824
14617
|
device_id: string;
|
|
@@ -13830,9 +14623,9 @@ export interface Routes {
|
|
|
13830
14623
|
event_id: string;
|
|
13831
14624
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13832
14625
|
workspace_id: string;
|
|
13833
|
-
/**
|
|
14626
|
+
/** Date and time at which the event was created. */
|
|
13834
14627
|
created_at: string;
|
|
13835
|
-
/**
|
|
14628
|
+
/** Date and time at which the event occurred. */
|
|
13836
14629
|
occurred_at: string;
|
|
13837
14630
|
/** ID of the device. */
|
|
13838
14631
|
device_id: string;
|
|
@@ -13844,9 +14637,9 @@ export interface Routes {
|
|
|
13844
14637
|
event_id: string;
|
|
13845
14638
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13846
14639
|
workspace_id: string;
|
|
13847
|
-
/**
|
|
14640
|
+
/** Date and time at which the event was created. */
|
|
13848
14641
|
created_at: string;
|
|
13849
|
-
/**
|
|
14642
|
+
/** Date and time at which the event occurred. */
|
|
13850
14643
|
occurred_at: string;
|
|
13851
14644
|
/** ID of the device. */
|
|
13852
14645
|
device_id: string;
|
|
@@ -13858,9 +14651,9 @@ export interface Routes {
|
|
|
13858
14651
|
event_id: string;
|
|
13859
14652
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13860
14653
|
workspace_id: string;
|
|
13861
|
-
/**
|
|
14654
|
+
/** Date and time at which the event was created. */
|
|
13862
14655
|
created_at: string;
|
|
13863
|
-
/**
|
|
14656
|
+
/** Date and time at which the event occurred. */
|
|
13864
14657
|
occurred_at: string;
|
|
13865
14658
|
/** ID of the device. */
|
|
13866
14659
|
device_id: string;
|
|
@@ -13874,9 +14667,9 @@ export interface Routes {
|
|
|
13874
14667
|
event_id: string;
|
|
13875
14668
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13876
14669
|
workspace_id: string;
|
|
13877
|
-
/**
|
|
14670
|
+
/** Date and time at which the event was created. */
|
|
13878
14671
|
created_at: string;
|
|
13879
|
-
/**
|
|
14672
|
+
/** Date and time at which the event occurred. */
|
|
13880
14673
|
occurred_at: string;
|
|
13881
14674
|
/** ID of the device. */
|
|
13882
14675
|
device_id: string;
|
|
@@ -13890,9 +14683,9 @@ export interface Routes {
|
|
|
13890
14683
|
event_id: string;
|
|
13891
14684
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13892
14685
|
workspace_id: string;
|
|
13893
|
-
/**
|
|
14686
|
+
/** Date and time at which the event was created. */
|
|
13894
14687
|
created_at: string;
|
|
13895
|
-
/**
|
|
14688
|
+
/** Date and time at which the event occurred. */
|
|
13896
14689
|
occurred_at: string;
|
|
13897
14690
|
/** ID of the device. */
|
|
13898
14691
|
device_id: string;
|
|
@@ -13904,9 +14697,9 @@ export interface Routes {
|
|
|
13904
14697
|
event_id: string;
|
|
13905
14698
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13906
14699
|
workspace_id: string;
|
|
13907
|
-
/**
|
|
14700
|
+
/** Date and time at which the event was created. */
|
|
13908
14701
|
created_at: string;
|
|
13909
|
-
/**
|
|
14702
|
+
/** Date and time at which the event occurred. */
|
|
13910
14703
|
occurred_at: string;
|
|
13911
14704
|
/** ID of the device. */
|
|
13912
14705
|
device_id: string;
|
|
@@ -13920,9 +14713,9 @@ export interface Routes {
|
|
|
13920
14713
|
event_id: string;
|
|
13921
14714
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13922
14715
|
workspace_id: string;
|
|
13923
|
-
/**
|
|
14716
|
+
/** Date and time at which the event was created. */
|
|
13924
14717
|
created_at: string;
|
|
13925
|
-
/**
|
|
14718
|
+
/** Date and time at which the event occurred. */
|
|
13926
14719
|
occurred_at: string;
|
|
13927
14720
|
/** ID of the device. */
|
|
13928
14721
|
device_id: string;
|
|
@@ -13938,9 +14731,9 @@ export interface Routes {
|
|
|
13938
14731
|
event_id: string;
|
|
13939
14732
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13940
14733
|
workspace_id: string;
|
|
13941
|
-
/**
|
|
14734
|
+
/** Date and time at which the event was created. */
|
|
13942
14735
|
created_at: string;
|
|
13943
|
-
/**
|
|
14736
|
+
/** Date and time at which the event occurred. */
|
|
13944
14737
|
occurred_at: string;
|
|
13945
14738
|
/** ID of the device. */
|
|
13946
14739
|
device_id: string;
|
|
@@ -13952,9 +14745,9 @@ export interface Routes {
|
|
|
13952
14745
|
event_id: string;
|
|
13953
14746
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13954
14747
|
workspace_id: string;
|
|
13955
|
-
/**
|
|
14748
|
+
/** Date and time at which the event was created. */
|
|
13956
14749
|
created_at: string;
|
|
13957
|
-
/**
|
|
14750
|
+
/** Date and time at which the event occurred. */
|
|
13958
14751
|
occurred_at: string;
|
|
13959
14752
|
/** ID of the device. */
|
|
13960
14753
|
device_id: string;
|
|
@@ -13966,9 +14759,9 @@ export interface Routes {
|
|
|
13966
14759
|
event_id: string;
|
|
13967
14760
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13968
14761
|
workspace_id: string;
|
|
13969
|
-
/**
|
|
14762
|
+
/** Date and time at which the event was created. */
|
|
13970
14763
|
created_at: string;
|
|
13971
|
-
/**
|
|
14764
|
+
/** Date and time at which the event occurred. */
|
|
13972
14765
|
occurred_at: string;
|
|
13973
14766
|
/** ID of the device. */
|
|
13974
14767
|
device_id: string;
|
|
@@ -13980,9 +14773,9 @@ export interface Routes {
|
|
|
13980
14773
|
event_id: string;
|
|
13981
14774
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13982
14775
|
workspace_id: string;
|
|
13983
|
-
/**
|
|
14776
|
+
/** Date and time at which the event was created. */
|
|
13984
14777
|
created_at: string;
|
|
13985
|
-
/**
|
|
14778
|
+
/** Date and time at which the event occurred. */
|
|
13986
14779
|
occurred_at: string;
|
|
13987
14780
|
/** ID of the device. */
|
|
13988
14781
|
device_id: string;
|
|
@@ -13994,9 +14787,9 @@ export interface Routes {
|
|
|
13994
14787
|
event_id: string;
|
|
13995
14788
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
13996
14789
|
workspace_id: string;
|
|
13997
|
-
/**
|
|
14790
|
+
/** Date and time at which the event was created. */
|
|
13998
14791
|
created_at: string;
|
|
13999
|
-
/**
|
|
14792
|
+
/** Date and time at which the event occurred. */
|
|
14000
14793
|
occurred_at: string;
|
|
14001
14794
|
/** ID of the device. */
|
|
14002
14795
|
device_id: string;
|
|
@@ -14008,9 +14801,9 @@ export interface Routes {
|
|
|
14008
14801
|
event_id: string;
|
|
14009
14802
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14010
14803
|
workspace_id: string;
|
|
14011
|
-
/**
|
|
14804
|
+
/** Date and time at which the event was created. */
|
|
14012
14805
|
created_at: string;
|
|
14013
|
-
/**
|
|
14806
|
+
/** Date and time at which the event occurred. */
|
|
14014
14807
|
occurred_at: string;
|
|
14015
14808
|
/** ID of the device. */
|
|
14016
14809
|
device_id: string;
|
|
@@ -14022,9 +14815,9 @@ export interface Routes {
|
|
|
14022
14815
|
event_id: string;
|
|
14023
14816
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14024
14817
|
workspace_id: string;
|
|
14025
|
-
/**
|
|
14818
|
+
/** Date and time at which the event was created. */
|
|
14026
14819
|
created_at: string;
|
|
14027
|
-
/**
|
|
14820
|
+
/** Date and time at which the event occurred. */
|
|
14028
14821
|
occurred_at: string;
|
|
14029
14822
|
/** ID of the device. */
|
|
14030
14823
|
device_id: string;
|
|
@@ -14036,9 +14829,9 @@ export interface Routes {
|
|
|
14036
14829
|
event_id: string;
|
|
14037
14830
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14038
14831
|
workspace_id: string;
|
|
14039
|
-
/**
|
|
14832
|
+
/** Date and time at which the event was created. */
|
|
14040
14833
|
created_at: string;
|
|
14041
|
-
/**
|
|
14834
|
+
/** Date and time at which the event occurred. */
|
|
14042
14835
|
occurred_at: string;
|
|
14043
14836
|
/** ID of the device. */
|
|
14044
14837
|
device_id: string;
|
|
@@ -14050,9 +14843,9 @@ export interface Routes {
|
|
|
14050
14843
|
event_id: string;
|
|
14051
14844
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14052
14845
|
workspace_id: string;
|
|
14053
|
-
/**
|
|
14846
|
+
/** Date and time at which the event was created. */
|
|
14054
14847
|
created_at: string;
|
|
14055
|
-
/**
|
|
14848
|
+
/** Date and time at which the event occurred. */
|
|
14056
14849
|
occurred_at: string;
|
|
14057
14850
|
/** ID of the device. */
|
|
14058
14851
|
device_id: string;
|
|
@@ -14064,9 +14857,9 @@ export interface Routes {
|
|
|
14064
14857
|
event_id: string;
|
|
14065
14858
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14066
14859
|
workspace_id: string;
|
|
14067
|
-
/**
|
|
14860
|
+
/** Date and time at which the event was created. */
|
|
14068
14861
|
created_at: string;
|
|
14069
|
-
/**
|
|
14862
|
+
/** Date and time at which the event occurred. */
|
|
14070
14863
|
occurred_at: string;
|
|
14071
14864
|
/** ID of the device. */
|
|
14072
14865
|
device_id: string;
|
|
@@ -14078,9 +14871,9 @@ export interface Routes {
|
|
|
14078
14871
|
event_id: string;
|
|
14079
14872
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14080
14873
|
workspace_id: string;
|
|
14081
|
-
/**
|
|
14874
|
+
/** Date and time at which the event was created. */
|
|
14082
14875
|
created_at: string;
|
|
14083
|
-
/**
|
|
14876
|
+
/** Date and time at which the event occurred. */
|
|
14084
14877
|
occurred_at: string;
|
|
14085
14878
|
/** ID of the device. */
|
|
14086
14879
|
device_id: string;
|
|
@@ -14092,9 +14885,9 @@ export interface Routes {
|
|
|
14092
14885
|
event_id: string;
|
|
14093
14886
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14094
14887
|
workspace_id: string;
|
|
14095
|
-
/**
|
|
14888
|
+
/** Date and time at which the event was created. */
|
|
14096
14889
|
created_at: string;
|
|
14097
|
-
/**
|
|
14890
|
+
/** Date and time at which the event occurred. */
|
|
14098
14891
|
occurred_at: string;
|
|
14099
14892
|
/** ID of the device. */
|
|
14100
14893
|
device_id: string;
|
|
@@ -14106,9 +14899,9 @@ export interface Routes {
|
|
|
14106
14899
|
event_id: string;
|
|
14107
14900
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14108
14901
|
workspace_id: string;
|
|
14109
|
-
/**
|
|
14902
|
+
/** Date and time at which the event was created. */
|
|
14110
14903
|
created_at: string;
|
|
14111
|
-
/**
|
|
14904
|
+
/** Date and time at which the event occurred. */
|
|
14112
14905
|
occurred_at: string;
|
|
14113
14906
|
/** ID of the device. */
|
|
14114
14907
|
device_id: string;
|
|
@@ -14132,9 +14925,9 @@ export interface Routes {
|
|
|
14132
14925
|
event_id: string;
|
|
14133
14926
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14134
14927
|
workspace_id: string;
|
|
14135
|
-
/**
|
|
14928
|
+
/** Date and time at which the event was created. */
|
|
14136
14929
|
created_at: string;
|
|
14137
|
-
/**
|
|
14930
|
+
/** Date and time at which the event occurred. */
|
|
14138
14931
|
occurred_at: string;
|
|
14139
14932
|
/** ID of the device. */
|
|
14140
14933
|
device_id: string;
|
|
@@ -14145,16 +14938,16 @@ export interface Routes {
|
|
|
14145
14938
|
access_code_id?: string | undefined;
|
|
14146
14939
|
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
|
|
14147
14940
|
action_attempt_id?: string | undefined;
|
|
14148
|
-
/** Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
14941
|
+
/** Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
14149
14942
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
14150
14943
|
} | {
|
|
14151
14944
|
/** ID of the event. */
|
|
14152
14945
|
event_id: string;
|
|
14153
14946
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14154
14947
|
workspace_id: string;
|
|
14155
|
-
/**
|
|
14948
|
+
/** Date and time at which the event was created. */
|
|
14156
14949
|
created_at: string;
|
|
14157
|
-
/**
|
|
14950
|
+
/** Date and time at which the event occurred. */
|
|
14158
14951
|
occurred_at: string;
|
|
14159
14952
|
/** ID of the device. */
|
|
14160
14953
|
device_id: string;
|
|
@@ -14165,16 +14958,16 @@ export interface Routes {
|
|
|
14165
14958
|
access_code_id?: string | undefined;
|
|
14166
14959
|
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
|
|
14167
14960
|
action_attempt_id?: string | undefined;
|
|
14168
|
-
/** Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
14961
|
+
/** Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
14169
14962
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
14170
14963
|
} | {
|
|
14171
14964
|
/** ID of the event. */
|
|
14172
14965
|
event_id: string;
|
|
14173
14966
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14174
14967
|
workspace_id: string;
|
|
14175
|
-
/**
|
|
14968
|
+
/** Date and time at which the event was created. */
|
|
14176
14969
|
created_at: string;
|
|
14177
|
-
/**
|
|
14970
|
+
/** Date and time at which the event occurred. */
|
|
14178
14971
|
occurred_at: string;
|
|
14179
14972
|
/** ID of the device. */
|
|
14180
14973
|
device_id: string;
|
|
@@ -14188,9 +14981,9 @@ export interface Routes {
|
|
|
14188
14981
|
event_id: string;
|
|
14189
14982
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14190
14983
|
workspace_id: string;
|
|
14191
|
-
/**
|
|
14984
|
+
/** Date and time at which the event was created. */
|
|
14192
14985
|
created_at: string;
|
|
14193
|
-
/**
|
|
14986
|
+
/** Date and time at which the event occurred. */
|
|
14194
14987
|
occurred_at: string;
|
|
14195
14988
|
/** ID of the device. */
|
|
14196
14989
|
device_id: string;
|
|
@@ -14201,23 +14994,23 @@ export interface Routes {
|
|
|
14201
14994
|
thermostat_schedule_id: string | null;
|
|
14202
14995
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
|
|
14203
14996
|
climate_preset_key: string;
|
|
14204
|
-
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
14997
|
+
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
14205
14998
|
is_fallback_climate_preset: boolean;
|
|
14206
14999
|
} | {
|
|
14207
15000
|
/** ID of the event. */
|
|
14208
15001
|
event_id: string;
|
|
14209
15002
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14210
15003
|
workspace_id: string;
|
|
14211
|
-
/**
|
|
15004
|
+
/** Date and time at which the event was created. */
|
|
14212
15005
|
created_at: string;
|
|
14213
|
-
/**
|
|
15006
|
+
/** Date and time at which the event occurred. */
|
|
14214
15007
|
occurred_at: string;
|
|
14215
15008
|
/** ID of the device. */
|
|
14216
15009
|
device_id: string;
|
|
14217
15010
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14218
15011
|
connected_account_id: string;
|
|
14219
15012
|
event_type: 'thermostat.manually_adjusted';
|
|
14220
|
-
/** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
|
|
15013
|
+
/** Method used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
14221
15014
|
method: 'seam' | 'external';
|
|
14222
15015
|
/** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
|
|
14223
15016
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
@@ -14236,18 +15029,18 @@ export interface Routes {
|
|
|
14236
15029
|
event_id: string;
|
|
14237
15030
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14238
15031
|
workspace_id: string;
|
|
14239
|
-
/**
|
|
15032
|
+
/** Date and time at which the event was created. */
|
|
14240
15033
|
created_at: string;
|
|
14241
|
-
/**
|
|
15034
|
+
/** Date and time at which the event occurred. */
|
|
14242
15035
|
occurred_at: string;
|
|
14243
15036
|
/** ID of the device. */
|
|
14244
15037
|
device_id: string;
|
|
14245
15038
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14246
15039
|
connected_account_id: string;
|
|
14247
15040
|
event_type: 'thermostat.temperature_threshold_exceeded';
|
|
14248
|
-
/** Temperature, in °C, reported by the thermostat. */
|
|
15041
|
+
/** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
14249
15042
|
temperature_celsius: number;
|
|
14250
|
-
/** Temperature, in °F, reported by the thermostat. */
|
|
15043
|
+
/** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
14251
15044
|
temperature_fahrenheit: number;
|
|
14252
15045
|
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
14253
15046
|
upper_limit_celsius: number | null;
|
|
@@ -14262,18 +15055,18 @@ export interface Routes {
|
|
|
14262
15055
|
event_id: string;
|
|
14263
15056
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14264
15057
|
workspace_id: string;
|
|
14265
|
-
/**
|
|
15058
|
+
/** Date and time at which the event was created. */
|
|
14266
15059
|
created_at: string;
|
|
14267
|
-
/**
|
|
15060
|
+
/** Date and time at which the event occurred. */
|
|
14268
15061
|
occurred_at: string;
|
|
14269
15062
|
/** ID of the device. */
|
|
14270
15063
|
device_id: string;
|
|
14271
15064
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14272
15065
|
connected_account_id: string;
|
|
14273
15066
|
event_type: 'thermostat.temperature_threshold_no_longer_exceeded';
|
|
14274
|
-
/** Temperature, in °C, reported by the thermostat. */
|
|
15067
|
+
/** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
14275
15068
|
temperature_celsius: number;
|
|
14276
|
-
/** Temperature, in °F, reported by the thermostat. */
|
|
15069
|
+
/** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
14277
15070
|
temperature_fahrenheit: number;
|
|
14278
15071
|
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
14279
15072
|
upper_limit_celsius: number | null;
|
|
@@ -14288,11 +15081,11 @@ export interface Routes {
|
|
|
14288
15081
|
event_id: string;
|
|
14289
15082
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14290
15083
|
workspace_id: string;
|
|
14291
|
-
/**
|
|
15084
|
+
/** Date and time at which the event was created. */
|
|
14292
15085
|
created_at: string;
|
|
14293
|
-
/**
|
|
15086
|
+
/** Date and time at which the event occurred. */
|
|
14294
15087
|
occurred_at: string;
|
|
14295
|
-
/** ID of the enrollment automation. */
|
|
15088
|
+
/** ID of the [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut). */
|
|
14296
15089
|
enrollment_automation_id: string;
|
|
14297
15090
|
event_type: 'enrollment_automation.deleted';
|
|
14298
15091
|
} | {
|
|
@@ -14300,11 +15093,11 @@ export interface Routes {
|
|
|
14300
15093
|
event_id: string;
|
|
14301
15094
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14302
15095
|
workspace_id: string;
|
|
14303
|
-
/**
|
|
15096
|
+
/** Date and time at which the event was created. */
|
|
14304
15097
|
created_at: string;
|
|
14305
|
-
/**
|
|
15098
|
+
/** Date and time at which the event occurred. */
|
|
14306
15099
|
occurred_at: string;
|
|
14307
|
-
/** ID of the device. */
|
|
15100
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14308
15101
|
device_id: string;
|
|
14309
15102
|
event_type: 'phone.deactivated';
|
|
14310
15103
|
}>;
|
|
@@ -14810,11 +15603,72 @@ export interface Routes {
|
|
|
14810
15603
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
14811
15604
|
workspace_id: string;
|
|
14812
15605
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
14813
|
-
errors: Array<{
|
|
15606
|
+
errors: Array<({
|
|
14814
15607
|
message: string;
|
|
14815
15608
|
is_device_error: true;
|
|
14816
|
-
|
|
15609
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15610
|
+
error_code: 'device_offline';
|
|
15611
|
+
} | {
|
|
15612
|
+
message: string;
|
|
15613
|
+
is_device_error: true;
|
|
15614
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15615
|
+
error_code: 'device_removed';
|
|
15616
|
+
} | {
|
|
15617
|
+
message: string;
|
|
15618
|
+
is_device_error: true;
|
|
15619
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15620
|
+
error_code: 'account_disconnected';
|
|
15621
|
+
} | {
|
|
15622
|
+
message: string;
|
|
15623
|
+
is_device_error: true;
|
|
15624
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15625
|
+
error_code: 'hub_disconnected';
|
|
15626
|
+
} | {
|
|
15627
|
+
message: string;
|
|
15628
|
+
is_device_error: true;
|
|
15629
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15630
|
+
error_code: 'device_disconnected';
|
|
15631
|
+
} | {
|
|
15632
|
+
message: string;
|
|
15633
|
+
is_device_error: true;
|
|
15634
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15635
|
+
error_code: 'empty_backup_access_code_pool';
|
|
15636
|
+
} | {
|
|
15637
|
+
message: string;
|
|
15638
|
+
is_device_error: true;
|
|
15639
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15640
|
+
error_code: 'august_lock_not_authorized';
|
|
15641
|
+
} | {
|
|
15642
|
+
message: string;
|
|
15643
|
+
is_device_error: true;
|
|
15644
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15645
|
+
error_code: 'august_lock_missing_bridge';
|
|
15646
|
+
} | {
|
|
15647
|
+
message: string;
|
|
15648
|
+
is_device_error: true;
|
|
15649
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15650
|
+
error_code: 'salto_site_user_limit_reached';
|
|
15651
|
+
} | {
|
|
15652
|
+
message: string;
|
|
15653
|
+
is_device_error: true;
|
|
15654
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15655
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
15656
|
+
} | {
|
|
15657
|
+
message: string;
|
|
15658
|
+
is_device_error: true;
|
|
15659
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15660
|
+
error_code: 'missing_device_credentials';
|
|
15661
|
+
} | {
|
|
15662
|
+
message: string;
|
|
15663
|
+
is_device_error: true;
|
|
15664
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15665
|
+
error_code: 'auxiliary_heat_running';
|
|
14817
15666
|
} | {
|
|
15667
|
+
message: string;
|
|
15668
|
+
is_device_error: true;
|
|
15669
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15670
|
+
error_code: 'subscription_required';
|
|
15671
|
+
}) | {
|
|
14818
15672
|
message: string;
|
|
14819
15673
|
is_connected_account_error: true;
|
|
14820
15674
|
error_code: string;
|
|
@@ -15330,11 +16184,72 @@ export interface Routes {
|
|
|
15330
16184
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
15331
16185
|
workspace_id: string;
|
|
15332
16186
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
15333
|
-
errors: Array<{
|
|
16187
|
+
errors: Array<({
|
|
15334
16188
|
message: string;
|
|
15335
16189
|
is_device_error: true;
|
|
15336
|
-
|
|
16190
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16191
|
+
error_code: 'device_offline';
|
|
16192
|
+
} | {
|
|
16193
|
+
message: string;
|
|
16194
|
+
is_device_error: true;
|
|
16195
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16196
|
+
error_code: 'device_removed';
|
|
16197
|
+
} | {
|
|
16198
|
+
message: string;
|
|
16199
|
+
is_device_error: true;
|
|
16200
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16201
|
+
error_code: 'account_disconnected';
|
|
16202
|
+
} | {
|
|
16203
|
+
message: string;
|
|
16204
|
+
is_device_error: true;
|
|
16205
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16206
|
+
error_code: 'hub_disconnected';
|
|
16207
|
+
} | {
|
|
16208
|
+
message: string;
|
|
16209
|
+
is_device_error: true;
|
|
16210
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16211
|
+
error_code: 'device_disconnected';
|
|
16212
|
+
} | {
|
|
16213
|
+
message: string;
|
|
16214
|
+
is_device_error: true;
|
|
16215
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16216
|
+
error_code: 'empty_backup_access_code_pool';
|
|
16217
|
+
} | {
|
|
16218
|
+
message: string;
|
|
16219
|
+
is_device_error: true;
|
|
16220
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16221
|
+
error_code: 'august_lock_not_authorized';
|
|
16222
|
+
} | {
|
|
16223
|
+
message: string;
|
|
16224
|
+
is_device_error: true;
|
|
16225
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16226
|
+
error_code: 'august_lock_missing_bridge';
|
|
16227
|
+
} | {
|
|
16228
|
+
message: string;
|
|
16229
|
+
is_device_error: true;
|
|
16230
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16231
|
+
error_code: 'salto_site_user_limit_reached';
|
|
15337
16232
|
} | {
|
|
16233
|
+
message: string;
|
|
16234
|
+
is_device_error: true;
|
|
16235
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16236
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
16237
|
+
} | {
|
|
16238
|
+
message: string;
|
|
16239
|
+
is_device_error: true;
|
|
16240
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16241
|
+
error_code: 'missing_device_credentials';
|
|
16242
|
+
} | {
|
|
16243
|
+
message: string;
|
|
16244
|
+
is_device_error: true;
|
|
16245
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16246
|
+
error_code: 'auxiliary_heat_running';
|
|
16247
|
+
} | {
|
|
16248
|
+
message: string;
|
|
16249
|
+
is_device_error: true;
|
|
16250
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16251
|
+
error_code: 'subscription_required';
|
|
16252
|
+
}) | {
|
|
15338
16253
|
message: string;
|
|
15339
16254
|
is_connected_account_error: true;
|
|
15340
16255
|
error_code: string;
|
|
@@ -15887,11 +16802,72 @@ export interface Routes {
|
|
|
15887
16802
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
15888
16803
|
workspace_id: string;
|
|
15889
16804
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
15890
|
-
errors: Array<{
|
|
16805
|
+
errors: Array<({
|
|
15891
16806
|
message: string;
|
|
15892
16807
|
is_device_error: true;
|
|
15893
|
-
|
|
16808
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16809
|
+
error_code: 'device_offline';
|
|
16810
|
+
} | {
|
|
16811
|
+
message: string;
|
|
16812
|
+
is_device_error: true;
|
|
16813
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16814
|
+
error_code: 'device_removed';
|
|
16815
|
+
} | {
|
|
16816
|
+
message: string;
|
|
16817
|
+
is_device_error: true;
|
|
16818
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16819
|
+
error_code: 'account_disconnected';
|
|
16820
|
+
} | {
|
|
16821
|
+
message: string;
|
|
16822
|
+
is_device_error: true;
|
|
16823
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16824
|
+
error_code: 'hub_disconnected';
|
|
16825
|
+
} | {
|
|
16826
|
+
message: string;
|
|
16827
|
+
is_device_error: true;
|
|
16828
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16829
|
+
error_code: 'device_disconnected';
|
|
16830
|
+
} | {
|
|
16831
|
+
message: string;
|
|
16832
|
+
is_device_error: true;
|
|
16833
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16834
|
+
error_code: 'empty_backup_access_code_pool';
|
|
16835
|
+
} | {
|
|
16836
|
+
message: string;
|
|
16837
|
+
is_device_error: true;
|
|
16838
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16839
|
+
error_code: 'august_lock_not_authorized';
|
|
16840
|
+
} | {
|
|
16841
|
+
message: string;
|
|
16842
|
+
is_device_error: true;
|
|
16843
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16844
|
+
error_code: 'august_lock_missing_bridge';
|
|
16845
|
+
} | {
|
|
16846
|
+
message: string;
|
|
16847
|
+
is_device_error: true;
|
|
16848
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16849
|
+
error_code: 'salto_site_user_limit_reached';
|
|
16850
|
+
} | {
|
|
16851
|
+
message: string;
|
|
16852
|
+
is_device_error: true;
|
|
16853
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16854
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
16855
|
+
} | {
|
|
16856
|
+
message: string;
|
|
16857
|
+
is_device_error: true;
|
|
16858
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16859
|
+
error_code: 'missing_device_credentials';
|
|
16860
|
+
} | {
|
|
16861
|
+
message: string;
|
|
16862
|
+
is_device_error: true;
|
|
16863
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16864
|
+
error_code: 'auxiliary_heat_running';
|
|
15894
16865
|
} | {
|
|
16866
|
+
message: string;
|
|
16867
|
+
is_device_error: true;
|
|
16868
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16869
|
+
error_code: 'subscription_required';
|
|
16870
|
+
}) | {
|
|
15895
16871
|
message: string;
|
|
15896
16872
|
is_connected_account_error: true;
|
|
15897
16873
|
error_code: string;
|
|
@@ -16407,11 +17383,72 @@ export interface Routes {
|
|
|
16407
17383
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
16408
17384
|
workspace_id: string;
|
|
16409
17385
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
16410
|
-
errors: Array<{
|
|
17386
|
+
errors: Array<({
|
|
16411
17387
|
message: string;
|
|
16412
17388
|
is_device_error: true;
|
|
16413
|
-
|
|
17389
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17390
|
+
error_code: 'device_offline';
|
|
17391
|
+
} | {
|
|
17392
|
+
message: string;
|
|
17393
|
+
is_device_error: true;
|
|
17394
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17395
|
+
error_code: 'device_removed';
|
|
17396
|
+
} | {
|
|
17397
|
+
message: string;
|
|
17398
|
+
is_device_error: true;
|
|
17399
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17400
|
+
error_code: 'account_disconnected';
|
|
17401
|
+
} | {
|
|
17402
|
+
message: string;
|
|
17403
|
+
is_device_error: true;
|
|
17404
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17405
|
+
error_code: 'hub_disconnected';
|
|
17406
|
+
} | {
|
|
17407
|
+
message: string;
|
|
17408
|
+
is_device_error: true;
|
|
17409
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17410
|
+
error_code: 'device_disconnected';
|
|
17411
|
+
} | {
|
|
17412
|
+
message: string;
|
|
17413
|
+
is_device_error: true;
|
|
17414
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17415
|
+
error_code: 'empty_backup_access_code_pool';
|
|
17416
|
+
} | {
|
|
17417
|
+
message: string;
|
|
17418
|
+
is_device_error: true;
|
|
17419
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17420
|
+
error_code: 'august_lock_not_authorized';
|
|
17421
|
+
} | {
|
|
17422
|
+
message: string;
|
|
17423
|
+
is_device_error: true;
|
|
17424
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17425
|
+
error_code: 'august_lock_missing_bridge';
|
|
17426
|
+
} | {
|
|
17427
|
+
message: string;
|
|
17428
|
+
is_device_error: true;
|
|
17429
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17430
|
+
error_code: 'salto_site_user_limit_reached';
|
|
17431
|
+
} | {
|
|
17432
|
+
message: string;
|
|
17433
|
+
is_device_error: true;
|
|
17434
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17435
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
17436
|
+
} | {
|
|
17437
|
+
message: string;
|
|
17438
|
+
is_device_error: true;
|
|
17439
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17440
|
+
error_code: 'missing_device_credentials';
|
|
17441
|
+
} | {
|
|
17442
|
+
message: string;
|
|
17443
|
+
is_device_error: true;
|
|
17444
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17445
|
+
error_code: 'auxiliary_heat_running';
|
|
16414
17446
|
} | {
|
|
17447
|
+
message: string;
|
|
17448
|
+
is_device_error: true;
|
|
17449
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17450
|
+
error_code: 'subscription_required';
|
|
17451
|
+
}) | {
|
|
16415
17452
|
message: string;
|
|
16416
17453
|
is_connected_account_error: true;
|
|
16417
17454
|
error_code: string;
|
|
@@ -18608,11 +19645,72 @@ export interface Routes {
|
|
|
18608
19645
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
18609
19646
|
workspace_id: string;
|
|
18610
19647
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
18611
|
-
errors: Array<{
|
|
19648
|
+
errors: Array<({
|
|
18612
19649
|
message: string;
|
|
18613
19650
|
is_device_error: true;
|
|
18614
|
-
|
|
19651
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19652
|
+
error_code: 'device_offline';
|
|
19653
|
+
} | {
|
|
19654
|
+
message: string;
|
|
19655
|
+
is_device_error: true;
|
|
19656
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19657
|
+
error_code: 'device_removed';
|
|
19658
|
+
} | {
|
|
19659
|
+
message: string;
|
|
19660
|
+
is_device_error: true;
|
|
19661
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19662
|
+
error_code: 'account_disconnected';
|
|
19663
|
+
} | {
|
|
19664
|
+
message: string;
|
|
19665
|
+
is_device_error: true;
|
|
19666
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19667
|
+
error_code: 'hub_disconnected';
|
|
19668
|
+
} | {
|
|
19669
|
+
message: string;
|
|
19670
|
+
is_device_error: true;
|
|
19671
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19672
|
+
error_code: 'device_disconnected';
|
|
19673
|
+
} | {
|
|
19674
|
+
message: string;
|
|
19675
|
+
is_device_error: true;
|
|
19676
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19677
|
+
error_code: 'empty_backup_access_code_pool';
|
|
19678
|
+
} | {
|
|
19679
|
+
message: string;
|
|
19680
|
+
is_device_error: true;
|
|
19681
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19682
|
+
error_code: 'august_lock_not_authorized';
|
|
19683
|
+
} | {
|
|
19684
|
+
message: string;
|
|
19685
|
+
is_device_error: true;
|
|
19686
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19687
|
+
error_code: 'august_lock_missing_bridge';
|
|
19688
|
+
} | {
|
|
19689
|
+
message: string;
|
|
19690
|
+
is_device_error: true;
|
|
19691
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19692
|
+
error_code: 'salto_site_user_limit_reached';
|
|
19693
|
+
} | {
|
|
19694
|
+
message: string;
|
|
19695
|
+
is_device_error: true;
|
|
19696
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19697
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
19698
|
+
} | {
|
|
19699
|
+
message: string;
|
|
19700
|
+
is_device_error: true;
|
|
19701
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19702
|
+
error_code: 'missing_device_credentials';
|
|
19703
|
+
} | {
|
|
19704
|
+
message: string;
|
|
19705
|
+
is_device_error: true;
|
|
19706
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19707
|
+
error_code: 'auxiliary_heat_running';
|
|
18615
19708
|
} | {
|
|
19709
|
+
message: string;
|
|
19710
|
+
is_device_error: true;
|
|
19711
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19712
|
+
error_code: 'subscription_required';
|
|
19713
|
+
}) | {
|
|
18616
19714
|
message: string;
|
|
18617
19715
|
is_connected_account_error: true;
|
|
18618
19716
|
error_code: string;
|
|
@@ -19128,11 +20226,72 @@ export interface Routes {
|
|
|
19128
20226
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
19129
20227
|
workspace_id: string;
|
|
19130
20228
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
19131
|
-
errors: Array<{
|
|
20229
|
+
errors: Array<({
|
|
19132
20230
|
message: string;
|
|
19133
20231
|
is_device_error: true;
|
|
19134
|
-
|
|
20232
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20233
|
+
error_code: 'device_offline';
|
|
20234
|
+
} | {
|
|
20235
|
+
message: string;
|
|
20236
|
+
is_device_error: true;
|
|
20237
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20238
|
+
error_code: 'device_removed';
|
|
20239
|
+
} | {
|
|
20240
|
+
message: string;
|
|
20241
|
+
is_device_error: true;
|
|
20242
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20243
|
+
error_code: 'account_disconnected';
|
|
20244
|
+
} | {
|
|
20245
|
+
message: string;
|
|
20246
|
+
is_device_error: true;
|
|
20247
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20248
|
+
error_code: 'hub_disconnected';
|
|
20249
|
+
} | {
|
|
20250
|
+
message: string;
|
|
20251
|
+
is_device_error: true;
|
|
20252
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20253
|
+
error_code: 'device_disconnected';
|
|
20254
|
+
} | {
|
|
20255
|
+
message: string;
|
|
20256
|
+
is_device_error: true;
|
|
20257
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20258
|
+
error_code: 'empty_backup_access_code_pool';
|
|
19135
20259
|
} | {
|
|
20260
|
+
message: string;
|
|
20261
|
+
is_device_error: true;
|
|
20262
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20263
|
+
error_code: 'august_lock_not_authorized';
|
|
20264
|
+
} | {
|
|
20265
|
+
message: string;
|
|
20266
|
+
is_device_error: true;
|
|
20267
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20268
|
+
error_code: 'august_lock_missing_bridge';
|
|
20269
|
+
} | {
|
|
20270
|
+
message: string;
|
|
20271
|
+
is_device_error: true;
|
|
20272
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20273
|
+
error_code: 'salto_site_user_limit_reached';
|
|
20274
|
+
} | {
|
|
20275
|
+
message: string;
|
|
20276
|
+
is_device_error: true;
|
|
20277
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20278
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
20279
|
+
} | {
|
|
20280
|
+
message: string;
|
|
20281
|
+
is_device_error: true;
|
|
20282
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20283
|
+
error_code: 'missing_device_credentials';
|
|
20284
|
+
} | {
|
|
20285
|
+
message: string;
|
|
20286
|
+
is_device_error: true;
|
|
20287
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20288
|
+
error_code: 'auxiliary_heat_running';
|
|
20289
|
+
} | {
|
|
20290
|
+
message: string;
|
|
20291
|
+
is_device_error: true;
|
|
20292
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20293
|
+
error_code: 'subscription_required';
|
|
20294
|
+
}) | {
|
|
19136
20295
|
message: string;
|
|
19137
20296
|
is_connected_account_error: true;
|
|
19138
20297
|
error_code: string;
|
|
@@ -21702,11 +22861,72 @@ export interface Routes {
|
|
|
21702
22861
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
21703
22862
|
workspace_id: string;
|
|
21704
22863
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
21705
|
-
errors: Array<{
|
|
22864
|
+
errors: Array<({
|
|
21706
22865
|
message: string;
|
|
21707
22866
|
is_device_error: true;
|
|
21708
|
-
|
|
22867
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22868
|
+
error_code: 'device_offline';
|
|
22869
|
+
} | {
|
|
22870
|
+
message: string;
|
|
22871
|
+
is_device_error: true;
|
|
22872
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22873
|
+
error_code: 'device_removed';
|
|
22874
|
+
} | {
|
|
22875
|
+
message: string;
|
|
22876
|
+
is_device_error: true;
|
|
22877
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22878
|
+
error_code: 'account_disconnected';
|
|
22879
|
+
} | {
|
|
22880
|
+
message: string;
|
|
22881
|
+
is_device_error: true;
|
|
22882
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22883
|
+
error_code: 'hub_disconnected';
|
|
22884
|
+
} | {
|
|
22885
|
+
message: string;
|
|
22886
|
+
is_device_error: true;
|
|
22887
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22888
|
+
error_code: 'device_disconnected';
|
|
22889
|
+
} | {
|
|
22890
|
+
message: string;
|
|
22891
|
+
is_device_error: true;
|
|
22892
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22893
|
+
error_code: 'empty_backup_access_code_pool';
|
|
22894
|
+
} | {
|
|
22895
|
+
message: string;
|
|
22896
|
+
is_device_error: true;
|
|
22897
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22898
|
+
error_code: 'august_lock_not_authorized';
|
|
22899
|
+
} | {
|
|
22900
|
+
message: string;
|
|
22901
|
+
is_device_error: true;
|
|
22902
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22903
|
+
error_code: 'august_lock_missing_bridge';
|
|
22904
|
+
} | {
|
|
22905
|
+
message: string;
|
|
22906
|
+
is_device_error: true;
|
|
22907
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22908
|
+
error_code: 'salto_site_user_limit_reached';
|
|
22909
|
+
} | {
|
|
22910
|
+
message: string;
|
|
22911
|
+
is_device_error: true;
|
|
22912
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22913
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
22914
|
+
} | {
|
|
22915
|
+
message: string;
|
|
22916
|
+
is_device_error: true;
|
|
22917
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22918
|
+
error_code: 'missing_device_credentials';
|
|
22919
|
+
} | {
|
|
22920
|
+
message: string;
|
|
22921
|
+
is_device_error: true;
|
|
22922
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22923
|
+
error_code: 'auxiliary_heat_running';
|
|
21709
22924
|
} | {
|
|
22925
|
+
message: string;
|
|
22926
|
+
is_device_error: true;
|
|
22927
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22928
|
+
error_code: 'subscription_required';
|
|
22929
|
+
}) | {
|
|
21710
22930
|
message: string;
|
|
21711
22931
|
is_connected_account_error: true;
|
|
21712
22932
|
error_code: string;
|
|
@@ -21789,11 +23009,72 @@ export interface Routes {
|
|
|
21789
23009
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
21790
23010
|
workspace_id: string;
|
|
21791
23011
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
21792
|
-
errors: Array<{
|
|
23012
|
+
errors: Array<({
|
|
21793
23013
|
message: string;
|
|
21794
23014
|
is_device_error: true;
|
|
21795
|
-
|
|
23015
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23016
|
+
error_code: 'device_offline';
|
|
23017
|
+
} | {
|
|
23018
|
+
message: string;
|
|
23019
|
+
is_device_error: true;
|
|
23020
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23021
|
+
error_code: 'device_removed';
|
|
23022
|
+
} | {
|
|
23023
|
+
message: string;
|
|
23024
|
+
is_device_error: true;
|
|
23025
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23026
|
+
error_code: 'account_disconnected';
|
|
23027
|
+
} | {
|
|
23028
|
+
message: string;
|
|
23029
|
+
is_device_error: true;
|
|
23030
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23031
|
+
error_code: 'hub_disconnected';
|
|
23032
|
+
} | {
|
|
23033
|
+
message: string;
|
|
23034
|
+
is_device_error: true;
|
|
23035
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23036
|
+
error_code: 'device_disconnected';
|
|
23037
|
+
} | {
|
|
23038
|
+
message: string;
|
|
23039
|
+
is_device_error: true;
|
|
23040
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23041
|
+
error_code: 'empty_backup_access_code_pool';
|
|
23042
|
+
} | {
|
|
23043
|
+
message: string;
|
|
23044
|
+
is_device_error: true;
|
|
23045
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23046
|
+
error_code: 'august_lock_not_authorized';
|
|
23047
|
+
} | {
|
|
23048
|
+
message: string;
|
|
23049
|
+
is_device_error: true;
|
|
23050
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23051
|
+
error_code: 'august_lock_missing_bridge';
|
|
23052
|
+
} | {
|
|
23053
|
+
message: string;
|
|
23054
|
+
is_device_error: true;
|
|
23055
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23056
|
+
error_code: 'salto_site_user_limit_reached';
|
|
23057
|
+
} | {
|
|
23058
|
+
message: string;
|
|
23059
|
+
is_device_error: true;
|
|
23060
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23061
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
23062
|
+
} | {
|
|
23063
|
+
message: string;
|
|
23064
|
+
is_device_error: true;
|
|
23065
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23066
|
+
error_code: 'missing_device_credentials';
|
|
23067
|
+
} | {
|
|
23068
|
+
message: string;
|
|
23069
|
+
is_device_error: true;
|
|
23070
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23071
|
+
error_code: 'auxiliary_heat_running';
|
|
21796
23072
|
} | {
|
|
23073
|
+
message: string;
|
|
23074
|
+
is_device_error: true;
|
|
23075
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23076
|
+
error_code: 'subscription_required';
|
|
23077
|
+
}) | {
|
|
21797
23078
|
message: string;
|
|
21798
23079
|
is_connected_account_error: true;
|
|
21799
23080
|
error_code: string;
|
|
@@ -23987,11 +25268,72 @@ export interface Routes {
|
|
|
23987
25268
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
23988
25269
|
workspace_id: string;
|
|
23989
25270
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
23990
|
-
errors: Array<{
|
|
25271
|
+
errors: Array<({
|
|
23991
25272
|
message: string;
|
|
23992
25273
|
is_device_error: true;
|
|
23993
|
-
|
|
25274
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25275
|
+
error_code: 'device_offline';
|
|
25276
|
+
} | {
|
|
25277
|
+
message: string;
|
|
25278
|
+
is_device_error: true;
|
|
25279
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25280
|
+
error_code: 'device_removed';
|
|
25281
|
+
} | {
|
|
25282
|
+
message: string;
|
|
25283
|
+
is_device_error: true;
|
|
25284
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25285
|
+
error_code: 'account_disconnected';
|
|
25286
|
+
} | {
|
|
25287
|
+
message: string;
|
|
25288
|
+
is_device_error: true;
|
|
25289
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25290
|
+
error_code: 'hub_disconnected';
|
|
25291
|
+
} | {
|
|
25292
|
+
message: string;
|
|
25293
|
+
is_device_error: true;
|
|
25294
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25295
|
+
error_code: 'device_disconnected';
|
|
25296
|
+
} | {
|
|
25297
|
+
message: string;
|
|
25298
|
+
is_device_error: true;
|
|
25299
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25300
|
+
error_code: 'empty_backup_access_code_pool';
|
|
25301
|
+
} | {
|
|
25302
|
+
message: string;
|
|
25303
|
+
is_device_error: true;
|
|
25304
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25305
|
+
error_code: 'august_lock_not_authorized';
|
|
25306
|
+
} | {
|
|
25307
|
+
message: string;
|
|
25308
|
+
is_device_error: true;
|
|
25309
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25310
|
+
error_code: 'august_lock_missing_bridge';
|
|
25311
|
+
} | {
|
|
25312
|
+
message: string;
|
|
25313
|
+
is_device_error: true;
|
|
25314
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25315
|
+
error_code: 'salto_site_user_limit_reached';
|
|
25316
|
+
} | {
|
|
25317
|
+
message: string;
|
|
25318
|
+
is_device_error: true;
|
|
25319
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25320
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
25321
|
+
} | {
|
|
25322
|
+
message: string;
|
|
25323
|
+
is_device_error: true;
|
|
25324
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25325
|
+
error_code: 'missing_device_credentials';
|
|
25326
|
+
} | {
|
|
25327
|
+
message: string;
|
|
25328
|
+
is_device_error: true;
|
|
25329
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25330
|
+
error_code: 'auxiliary_heat_running';
|
|
23994
25331
|
} | {
|
|
25332
|
+
message: string;
|
|
25333
|
+
is_device_error: true;
|
|
25334
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25335
|
+
error_code: 'subscription_required';
|
|
25336
|
+
}) | {
|
|
23995
25337
|
message: string;
|
|
23996
25338
|
is_connected_account_error: true;
|
|
23997
25339
|
error_code: string;
|
|
@@ -26170,11 +27512,72 @@ export interface Routes {
|
|
|
26170
27512
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
26171
27513
|
workspace_id: string;
|
|
26172
27514
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
26173
|
-
errors: Array<{
|
|
27515
|
+
errors: Array<({
|
|
26174
27516
|
message: string;
|
|
26175
27517
|
is_device_error: true;
|
|
26176
|
-
|
|
27518
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27519
|
+
error_code: 'device_offline';
|
|
27520
|
+
} | {
|
|
27521
|
+
message: string;
|
|
27522
|
+
is_device_error: true;
|
|
27523
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27524
|
+
error_code: 'device_removed';
|
|
27525
|
+
} | {
|
|
27526
|
+
message: string;
|
|
27527
|
+
is_device_error: true;
|
|
27528
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27529
|
+
error_code: 'account_disconnected';
|
|
26177
27530
|
} | {
|
|
27531
|
+
message: string;
|
|
27532
|
+
is_device_error: true;
|
|
27533
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27534
|
+
error_code: 'hub_disconnected';
|
|
27535
|
+
} | {
|
|
27536
|
+
message: string;
|
|
27537
|
+
is_device_error: true;
|
|
27538
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27539
|
+
error_code: 'device_disconnected';
|
|
27540
|
+
} | {
|
|
27541
|
+
message: string;
|
|
27542
|
+
is_device_error: true;
|
|
27543
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27544
|
+
error_code: 'empty_backup_access_code_pool';
|
|
27545
|
+
} | {
|
|
27546
|
+
message: string;
|
|
27547
|
+
is_device_error: true;
|
|
27548
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27549
|
+
error_code: 'august_lock_not_authorized';
|
|
27550
|
+
} | {
|
|
27551
|
+
message: string;
|
|
27552
|
+
is_device_error: true;
|
|
27553
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27554
|
+
error_code: 'august_lock_missing_bridge';
|
|
27555
|
+
} | {
|
|
27556
|
+
message: string;
|
|
27557
|
+
is_device_error: true;
|
|
27558
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27559
|
+
error_code: 'salto_site_user_limit_reached';
|
|
27560
|
+
} | {
|
|
27561
|
+
message: string;
|
|
27562
|
+
is_device_error: true;
|
|
27563
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27564
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
27565
|
+
} | {
|
|
27566
|
+
message: string;
|
|
27567
|
+
is_device_error: true;
|
|
27568
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27569
|
+
error_code: 'missing_device_credentials';
|
|
27570
|
+
} | {
|
|
27571
|
+
message: string;
|
|
27572
|
+
is_device_error: true;
|
|
27573
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27574
|
+
error_code: 'auxiliary_heat_running';
|
|
27575
|
+
} | {
|
|
27576
|
+
message: string;
|
|
27577
|
+
is_device_error: true;
|
|
27578
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27579
|
+
error_code: 'subscription_required';
|
|
27580
|
+
}) | {
|
|
26178
27581
|
message: string;
|
|
26179
27582
|
is_connected_account_error: true;
|
|
26180
27583
|
error_code: string;
|
|
@@ -26690,11 +28093,72 @@ export interface Routes {
|
|
|
26690
28093
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
26691
28094
|
workspace_id: string;
|
|
26692
28095
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
26693
|
-
errors: Array<{
|
|
28096
|
+
errors: Array<({
|
|
26694
28097
|
message: string;
|
|
26695
28098
|
is_device_error: true;
|
|
26696
|
-
|
|
28099
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28100
|
+
error_code: 'device_offline';
|
|
28101
|
+
} | {
|
|
28102
|
+
message: string;
|
|
28103
|
+
is_device_error: true;
|
|
28104
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28105
|
+
error_code: 'device_removed';
|
|
28106
|
+
} | {
|
|
28107
|
+
message: string;
|
|
28108
|
+
is_device_error: true;
|
|
28109
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28110
|
+
error_code: 'account_disconnected';
|
|
28111
|
+
} | {
|
|
28112
|
+
message: string;
|
|
28113
|
+
is_device_error: true;
|
|
28114
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28115
|
+
error_code: 'hub_disconnected';
|
|
28116
|
+
} | {
|
|
28117
|
+
message: string;
|
|
28118
|
+
is_device_error: true;
|
|
28119
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28120
|
+
error_code: 'device_disconnected';
|
|
28121
|
+
} | {
|
|
28122
|
+
message: string;
|
|
28123
|
+
is_device_error: true;
|
|
28124
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28125
|
+
error_code: 'empty_backup_access_code_pool';
|
|
28126
|
+
} | {
|
|
28127
|
+
message: string;
|
|
28128
|
+
is_device_error: true;
|
|
28129
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28130
|
+
error_code: 'august_lock_not_authorized';
|
|
28131
|
+
} | {
|
|
28132
|
+
message: string;
|
|
28133
|
+
is_device_error: true;
|
|
28134
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28135
|
+
error_code: 'august_lock_missing_bridge';
|
|
28136
|
+
} | {
|
|
28137
|
+
message: string;
|
|
28138
|
+
is_device_error: true;
|
|
28139
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28140
|
+
error_code: 'salto_site_user_limit_reached';
|
|
28141
|
+
} | {
|
|
28142
|
+
message: string;
|
|
28143
|
+
is_device_error: true;
|
|
28144
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28145
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
28146
|
+
} | {
|
|
28147
|
+
message: string;
|
|
28148
|
+
is_device_error: true;
|
|
28149
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28150
|
+
error_code: 'missing_device_credentials';
|
|
28151
|
+
} | {
|
|
28152
|
+
message: string;
|
|
28153
|
+
is_device_error: true;
|
|
28154
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28155
|
+
error_code: 'auxiliary_heat_running';
|
|
26697
28156
|
} | {
|
|
28157
|
+
message: string;
|
|
28158
|
+
is_device_error: true;
|
|
28159
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28160
|
+
error_code: 'subscription_required';
|
|
28161
|
+
}) | {
|
|
26698
28162
|
message: string;
|
|
26699
28163
|
is_connected_account_error: true;
|
|
26700
28164
|
error_code: string;
|
|
@@ -30134,11 +31598,72 @@ export interface Routes {
|
|
|
30134
31598
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
30135
31599
|
workspace_id: string;
|
|
30136
31600
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
30137
|
-
errors: Array<{
|
|
31601
|
+
errors: Array<({
|
|
30138
31602
|
message: string;
|
|
30139
31603
|
is_device_error: true;
|
|
30140
|
-
|
|
31604
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31605
|
+
error_code: 'device_offline';
|
|
31606
|
+
} | {
|
|
31607
|
+
message: string;
|
|
31608
|
+
is_device_error: true;
|
|
31609
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31610
|
+
error_code: 'device_removed';
|
|
31611
|
+
} | {
|
|
31612
|
+
message: string;
|
|
31613
|
+
is_device_error: true;
|
|
31614
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31615
|
+
error_code: 'account_disconnected';
|
|
31616
|
+
} | {
|
|
31617
|
+
message: string;
|
|
31618
|
+
is_device_error: true;
|
|
31619
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31620
|
+
error_code: 'hub_disconnected';
|
|
31621
|
+
} | {
|
|
31622
|
+
message: string;
|
|
31623
|
+
is_device_error: true;
|
|
31624
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31625
|
+
error_code: 'device_disconnected';
|
|
31626
|
+
} | {
|
|
31627
|
+
message: string;
|
|
31628
|
+
is_device_error: true;
|
|
31629
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31630
|
+
error_code: 'empty_backup_access_code_pool';
|
|
31631
|
+
} | {
|
|
31632
|
+
message: string;
|
|
31633
|
+
is_device_error: true;
|
|
31634
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31635
|
+
error_code: 'august_lock_not_authorized';
|
|
31636
|
+
} | {
|
|
31637
|
+
message: string;
|
|
31638
|
+
is_device_error: true;
|
|
31639
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31640
|
+
error_code: 'august_lock_missing_bridge';
|
|
31641
|
+
} | {
|
|
31642
|
+
message: string;
|
|
31643
|
+
is_device_error: true;
|
|
31644
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31645
|
+
error_code: 'salto_site_user_limit_reached';
|
|
31646
|
+
} | {
|
|
31647
|
+
message: string;
|
|
31648
|
+
is_device_error: true;
|
|
31649
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31650
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
31651
|
+
} | {
|
|
31652
|
+
message: string;
|
|
31653
|
+
is_device_error: true;
|
|
31654
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31655
|
+
error_code: 'missing_device_credentials';
|
|
31656
|
+
} | {
|
|
31657
|
+
message: string;
|
|
31658
|
+
is_device_error: true;
|
|
31659
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31660
|
+
error_code: 'auxiliary_heat_running';
|
|
30141
31661
|
} | {
|
|
31662
|
+
message: string;
|
|
31663
|
+
is_device_error: true;
|
|
31664
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31665
|
+
error_code: 'subscription_required';
|
|
31666
|
+
}) | {
|
|
30142
31667
|
message: string;
|
|
30143
31668
|
is_connected_account_error: true;
|
|
30144
31669
|
error_code: string;
|
|
@@ -30656,11 +32181,72 @@ export interface Routes {
|
|
|
30656
32181
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
30657
32182
|
workspace_id: string;
|
|
30658
32183
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
30659
|
-
errors: Array<{
|
|
32184
|
+
errors: Array<({
|
|
30660
32185
|
message: string;
|
|
30661
32186
|
is_device_error: true;
|
|
30662
|
-
|
|
32187
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32188
|
+
error_code: 'device_offline';
|
|
32189
|
+
} | {
|
|
32190
|
+
message: string;
|
|
32191
|
+
is_device_error: true;
|
|
32192
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32193
|
+
error_code: 'device_removed';
|
|
32194
|
+
} | {
|
|
32195
|
+
message: string;
|
|
32196
|
+
is_device_error: true;
|
|
32197
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32198
|
+
error_code: 'account_disconnected';
|
|
32199
|
+
} | {
|
|
32200
|
+
message: string;
|
|
32201
|
+
is_device_error: true;
|
|
32202
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32203
|
+
error_code: 'hub_disconnected';
|
|
32204
|
+
} | {
|
|
32205
|
+
message: string;
|
|
32206
|
+
is_device_error: true;
|
|
32207
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32208
|
+
error_code: 'device_disconnected';
|
|
32209
|
+
} | {
|
|
32210
|
+
message: string;
|
|
32211
|
+
is_device_error: true;
|
|
32212
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32213
|
+
error_code: 'empty_backup_access_code_pool';
|
|
32214
|
+
} | {
|
|
32215
|
+
message: string;
|
|
32216
|
+
is_device_error: true;
|
|
32217
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32218
|
+
error_code: 'august_lock_not_authorized';
|
|
32219
|
+
} | {
|
|
32220
|
+
message: string;
|
|
32221
|
+
is_device_error: true;
|
|
32222
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32223
|
+
error_code: 'august_lock_missing_bridge';
|
|
32224
|
+
} | {
|
|
32225
|
+
message: string;
|
|
32226
|
+
is_device_error: true;
|
|
32227
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32228
|
+
error_code: 'salto_site_user_limit_reached';
|
|
32229
|
+
} | {
|
|
32230
|
+
message: string;
|
|
32231
|
+
is_device_error: true;
|
|
32232
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32233
|
+
error_code: 'ttlock_lock_not_paired_to_gateway';
|
|
32234
|
+
} | {
|
|
32235
|
+
message: string;
|
|
32236
|
+
is_device_error: true;
|
|
32237
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32238
|
+
error_code: 'missing_device_credentials';
|
|
32239
|
+
} | {
|
|
32240
|
+
message: string;
|
|
32241
|
+
is_device_error: true;
|
|
32242
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32243
|
+
error_code: 'auxiliary_heat_running';
|
|
30663
32244
|
} | {
|
|
32245
|
+
message: string;
|
|
32246
|
+
is_device_error: true;
|
|
32247
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32248
|
+
error_code: 'subscription_required';
|
|
32249
|
+
}) | {
|
|
30664
32250
|
message: string;
|
|
30665
32251
|
is_connected_account_error: true;
|
|
30666
32252
|
error_code: string;
|