@seamapi/types 1.324.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 +991 -49
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3076 -281
- 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/openapi.d.ts +124 -79
- package/lib/seam/connect/openapi.js +925 -35
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1630 -44
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +118 -3
- package/src/lib/seam/connect/openapi.ts +995 -35
- package/src/lib/seam/connect/route-types.ts +2080 -130
|
@@ -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';
|
|
936
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';
|
|
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';
|
|
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';
|
|
1833
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';
|
|
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';
|
|
1908
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';
|
|
1981
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';
|
|
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';
|
|
2348
|
+
} | {
|
|
2349
|
+
message: string;
|
|
2350
|
+
is_device_error: true;
|
|
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';
|
|
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';
|
|
2038
2398
|
} | {
|
|
2039
2399
|
message: string;
|
|
2040
2400
|
is_device_error: true;
|
|
2041
|
-
|
|
2401
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2402
|
+
error_code: 'auxiliary_heat_running';
|
|
2042
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';
|
|
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';
|
|
2111
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;
|
|
@@ -2977,11 +3404,72 @@ export interface Routes {
|
|
|
2977
3404
|
message: string;
|
|
2978
3405
|
is_access_code_error: true;
|
|
2979
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';
|
|
2980
3412
|
} | {
|
|
2981
3413
|
message: string;
|
|
2982
3414
|
is_device_error: true;
|
|
2983
|
-
|
|
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';
|
|
3437
|
+
} | {
|
|
3438
|
+
message: string;
|
|
3439
|
+
is_device_error: true;
|
|
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';
|
|
3036
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';
|
|
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<({
|
|
12284
|
+
message: string;
|
|
12285
|
+
is_device_error: true;
|
|
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';
|
|
12343
|
+
} | {
|
|
11674
12344
|
message: string;
|
|
11675
12345
|
is_device_error: true;
|
|
11676
|
-
|
|
11677
|
-
|
|
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<({
|
|
11934
12666
|
message: string;
|
|
11935
12667
|
is_device_error: true;
|
|
11936
|
-
|
|
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
|
+
} | {
|
|
12696
|
+
message: string;
|
|
12697
|
+
is_device_error: true;
|
|
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';
|
|
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';
|
|
11937
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;
|
|
@@ -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;
|