@seamapi/types 1.363.0 → 1.364.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +312 -38
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1410 -102
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1486 -34
- package/lib/seam/connect/models/access-codes/managed-access-code.js +135 -11
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +306 -21
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +240 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +594 -45
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +152 -12
- package/src/lib/seam/connect/openapi.ts +252 -32
- package/src/lib/seam/connect/route-types.ts +648 -54
|
@@ -928,98 +928,147 @@ export interface Routes {
|
|
|
928
928
|
errors: Array<{
|
|
929
929
|
message: string;
|
|
930
930
|
is_access_code_error: true;
|
|
931
|
+
created_at?: string | undefined;
|
|
931
932
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
932
933
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
933
934
|
} | {
|
|
934
935
|
message: string;
|
|
935
936
|
is_access_code_error: true;
|
|
937
|
+
created_at?: string | undefined;
|
|
936
938
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
937
939
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
938
940
|
} | {
|
|
939
941
|
message: string;
|
|
940
942
|
is_access_code_error: true;
|
|
943
|
+
created_at?: string | undefined;
|
|
944
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
945
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
946
|
+
} | {
|
|
947
|
+
message: string;
|
|
948
|
+
is_access_code_error: true;
|
|
949
|
+
created_at?: string | undefined;
|
|
941
950
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
942
951
|
error_code: 'failed_to_set_on_device';
|
|
943
952
|
} | {
|
|
944
953
|
message: string;
|
|
945
954
|
is_access_code_error: true;
|
|
955
|
+
created_at?: string | undefined;
|
|
946
956
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
947
957
|
error_code: 'failed_to_remove_from_device';
|
|
948
958
|
} | {
|
|
949
959
|
message: string;
|
|
950
960
|
is_access_code_error: true;
|
|
961
|
+
created_at?: string | undefined;
|
|
951
962
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
952
963
|
error_code: 'duplicate_code_on_device';
|
|
953
964
|
} | {
|
|
954
965
|
message: string;
|
|
955
966
|
is_access_code_error: true;
|
|
967
|
+
created_at?: string | undefined;
|
|
956
968
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
957
969
|
error_code: 'duplicate_code_attempt_prevented';
|
|
958
970
|
} | {
|
|
959
971
|
message: string;
|
|
960
972
|
is_access_code_error: true;
|
|
973
|
+
created_at?: string | undefined;
|
|
961
974
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
962
975
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
963
976
|
} | {
|
|
964
977
|
message: string;
|
|
965
978
|
is_access_code_error: true;
|
|
979
|
+
created_at?: string | undefined;
|
|
966
980
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
967
981
|
error_code: 'igloohome_bridge_offline';
|
|
968
982
|
} | {
|
|
969
983
|
message: string;
|
|
970
984
|
is_access_code_error: true;
|
|
985
|
+
created_at?: string | undefined;
|
|
971
986
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
972
987
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
973
988
|
} | {
|
|
974
989
|
message: string;
|
|
975
990
|
is_access_code_error: true;
|
|
991
|
+
created_at?: string | undefined;
|
|
976
992
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
977
993
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
978
994
|
} | {
|
|
979
995
|
message: string;
|
|
980
996
|
is_access_code_error: true;
|
|
997
|
+
created_at?: string | undefined;
|
|
981
998
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
982
999
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
983
1000
|
} | {
|
|
984
1001
|
message: string;
|
|
985
1002
|
is_access_code_error: true;
|
|
1003
|
+
created_at?: string | undefined;
|
|
986
1004
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
987
1005
|
error_code: 'code_modified_external_to_seam';
|
|
988
1006
|
} | {
|
|
989
1007
|
message: string;
|
|
990
1008
|
is_access_code_error: true;
|
|
1009
|
+
created_at?: string | undefined;
|
|
991
1010
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
992
1011
|
error_code: 'august_lock_invalid_code_length';
|
|
993
1012
|
} | {
|
|
994
1013
|
message: string;
|
|
995
1014
|
is_access_code_error: true;
|
|
1015
|
+
created_at?: string | undefined;
|
|
996
1016
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
997
1017
|
error_code: 'august_device_programming_delay';
|
|
998
1018
|
} | {
|
|
999
1019
|
message: string;
|
|
1000
1020
|
is_access_code_error: true;
|
|
1021
|
+
created_at?: string | undefined;
|
|
1001
1022
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1002
1023
|
error_code: 'august_device_slots_full';
|
|
1003
1024
|
} | {
|
|
1004
1025
|
message: string;
|
|
1005
1026
|
is_access_code_error: true;
|
|
1027
|
+
created_at?: string | undefined;
|
|
1006
1028
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1007
1029
|
error_code: 'august_lock_missing_keypad';
|
|
1008
1030
|
} | {
|
|
1009
1031
|
message: string;
|
|
1010
1032
|
is_access_code_error: true;
|
|
1033
|
+
created_at?: string | undefined;
|
|
1034
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1035
|
+
error_code: 'august_lock_temporarily_offline';
|
|
1036
|
+
} | {
|
|
1037
|
+
message: string;
|
|
1038
|
+
is_access_code_error: true;
|
|
1039
|
+
created_at?: string | undefined;
|
|
1011
1040
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1012
|
-
error_code: '
|
|
1041
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
1013
1042
|
} | {
|
|
1014
1043
|
message: string;
|
|
1015
1044
|
is_access_code_error: true;
|
|
1045
|
+
created_at?: string | undefined;
|
|
1016
1046
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1017
1047
|
error_code: 'hubitat_device_programming_delay';
|
|
1018
1048
|
} | {
|
|
1019
1049
|
message: string;
|
|
1020
1050
|
is_access_code_error: true;
|
|
1051
|
+
created_at?: string | undefined;
|
|
1021
1052
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1022
1053
|
error_code: 'hubitat_no_free_positions_available';
|
|
1054
|
+
} | {
|
|
1055
|
+
message: string;
|
|
1056
|
+
is_access_code_error: true;
|
|
1057
|
+
created_at?: string | undefined;
|
|
1058
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1059
|
+
error_code: 'wyze_duplicate_code_name';
|
|
1060
|
+
} | {
|
|
1061
|
+
message: string;
|
|
1062
|
+
is_access_code_error: true;
|
|
1063
|
+
created_at?: string | undefined;
|
|
1064
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1065
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
1066
|
+
} | {
|
|
1067
|
+
message: string;
|
|
1068
|
+
is_access_code_error: true;
|
|
1069
|
+
created_at?: string | undefined;
|
|
1070
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1071
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
1023
1072
|
} | {
|
|
1024
1073
|
message: string;
|
|
1025
1074
|
is_device_error: false;
|
|
@@ -1111,50 +1160,62 @@ export interface Routes {
|
|
|
1111
1160
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1112
1161
|
warnings: Array<{
|
|
1113
1162
|
message: string;
|
|
1163
|
+
created_at?: string | undefined;
|
|
1114
1164
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1115
1165
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
1116
1166
|
} | {
|
|
1117
1167
|
message: string;
|
|
1168
|
+
created_at?: string | undefined;
|
|
1118
1169
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1119
1170
|
warning_code: 'schlage_detected_duplicate';
|
|
1120
1171
|
} | {
|
|
1121
1172
|
message: string;
|
|
1173
|
+
created_at?: string | undefined;
|
|
1122
1174
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1123
1175
|
warning_code: 'schlage_creation_outage';
|
|
1124
1176
|
} | {
|
|
1125
1177
|
message: string;
|
|
1126
|
-
|
|
1127
|
-
warning_code: 'salto_office_mode';
|
|
1128
|
-
} | {
|
|
1129
|
-
message: string;
|
|
1178
|
+
created_at?: string | undefined;
|
|
1130
1179
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1131
1180
|
warning_code: 'code_modified_external_to_seam';
|
|
1132
1181
|
} | {
|
|
1133
1182
|
message: string;
|
|
1183
|
+
created_at?: string | undefined;
|
|
1134
1184
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1135
1185
|
warning_code: 'delay_in_setting_on_device';
|
|
1136
1186
|
} | {
|
|
1137
1187
|
message: string;
|
|
1188
|
+
created_at?: string | undefined;
|
|
1138
1189
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1139
1190
|
warning_code: 'delay_in_removing_from_device';
|
|
1140
1191
|
} | {
|
|
1141
1192
|
message: string;
|
|
1193
|
+
created_at?: string | undefined;
|
|
1142
1194
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1143
1195
|
warning_code: 'third_party_integration_detected';
|
|
1144
1196
|
} | {
|
|
1145
1197
|
message: string;
|
|
1198
|
+
created_at?: string | undefined;
|
|
1146
1199
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1147
1200
|
warning_code: 'august_device_programming_delay';
|
|
1148
1201
|
} | {
|
|
1149
1202
|
message: string;
|
|
1203
|
+
created_at?: string | undefined;
|
|
1204
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1205
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
1206
|
+
} | {
|
|
1207
|
+
message: string;
|
|
1208
|
+
created_at?: string | undefined;
|
|
1150
1209
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1151
1210
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
1152
1211
|
} | {
|
|
1153
1212
|
message: string;
|
|
1213
|
+
created_at?: string | undefined;
|
|
1154
1214
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1155
1215
|
warning_code: 'management_transferred';
|
|
1156
1216
|
} | {
|
|
1157
1217
|
message: string;
|
|
1218
|
+
created_at?: string | undefined;
|
|
1158
1219
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1159
1220
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
1160
1221
|
}>;
|
|
@@ -1231,98 +1292,147 @@ export interface Routes {
|
|
|
1231
1292
|
errors: Array<{
|
|
1232
1293
|
message: string;
|
|
1233
1294
|
is_access_code_error: true;
|
|
1295
|
+
created_at?: string | undefined;
|
|
1234
1296
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1235
1297
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
1236
1298
|
} | {
|
|
1237
1299
|
message: string;
|
|
1238
1300
|
is_access_code_error: true;
|
|
1301
|
+
created_at?: string | undefined;
|
|
1239
1302
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1240
1303
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
1241
1304
|
} | {
|
|
1242
1305
|
message: string;
|
|
1243
1306
|
is_access_code_error: true;
|
|
1307
|
+
created_at?: string | undefined;
|
|
1308
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1309
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
1310
|
+
} | {
|
|
1311
|
+
message: string;
|
|
1312
|
+
is_access_code_error: true;
|
|
1313
|
+
created_at?: string | undefined;
|
|
1244
1314
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1245
1315
|
error_code: 'failed_to_set_on_device';
|
|
1246
1316
|
} | {
|
|
1247
1317
|
message: string;
|
|
1248
1318
|
is_access_code_error: true;
|
|
1319
|
+
created_at?: string | undefined;
|
|
1249
1320
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1250
1321
|
error_code: 'failed_to_remove_from_device';
|
|
1251
1322
|
} | {
|
|
1252
1323
|
message: string;
|
|
1253
1324
|
is_access_code_error: true;
|
|
1325
|
+
created_at?: string | undefined;
|
|
1254
1326
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1255
1327
|
error_code: 'duplicate_code_on_device';
|
|
1256
1328
|
} | {
|
|
1257
1329
|
message: string;
|
|
1258
1330
|
is_access_code_error: true;
|
|
1331
|
+
created_at?: string | undefined;
|
|
1259
1332
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1260
1333
|
error_code: 'duplicate_code_attempt_prevented';
|
|
1261
1334
|
} | {
|
|
1262
1335
|
message: string;
|
|
1263
1336
|
is_access_code_error: true;
|
|
1337
|
+
created_at?: string | undefined;
|
|
1264
1338
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1265
1339
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
1266
1340
|
} | {
|
|
1267
1341
|
message: string;
|
|
1268
1342
|
is_access_code_error: true;
|
|
1343
|
+
created_at?: string | undefined;
|
|
1269
1344
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1270
1345
|
error_code: 'igloohome_bridge_offline';
|
|
1271
1346
|
} | {
|
|
1272
1347
|
message: string;
|
|
1273
1348
|
is_access_code_error: true;
|
|
1349
|
+
created_at?: string | undefined;
|
|
1274
1350
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1275
1351
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
1276
1352
|
} | {
|
|
1277
1353
|
message: string;
|
|
1278
1354
|
is_access_code_error: true;
|
|
1355
|
+
created_at?: string | undefined;
|
|
1279
1356
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1280
1357
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
1281
1358
|
} | {
|
|
1282
1359
|
message: string;
|
|
1283
1360
|
is_access_code_error: true;
|
|
1361
|
+
created_at?: string | undefined;
|
|
1284
1362
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1285
1363
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
1286
1364
|
} | {
|
|
1287
1365
|
message: string;
|
|
1288
1366
|
is_access_code_error: true;
|
|
1367
|
+
created_at?: string | undefined;
|
|
1289
1368
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1290
1369
|
error_code: 'code_modified_external_to_seam';
|
|
1291
1370
|
} | {
|
|
1292
1371
|
message: string;
|
|
1293
1372
|
is_access_code_error: true;
|
|
1373
|
+
created_at?: string | undefined;
|
|
1294
1374
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1295
1375
|
error_code: 'august_lock_invalid_code_length';
|
|
1296
1376
|
} | {
|
|
1297
1377
|
message: string;
|
|
1298
1378
|
is_access_code_error: true;
|
|
1379
|
+
created_at?: string | undefined;
|
|
1299
1380
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1300
1381
|
error_code: 'august_device_programming_delay';
|
|
1301
1382
|
} | {
|
|
1302
1383
|
message: string;
|
|
1303
1384
|
is_access_code_error: true;
|
|
1385
|
+
created_at?: string | undefined;
|
|
1304
1386
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1305
1387
|
error_code: 'august_device_slots_full';
|
|
1306
1388
|
} | {
|
|
1307
1389
|
message: string;
|
|
1308
1390
|
is_access_code_error: true;
|
|
1391
|
+
created_at?: string | undefined;
|
|
1309
1392
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1310
1393
|
error_code: 'august_lock_missing_keypad';
|
|
1311
1394
|
} | {
|
|
1312
1395
|
message: string;
|
|
1313
1396
|
is_access_code_error: true;
|
|
1397
|
+
created_at?: string | undefined;
|
|
1314
1398
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1315
|
-
error_code: '
|
|
1399
|
+
error_code: 'august_lock_temporarily_offline';
|
|
1316
1400
|
} | {
|
|
1317
1401
|
message: string;
|
|
1318
1402
|
is_access_code_error: true;
|
|
1403
|
+
created_at?: string | undefined;
|
|
1404
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1405
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
1406
|
+
} | {
|
|
1407
|
+
message: string;
|
|
1408
|
+
is_access_code_error: true;
|
|
1409
|
+
created_at?: string | undefined;
|
|
1319
1410
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1320
1411
|
error_code: 'hubitat_device_programming_delay';
|
|
1321
1412
|
} | {
|
|
1322
1413
|
message: string;
|
|
1323
1414
|
is_access_code_error: true;
|
|
1415
|
+
created_at?: string | undefined;
|
|
1324
1416
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1325
1417
|
error_code: 'hubitat_no_free_positions_available';
|
|
1418
|
+
} | {
|
|
1419
|
+
message: string;
|
|
1420
|
+
is_access_code_error: true;
|
|
1421
|
+
created_at?: string | undefined;
|
|
1422
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1423
|
+
error_code: 'wyze_duplicate_code_name';
|
|
1424
|
+
} | {
|
|
1425
|
+
message: string;
|
|
1426
|
+
is_access_code_error: true;
|
|
1427
|
+
created_at?: string | undefined;
|
|
1428
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1429
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
1430
|
+
} | {
|
|
1431
|
+
message: string;
|
|
1432
|
+
is_access_code_error: true;
|
|
1433
|
+
created_at?: string | undefined;
|
|
1434
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1435
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
1326
1436
|
} | {
|
|
1327
1437
|
message: string;
|
|
1328
1438
|
is_device_error: false;
|
|
@@ -1414,50 +1524,62 @@ export interface Routes {
|
|
|
1414
1524
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1415
1525
|
warnings: Array<{
|
|
1416
1526
|
message: string;
|
|
1527
|
+
created_at?: string | undefined;
|
|
1417
1528
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1418
1529
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
1419
1530
|
} | {
|
|
1420
1531
|
message: string;
|
|
1532
|
+
created_at?: string | undefined;
|
|
1421
1533
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1422
1534
|
warning_code: 'schlage_detected_duplicate';
|
|
1423
1535
|
} | {
|
|
1424
1536
|
message: string;
|
|
1537
|
+
created_at?: string | undefined;
|
|
1425
1538
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1426
1539
|
warning_code: 'schlage_creation_outage';
|
|
1427
1540
|
} | {
|
|
1428
1541
|
message: string;
|
|
1429
|
-
|
|
1430
|
-
warning_code: 'salto_office_mode';
|
|
1431
|
-
} | {
|
|
1432
|
-
message: string;
|
|
1542
|
+
created_at?: string | undefined;
|
|
1433
1543
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1434
1544
|
warning_code: 'code_modified_external_to_seam';
|
|
1435
1545
|
} | {
|
|
1436
1546
|
message: string;
|
|
1547
|
+
created_at?: string | undefined;
|
|
1437
1548
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1438
1549
|
warning_code: 'delay_in_setting_on_device';
|
|
1439
1550
|
} | {
|
|
1440
1551
|
message: string;
|
|
1552
|
+
created_at?: string | undefined;
|
|
1441
1553
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1442
1554
|
warning_code: 'delay_in_removing_from_device';
|
|
1443
1555
|
} | {
|
|
1444
1556
|
message: string;
|
|
1557
|
+
created_at?: string | undefined;
|
|
1445
1558
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1446
1559
|
warning_code: 'third_party_integration_detected';
|
|
1447
1560
|
} | {
|
|
1448
1561
|
message: string;
|
|
1562
|
+
created_at?: string | undefined;
|
|
1449
1563
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1450
1564
|
warning_code: 'august_device_programming_delay';
|
|
1451
1565
|
} | {
|
|
1452
1566
|
message: string;
|
|
1567
|
+
created_at?: string | undefined;
|
|
1568
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1569
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
1570
|
+
} | {
|
|
1571
|
+
message: string;
|
|
1572
|
+
created_at?: string | undefined;
|
|
1453
1573
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1454
1574
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
1455
1575
|
} | {
|
|
1456
1576
|
message: string;
|
|
1577
|
+
created_at?: string | undefined;
|
|
1457
1578
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1458
1579
|
warning_code: 'management_transferred';
|
|
1459
1580
|
} | {
|
|
1460
1581
|
message: string;
|
|
1582
|
+
created_at?: string | undefined;
|
|
1461
1583
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1462
1584
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
1463
1585
|
}>;
|
|
@@ -2431,98 +2553,147 @@ export interface Routes {
|
|
|
2431
2553
|
errors: Array<{
|
|
2432
2554
|
message: string;
|
|
2433
2555
|
is_access_code_error: true;
|
|
2556
|
+
created_at?: string | undefined;
|
|
2434
2557
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2435
2558
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
2436
2559
|
} | {
|
|
2437
2560
|
message: string;
|
|
2438
2561
|
is_access_code_error: true;
|
|
2562
|
+
created_at?: string | undefined;
|
|
2439
2563
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2440
2564
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
2441
2565
|
} | {
|
|
2442
2566
|
message: string;
|
|
2443
2567
|
is_access_code_error: true;
|
|
2568
|
+
created_at?: string | undefined;
|
|
2569
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2570
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
2571
|
+
} | {
|
|
2572
|
+
message: string;
|
|
2573
|
+
is_access_code_error: true;
|
|
2574
|
+
created_at?: string | undefined;
|
|
2444
2575
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2445
2576
|
error_code: 'failed_to_set_on_device';
|
|
2446
2577
|
} | {
|
|
2447
2578
|
message: string;
|
|
2448
2579
|
is_access_code_error: true;
|
|
2580
|
+
created_at?: string | undefined;
|
|
2449
2581
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2450
2582
|
error_code: 'failed_to_remove_from_device';
|
|
2451
2583
|
} | {
|
|
2452
2584
|
message: string;
|
|
2453
2585
|
is_access_code_error: true;
|
|
2586
|
+
created_at?: string | undefined;
|
|
2454
2587
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2455
2588
|
error_code: 'duplicate_code_on_device';
|
|
2456
2589
|
} | {
|
|
2457
2590
|
message: string;
|
|
2458
2591
|
is_access_code_error: true;
|
|
2592
|
+
created_at?: string | undefined;
|
|
2459
2593
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2460
2594
|
error_code: 'duplicate_code_attempt_prevented';
|
|
2461
2595
|
} | {
|
|
2462
2596
|
message: string;
|
|
2463
2597
|
is_access_code_error: true;
|
|
2598
|
+
created_at?: string | undefined;
|
|
2464
2599
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2465
2600
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
2466
2601
|
} | {
|
|
2467
2602
|
message: string;
|
|
2468
2603
|
is_access_code_error: true;
|
|
2604
|
+
created_at?: string | undefined;
|
|
2469
2605
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2470
2606
|
error_code: 'igloohome_bridge_offline';
|
|
2471
2607
|
} | {
|
|
2472
2608
|
message: string;
|
|
2473
2609
|
is_access_code_error: true;
|
|
2610
|
+
created_at?: string | undefined;
|
|
2474
2611
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2475
2612
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
2476
2613
|
} | {
|
|
2477
2614
|
message: string;
|
|
2478
2615
|
is_access_code_error: true;
|
|
2616
|
+
created_at?: string | undefined;
|
|
2479
2617
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2480
2618
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
2481
2619
|
} | {
|
|
2482
2620
|
message: string;
|
|
2483
2621
|
is_access_code_error: true;
|
|
2622
|
+
created_at?: string | undefined;
|
|
2484
2623
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2485
2624
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
2486
2625
|
} | {
|
|
2487
2626
|
message: string;
|
|
2488
2627
|
is_access_code_error: true;
|
|
2628
|
+
created_at?: string | undefined;
|
|
2489
2629
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2490
2630
|
error_code: 'code_modified_external_to_seam';
|
|
2491
2631
|
} | {
|
|
2492
2632
|
message: string;
|
|
2493
2633
|
is_access_code_error: true;
|
|
2634
|
+
created_at?: string | undefined;
|
|
2494
2635
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2495
2636
|
error_code: 'august_lock_invalid_code_length';
|
|
2496
2637
|
} | {
|
|
2497
2638
|
message: string;
|
|
2498
2639
|
is_access_code_error: true;
|
|
2640
|
+
created_at?: string | undefined;
|
|
2499
2641
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2500
2642
|
error_code: 'august_device_programming_delay';
|
|
2501
2643
|
} | {
|
|
2502
2644
|
message: string;
|
|
2503
2645
|
is_access_code_error: true;
|
|
2646
|
+
created_at?: string | undefined;
|
|
2504
2647
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2505
2648
|
error_code: 'august_device_slots_full';
|
|
2506
2649
|
} | {
|
|
2507
2650
|
message: string;
|
|
2508
2651
|
is_access_code_error: true;
|
|
2652
|
+
created_at?: string | undefined;
|
|
2509
2653
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2510
2654
|
error_code: 'august_lock_missing_keypad';
|
|
2511
2655
|
} | {
|
|
2512
2656
|
message: string;
|
|
2513
2657
|
is_access_code_error: true;
|
|
2658
|
+
created_at?: string | undefined;
|
|
2514
2659
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2515
|
-
error_code: '
|
|
2660
|
+
error_code: 'august_lock_temporarily_offline';
|
|
2516
2661
|
} | {
|
|
2517
2662
|
message: string;
|
|
2518
2663
|
is_access_code_error: true;
|
|
2664
|
+
created_at?: string | undefined;
|
|
2665
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2666
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
2667
|
+
} | {
|
|
2668
|
+
message: string;
|
|
2669
|
+
is_access_code_error: true;
|
|
2670
|
+
created_at?: string | undefined;
|
|
2519
2671
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2520
2672
|
error_code: 'hubitat_device_programming_delay';
|
|
2521
2673
|
} | {
|
|
2522
2674
|
message: string;
|
|
2523
2675
|
is_access_code_error: true;
|
|
2676
|
+
created_at?: string | undefined;
|
|
2524
2677
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2525
2678
|
error_code: 'hubitat_no_free_positions_available';
|
|
2679
|
+
} | {
|
|
2680
|
+
message: string;
|
|
2681
|
+
is_access_code_error: true;
|
|
2682
|
+
created_at?: string | undefined;
|
|
2683
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2684
|
+
error_code: 'wyze_duplicate_code_name';
|
|
2685
|
+
} | {
|
|
2686
|
+
message: string;
|
|
2687
|
+
is_access_code_error: true;
|
|
2688
|
+
created_at?: string | undefined;
|
|
2689
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2690
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
2691
|
+
} | {
|
|
2692
|
+
message: string;
|
|
2693
|
+
is_access_code_error: true;
|
|
2694
|
+
created_at?: string | undefined;
|
|
2695
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2696
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
2526
2697
|
} | {
|
|
2527
2698
|
message: string;
|
|
2528
2699
|
is_device_error: false;
|
|
@@ -2614,50 +2785,62 @@ export interface Routes {
|
|
|
2614
2785
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2615
2786
|
warnings: Array<{
|
|
2616
2787
|
message: string;
|
|
2788
|
+
created_at?: string | undefined;
|
|
2617
2789
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2618
2790
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
2619
2791
|
} | {
|
|
2620
2792
|
message: string;
|
|
2793
|
+
created_at?: string | undefined;
|
|
2621
2794
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2622
2795
|
warning_code: 'schlage_detected_duplicate';
|
|
2623
2796
|
} | {
|
|
2624
2797
|
message: string;
|
|
2798
|
+
created_at?: string | undefined;
|
|
2625
2799
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2626
2800
|
warning_code: 'schlage_creation_outage';
|
|
2627
2801
|
} | {
|
|
2628
2802
|
message: string;
|
|
2629
|
-
|
|
2630
|
-
warning_code: 'salto_office_mode';
|
|
2631
|
-
} | {
|
|
2632
|
-
message: string;
|
|
2803
|
+
created_at?: string | undefined;
|
|
2633
2804
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2634
2805
|
warning_code: 'code_modified_external_to_seam';
|
|
2635
2806
|
} | {
|
|
2636
2807
|
message: string;
|
|
2808
|
+
created_at?: string | undefined;
|
|
2637
2809
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2638
2810
|
warning_code: 'delay_in_setting_on_device';
|
|
2639
2811
|
} | {
|
|
2640
2812
|
message: string;
|
|
2813
|
+
created_at?: string | undefined;
|
|
2641
2814
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2642
2815
|
warning_code: 'delay_in_removing_from_device';
|
|
2643
2816
|
} | {
|
|
2644
2817
|
message: string;
|
|
2818
|
+
created_at?: string | undefined;
|
|
2645
2819
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2646
2820
|
warning_code: 'third_party_integration_detected';
|
|
2647
2821
|
} | {
|
|
2648
2822
|
message: string;
|
|
2823
|
+
created_at?: string | undefined;
|
|
2649
2824
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2650
2825
|
warning_code: 'august_device_programming_delay';
|
|
2651
2826
|
} | {
|
|
2652
2827
|
message: string;
|
|
2828
|
+
created_at?: string | undefined;
|
|
2829
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2830
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
2831
|
+
} | {
|
|
2832
|
+
message: string;
|
|
2833
|
+
created_at?: string | undefined;
|
|
2653
2834
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2654
2835
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
2655
2836
|
} | {
|
|
2656
2837
|
message: string;
|
|
2838
|
+
created_at?: string | undefined;
|
|
2657
2839
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2658
2840
|
warning_code: 'management_transferred';
|
|
2659
2841
|
} | {
|
|
2660
2842
|
message: string;
|
|
2843
|
+
created_at?: string | undefined;
|
|
2661
2844
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2662
2845
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
2663
2846
|
}>;
|
|
@@ -2721,98 +2904,147 @@ export interface Routes {
|
|
|
2721
2904
|
errors: Array<{
|
|
2722
2905
|
message: string;
|
|
2723
2906
|
is_access_code_error: true;
|
|
2907
|
+
created_at?: string | undefined;
|
|
2724
2908
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2725
2909
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
2726
2910
|
} | {
|
|
2727
2911
|
message: string;
|
|
2728
2912
|
is_access_code_error: true;
|
|
2913
|
+
created_at?: string | undefined;
|
|
2729
2914
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2730
2915
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
2731
2916
|
} | {
|
|
2732
2917
|
message: string;
|
|
2733
2918
|
is_access_code_error: true;
|
|
2919
|
+
created_at?: string | undefined;
|
|
2920
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2921
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
2922
|
+
} | {
|
|
2923
|
+
message: string;
|
|
2924
|
+
is_access_code_error: true;
|
|
2925
|
+
created_at?: string | undefined;
|
|
2734
2926
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2735
2927
|
error_code: 'failed_to_set_on_device';
|
|
2736
2928
|
} | {
|
|
2737
2929
|
message: string;
|
|
2738
2930
|
is_access_code_error: true;
|
|
2931
|
+
created_at?: string | undefined;
|
|
2739
2932
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2740
2933
|
error_code: 'failed_to_remove_from_device';
|
|
2741
2934
|
} | {
|
|
2742
2935
|
message: string;
|
|
2743
2936
|
is_access_code_error: true;
|
|
2937
|
+
created_at?: string | undefined;
|
|
2744
2938
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2745
2939
|
error_code: 'duplicate_code_on_device';
|
|
2746
2940
|
} | {
|
|
2747
2941
|
message: string;
|
|
2748
2942
|
is_access_code_error: true;
|
|
2943
|
+
created_at?: string | undefined;
|
|
2749
2944
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2750
2945
|
error_code: 'duplicate_code_attempt_prevented';
|
|
2751
2946
|
} | {
|
|
2752
2947
|
message: string;
|
|
2753
2948
|
is_access_code_error: true;
|
|
2949
|
+
created_at?: string | undefined;
|
|
2754
2950
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2755
2951
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
2756
2952
|
} | {
|
|
2757
2953
|
message: string;
|
|
2758
2954
|
is_access_code_error: true;
|
|
2955
|
+
created_at?: string | undefined;
|
|
2759
2956
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2760
2957
|
error_code: 'igloohome_bridge_offline';
|
|
2761
2958
|
} | {
|
|
2762
2959
|
message: string;
|
|
2763
2960
|
is_access_code_error: true;
|
|
2961
|
+
created_at?: string | undefined;
|
|
2764
2962
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2765
2963
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
2766
2964
|
} | {
|
|
2767
2965
|
message: string;
|
|
2768
2966
|
is_access_code_error: true;
|
|
2967
|
+
created_at?: string | undefined;
|
|
2769
2968
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2770
2969
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
2771
2970
|
} | {
|
|
2772
2971
|
message: string;
|
|
2773
2972
|
is_access_code_error: true;
|
|
2973
|
+
created_at?: string | undefined;
|
|
2774
2974
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2775
2975
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
2776
2976
|
} | {
|
|
2777
2977
|
message: string;
|
|
2778
2978
|
is_access_code_error: true;
|
|
2979
|
+
created_at?: string | undefined;
|
|
2779
2980
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2780
2981
|
error_code: 'code_modified_external_to_seam';
|
|
2781
2982
|
} | {
|
|
2782
2983
|
message: string;
|
|
2783
2984
|
is_access_code_error: true;
|
|
2985
|
+
created_at?: string | undefined;
|
|
2784
2986
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2785
2987
|
error_code: 'august_lock_invalid_code_length';
|
|
2786
2988
|
} | {
|
|
2787
2989
|
message: string;
|
|
2788
2990
|
is_access_code_error: true;
|
|
2991
|
+
created_at?: string | undefined;
|
|
2789
2992
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2790
2993
|
error_code: 'august_device_programming_delay';
|
|
2791
2994
|
} | {
|
|
2792
2995
|
message: string;
|
|
2793
2996
|
is_access_code_error: true;
|
|
2997
|
+
created_at?: string | undefined;
|
|
2794
2998
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2795
2999
|
error_code: 'august_device_slots_full';
|
|
2796
3000
|
} | {
|
|
2797
3001
|
message: string;
|
|
2798
3002
|
is_access_code_error: true;
|
|
3003
|
+
created_at?: string | undefined;
|
|
2799
3004
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2800
3005
|
error_code: 'august_lock_missing_keypad';
|
|
2801
3006
|
} | {
|
|
2802
3007
|
message: string;
|
|
2803
3008
|
is_access_code_error: true;
|
|
3009
|
+
created_at?: string | undefined;
|
|
2804
3010
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2805
|
-
error_code: '
|
|
3011
|
+
error_code: 'august_lock_temporarily_offline';
|
|
2806
3012
|
} | {
|
|
2807
3013
|
message: string;
|
|
2808
3014
|
is_access_code_error: true;
|
|
3015
|
+
created_at?: string | undefined;
|
|
3016
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3017
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
3018
|
+
} | {
|
|
3019
|
+
message: string;
|
|
3020
|
+
is_access_code_error: true;
|
|
3021
|
+
created_at?: string | undefined;
|
|
2809
3022
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2810
3023
|
error_code: 'hubitat_device_programming_delay';
|
|
2811
3024
|
} | {
|
|
2812
3025
|
message: string;
|
|
2813
3026
|
is_access_code_error: true;
|
|
3027
|
+
created_at?: string | undefined;
|
|
2814
3028
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2815
3029
|
error_code: 'hubitat_no_free_positions_available';
|
|
3030
|
+
} | {
|
|
3031
|
+
message: string;
|
|
3032
|
+
is_access_code_error: true;
|
|
3033
|
+
created_at?: string | undefined;
|
|
3034
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3035
|
+
error_code: 'wyze_duplicate_code_name';
|
|
3036
|
+
} | {
|
|
3037
|
+
message: string;
|
|
3038
|
+
is_access_code_error: true;
|
|
3039
|
+
created_at?: string | undefined;
|
|
3040
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3041
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
3042
|
+
} | {
|
|
3043
|
+
message: string;
|
|
3044
|
+
is_access_code_error: true;
|
|
3045
|
+
created_at?: string | undefined;
|
|
3046
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3047
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
2816
3048
|
} | {
|
|
2817
3049
|
message: string;
|
|
2818
3050
|
is_device_error: false;
|
|
@@ -2904,50 +3136,62 @@ export interface Routes {
|
|
|
2904
3136
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2905
3137
|
warnings: Array<{
|
|
2906
3138
|
message: string;
|
|
3139
|
+
created_at?: string | undefined;
|
|
2907
3140
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2908
3141
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
2909
3142
|
} | {
|
|
2910
3143
|
message: string;
|
|
3144
|
+
created_at?: string | undefined;
|
|
2911
3145
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2912
3146
|
warning_code: 'schlage_detected_duplicate';
|
|
2913
3147
|
} | {
|
|
2914
3148
|
message: string;
|
|
3149
|
+
created_at?: string | undefined;
|
|
2915
3150
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2916
3151
|
warning_code: 'schlage_creation_outage';
|
|
2917
3152
|
} | {
|
|
2918
3153
|
message: string;
|
|
2919
|
-
|
|
2920
|
-
warning_code: 'salto_office_mode';
|
|
2921
|
-
} | {
|
|
2922
|
-
message: string;
|
|
3154
|
+
created_at?: string | undefined;
|
|
2923
3155
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2924
3156
|
warning_code: 'code_modified_external_to_seam';
|
|
2925
3157
|
} | {
|
|
2926
3158
|
message: string;
|
|
3159
|
+
created_at?: string | undefined;
|
|
2927
3160
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2928
3161
|
warning_code: 'delay_in_setting_on_device';
|
|
2929
3162
|
} | {
|
|
2930
3163
|
message: string;
|
|
3164
|
+
created_at?: string | undefined;
|
|
2931
3165
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2932
3166
|
warning_code: 'delay_in_removing_from_device';
|
|
2933
3167
|
} | {
|
|
2934
3168
|
message: string;
|
|
3169
|
+
created_at?: string | undefined;
|
|
2935
3170
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2936
3171
|
warning_code: 'third_party_integration_detected';
|
|
2937
3172
|
} | {
|
|
2938
3173
|
message: string;
|
|
3174
|
+
created_at?: string | undefined;
|
|
2939
3175
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2940
3176
|
warning_code: 'august_device_programming_delay';
|
|
2941
3177
|
} | {
|
|
2942
3178
|
message: string;
|
|
3179
|
+
created_at?: string | undefined;
|
|
3180
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3181
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
3182
|
+
} | {
|
|
3183
|
+
message: string;
|
|
3184
|
+
created_at?: string | undefined;
|
|
2943
3185
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2944
3186
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
2945
3187
|
} | {
|
|
2946
3188
|
message: string;
|
|
3189
|
+
created_at?: string | undefined;
|
|
2947
3190
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2948
3191
|
warning_code: 'management_transferred';
|
|
2949
3192
|
} | {
|
|
2950
3193
|
message: string;
|
|
3194
|
+
created_at?: string | undefined;
|
|
2951
3195
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2952
3196
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
2953
3197
|
}>;
|
|
@@ -3010,98 +3254,147 @@ export interface Routes {
|
|
|
3010
3254
|
errors: Array<{
|
|
3011
3255
|
message: string;
|
|
3012
3256
|
is_access_code_error: true;
|
|
3257
|
+
created_at?: string | undefined;
|
|
3013
3258
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3014
3259
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
3015
3260
|
} | {
|
|
3016
3261
|
message: string;
|
|
3017
3262
|
is_access_code_error: true;
|
|
3263
|
+
created_at?: string | undefined;
|
|
3018
3264
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3019
3265
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3020
3266
|
} | {
|
|
3021
3267
|
message: string;
|
|
3022
3268
|
is_access_code_error: true;
|
|
3269
|
+
created_at?: string | undefined;
|
|
3270
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3271
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
3272
|
+
} | {
|
|
3273
|
+
message: string;
|
|
3274
|
+
is_access_code_error: true;
|
|
3275
|
+
created_at?: string | undefined;
|
|
3023
3276
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3024
3277
|
error_code: 'failed_to_set_on_device';
|
|
3025
3278
|
} | {
|
|
3026
3279
|
message: string;
|
|
3027
3280
|
is_access_code_error: true;
|
|
3281
|
+
created_at?: string | undefined;
|
|
3028
3282
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3029
3283
|
error_code: 'failed_to_remove_from_device';
|
|
3030
3284
|
} | {
|
|
3031
3285
|
message: string;
|
|
3032
3286
|
is_access_code_error: true;
|
|
3287
|
+
created_at?: string | undefined;
|
|
3033
3288
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3034
3289
|
error_code: 'duplicate_code_on_device';
|
|
3035
3290
|
} | {
|
|
3036
3291
|
message: string;
|
|
3037
3292
|
is_access_code_error: true;
|
|
3293
|
+
created_at?: string | undefined;
|
|
3038
3294
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3039
3295
|
error_code: 'duplicate_code_attempt_prevented';
|
|
3040
3296
|
} | {
|
|
3041
3297
|
message: string;
|
|
3042
3298
|
is_access_code_error: true;
|
|
3299
|
+
created_at?: string | undefined;
|
|
3043
3300
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3044
3301
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
3045
3302
|
} | {
|
|
3046
3303
|
message: string;
|
|
3047
3304
|
is_access_code_error: true;
|
|
3305
|
+
created_at?: string | undefined;
|
|
3048
3306
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3049
3307
|
error_code: 'igloohome_bridge_offline';
|
|
3050
3308
|
} | {
|
|
3051
3309
|
message: string;
|
|
3052
3310
|
is_access_code_error: true;
|
|
3311
|
+
created_at?: string | undefined;
|
|
3053
3312
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3054
3313
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
3055
3314
|
} | {
|
|
3056
3315
|
message: string;
|
|
3057
3316
|
is_access_code_error: true;
|
|
3317
|
+
created_at?: string | undefined;
|
|
3058
3318
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3059
3319
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
3060
3320
|
} | {
|
|
3061
3321
|
message: string;
|
|
3062
3322
|
is_access_code_error: true;
|
|
3323
|
+
created_at?: string | undefined;
|
|
3063
3324
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3064
3325
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
3065
3326
|
} | {
|
|
3066
3327
|
message: string;
|
|
3067
3328
|
is_access_code_error: true;
|
|
3329
|
+
created_at?: string | undefined;
|
|
3068
3330
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3069
3331
|
error_code: 'code_modified_external_to_seam';
|
|
3070
3332
|
} | {
|
|
3071
3333
|
message: string;
|
|
3072
3334
|
is_access_code_error: true;
|
|
3335
|
+
created_at?: string | undefined;
|
|
3073
3336
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3074
3337
|
error_code: 'august_lock_invalid_code_length';
|
|
3075
3338
|
} | {
|
|
3076
3339
|
message: string;
|
|
3077
3340
|
is_access_code_error: true;
|
|
3341
|
+
created_at?: string | undefined;
|
|
3078
3342
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3079
3343
|
error_code: 'august_device_programming_delay';
|
|
3080
3344
|
} | {
|
|
3081
3345
|
message: string;
|
|
3082
3346
|
is_access_code_error: true;
|
|
3347
|
+
created_at?: string | undefined;
|
|
3083
3348
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3084
3349
|
error_code: 'august_device_slots_full';
|
|
3085
3350
|
} | {
|
|
3086
3351
|
message: string;
|
|
3087
3352
|
is_access_code_error: true;
|
|
3353
|
+
created_at?: string | undefined;
|
|
3088
3354
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3089
3355
|
error_code: 'august_lock_missing_keypad';
|
|
3090
3356
|
} | {
|
|
3091
3357
|
message: string;
|
|
3092
3358
|
is_access_code_error: true;
|
|
3359
|
+
created_at?: string | undefined;
|
|
3360
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3361
|
+
error_code: 'august_lock_temporarily_offline';
|
|
3362
|
+
} | {
|
|
3363
|
+
message: string;
|
|
3364
|
+
is_access_code_error: true;
|
|
3365
|
+
created_at?: string | undefined;
|
|
3093
3366
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3094
|
-
error_code: '
|
|
3367
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
3095
3368
|
} | {
|
|
3096
3369
|
message: string;
|
|
3097
3370
|
is_access_code_error: true;
|
|
3371
|
+
created_at?: string | undefined;
|
|
3098
3372
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3099
3373
|
error_code: 'hubitat_device_programming_delay';
|
|
3100
3374
|
} | {
|
|
3101
3375
|
message: string;
|
|
3102
3376
|
is_access_code_error: true;
|
|
3377
|
+
created_at?: string | undefined;
|
|
3103
3378
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3104
3379
|
error_code: 'hubitat_no_free_positions_available';
|
|
3380
|
+
} | {
|
|
3381
|
+
message: string;
|
|
3382
|
+
is_access_code_error: true;
|
|
3383
|
+
created_at?: string | undefined;
|
|
3384
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3385
|
+
error_code: 'wyze_duplicate_code_name';
|
|
3386
|
+
} | {
|
|
3387
|
+
message: string;
|
|
3388
|
+
is_access_code_error: true;
|
|
3389
|
+
created_at?: string | undefined;
|
|
3390
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3391
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
3392
|
+
} | {
|
|
3393
|
+
message: string;
|
|
3394
|
+
is_access_code_error: true;
|
|
3395
|
+
created_at?: string | undefined;
|
|
3396
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3397
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
3105
3398
|
} | {
|
|
3106
3399
|
message: string;
|
|
3107
3400
|
is_device_error: false;
|
|
@@ -3193,50 +3486,62 @@ export interface Routes {
|
|
|
3193
3486
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3194
3487
|
warnings: Array<{
|
|
3195
3488
|
message: string;
|
|
3489
|
+
created_at?: string | undefined;
|
|
3196
3490
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3197
3491
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
3198
3492
|
} | {
|
|
3199
3493
|
message: string;
|
|
3494
|
+
created_at?: string | undefined;
|
|
3200
3495
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3201
3496
|
warning_code: 'schlage_detected_duplicate';
|
|
3202
3497
|
} | {
|
|
3203
3498
|
message: string;
|
|
3499
|
+
created_at?: string | undefined;
|
|
3204
3500
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3205
3501
|
warning_code: 'schlage_creation_outage';
|
|
3206
3502
|
} | {
|
|
3207
3503
|
message: string;
|
|
3208
|
-
|
|
3209
|
-
warning_code: 'salto_office_mode';
|
|
3210
|
-
} | {
|
|
3211
|
-
message: string;
|
|
3504
|
+
created_at?: string | undefined;
|
|
3212
3505
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3213
3506
|
warning_code: 'code_modified_external_to_seam';
|
|
3214
3507
|
} | {
|
|
3215
3508
|
message: string;
|
|
3509
|
+
created_at?: string | undefined;
|
|
3216
3510
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3217
3511
|
warning_code: 'delay_in_setting_on_device';
|
|
3218
3512
|
} | {
|
|
3219
3513
|
message: string;
|
|
3514
|
+
created_at?: string | undefined;
|
|
3220
3515
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3221
3516
|
warning_code: 'delay_in_removing_from_device';
|
|
3222
3517
|
} | {
|
|
3223
3518
|
message: string;
|
|
3519
|
+
created_at?: string | undefined;
|
|
3224
3520
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3225
3521
|
warning_code: 'third_party_integration_detected';
|
|
3226
3522
|
} | {
|
|
3227
3523
|
message: string;
|
|
3524
|
+
created_at?: string | undefined;
|
|
3228
3525
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3229
3526
|
warning_code: 'august_device_programming_delay';
|
|
3230
3527
|
} | {
|
|
3231
3528
|
message: string;
|
|
3529
|
+
created_at?: string | undefined;
|
|
3530
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3531
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
3532
|
+
} | {
|
|
3533
|
+
message: string;
|
|
3534
|
+
created_at?: string | undefined;
|
|
3232
3535
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3233
3536
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
3234
3537
|
} | {
|
|
3235
3538
|
message: string;
|
|
3539
|
+
created_at?: string | undefined;
|
|
3236
3540
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3237
3541
|
warning_code: 'management_transferred';
|
|
3238
3542
|
} | {
|
|
3239
3543
|
message: string;
|
|
3544
|
+
created_at?: string | undefined;
|
|
3240
3545
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3241
3546
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
3242
3547
|
}>;
|
|
@@ -3287,98 +3592,147 @@ export interface Routes {
|
|
|
3287
3592
|
errors: Array<{
|
|
3288
3593
|
message: string;
|
|
3289
3594
|
is_access_code_error: true;
|
|
3595
|
+
created_at?: string | undefined;
|
|
3290
3596
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3291
3597
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
3292
3598
|
} | {
|
|
3293
3599
|
message: string;
|
|
3294
3600
|
is_access_code_error: true;
|
|
3601
|
+
created_at?: string | undefined;
|
|
3295
3602
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3296
3603
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3297
3604
|
} | {
|
|
3298
3605
|
message: string;
|
|
3299
3606
|
is_access_code_error: true;
|
|
3607
|
+
created_at?: string | undefined;
|
|
3608
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3609
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
3610
|
+
} | {
|
|
3611
|
+
message: string;
|
|
3612
|
+
is_access_code_error: true;
|
|
3613
|
+
created_at?: string | undefined;
|
|
3300
3614
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3301
3615
|
error_code: 'failed_to_set_on_device';
|
|
3302
3616
|
} | {
|
|
3303
3617
|
message: string;
|
|
3304
3618
|
is_access_code_error: true;
|
|
3619
|
+
created_at?: string | undefined;
|
|
3305
3620
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3306
3621
|
error_code: 'failed_to_remove_from_device';
|
|
3307
3622
|
} | {
|
|
3308
3623
|
message: string;
|
|
3309
3624
|
is_access_code_error: true;
|
|
3625
|
+
created_at?: string | undefined;
|
|
3310
3626
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3311
3627
|
error_code: 'duplicate_code_on_device';
|
|
3312
3628
|
} | {
|
|
3313
3629
|
message: string;
|
|
3314
3630
|
is_access_code_error: true;
|
|
3631
|
+
created_at?: string | undefined;
|
|
3315
3632
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3316
3633
|
error_code: 'duplicate_code_attempt_prevented';
|
|
3317
3634
|
} | {
|
|
3318
3635
|
message: string;
|
|
3319
3636
|
is_access_code_error: true;
|
|
3637
|
+
created_at?: string | undefined;
|
|
3320
3638
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3321
3639
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
3322
3640
|
} | {
|
|
3323
3641
|
message: string;
|
|
3324
3642
|
is_access_code_error: true;
|
|
3643
|
+
created_at?: string | undefined;
|
|
3325
3644
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3326
3645
|
error_code: 'igloohome_bridge_offline';
|
|
3327
3646
|
} | {
|
|
3328
3647
|
message: string;
|
|
3329
3648
|
is_access_code_error: true;
|
|
3649
|
+
created_at?: string | undefined;
|
|
3330
3650
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3331
3651
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
3332
3652
|
} | {
|
|
3333
3653
|
message: string;
|
|
3334
3654
|
is_access_code_error: true;
|
|
3655
|
+
created_at?: string | undefined;
|
|
3335
3656
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3336
3657
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
3337
3658
|
} | {
|
|
3338
3659
|
message: string;
|
|
3339
3660
|
is_access_code_error: true;
|
|
3661
|
+
created_at?: string | undefined;
|
|
3340
3662
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3341
3663
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
3342
3664
|
} | {
|
|
3343
3665
|
message: string;
|
|
3344
3666
|
is_access_code_error: true;
|
|
3667
|
+
created_at?: string | undefined;
|
|
3345
3668
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3346
3669
|
error_code: 'code_modified_external_to_seam';
|
|
3347
3670
|
} | {
|
|
3348
3671
|
message: string;
|
|
3349
3672
|
is_access_code_error: true;
|
|
3673
|
+
created_at?: string | undefined;
|
|
3350
3674
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3351
3675
|
error_code: 'august_lock_invalid_code_length';
|
|
3352
3676
|
} | {
|
|
3353
3677
|
message: string;
|
|
3354
3678
|
is_access_code_error: true;
|
|
3679
|
+
created_at?: string | undefined;
|
|
3355
3680
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3356
3681
|
error_code: 'august_device_programming_delay';
|
|
3357
3682
|
} | {
|
|
3358
3683
|
message: string;
|
|
3359
3684
|
is_access_code_error: true;
|
|
3685
|
+
created_at?: string | undefined;
|
|
3360
3686
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3361
3687
|
error_code: 'august_device_slots_full';
|
|
3362
3688
|
} | {
|
|
3363
3689
|
message: string;
|
|
3364
3690
|
is_access_code_error: true;
|
|
3691
|
+
created_at?: string | undefined;
|
|
3365
3692
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3366
3693
|
error_code: 'august_lock_missing_keypad';
|
|
3367
3694
|
} | {
|
|
3368
3695
|
message: string;
|
|
3369
3696
|
is_access_code_error: true;
|
|
3697
|
+
created_at?: string | undefined;
|
|
3698
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3699
|
+
error_code: 'august_lock_temporarily_offline';
|
|
3700
|
+
} | {
|
|
3701
|
+
message: string;
|
|
3702
|
+
is_access_code_error: true;
|
|
3703
|
+
created_at?: string | undefined;
|
|
3370
3704
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3371
|
-
error_code: '
|
|
3705
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
3372
3706
|
} | {
|
|
3373
3707
|
message: string;
|
|
3374
3708
|
is_access_code_error: true;
|
|
3709
|
+
created_at?: string | undefined;
|
|
3375
3710
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3376
3711
|
error_code: 'hubitat_device_programming_delay';
|
|
3377
3712
|
} | {
|
|
3378
3713
|
message: string;
|
|
3379
3714
|
is_access_code_error: true;
|
|
3715
|
+
created_at?: string | undefined;
|
|
3380
3716
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3381
3717
|
error_code: 'hubitat_no_free_positions_available';
|
|
3718
|
+
} | {
|
|
3719
|
+
message: string;
|
|
3720
|
+
is_access_code_error: true;
|
|
3721
|
+
created_at?: string | undefined;
|
|
3722
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3723
|
+
error_code: 'wyze_duplicate_code_name';
|
|
3724
|
+
} | {
|
|
3725
|
+
message: string;
|
|
3726
|
+
is_access_code_error: true;
|
|
3727
|
+
created_at?: string | undefined;
|
|
3728
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3729
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
3730
|
+
} | {
|
|
3731
|
+
message: string;
|
|
3732
|
+
is_access_code_error: true;
|
|
3733
|
+
created_at?: string | undefined;
|
|
3734
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3735
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
3382
3736
|
} | {
|
|
3383
3737
|
message: string;
|
|
3384
3738
|
is_device_error: false;
|
|
@@ -3470,50 +3824,62 @@ export interface Routes {
|
|
|
3470
3824
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3471
3825
|
warnings: Array<{
|
|
3472
3826
|
message: string;
|
|
3827
|
+
created_at?: string | undefined;
|
|
3473
3828
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3474
3829
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
3475
3830
|
} | {
|
|
3476
3831
|
message: string;
|
|
3832
|
+
created_at?: string | undefined;
|
|
3477
3833
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3478
3834
|
warning_code: 'schlage_detected_duplicate';
|
|
3479
3835
|
} | {
|
|
3480
3836
|
message: string;
|
|
3837
|
+
created_at?: string | undefined;
|
|
3481
3838
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3482
3839
|
warning_code: 'schlage_creation_outage';
|
|
3483
3840
|
} | {
|
|
3484
3841
|
message: string;
|
|
3485
|
-
|
|
3486
|
-
warning_code: 'salto_office_mode';
|
|
3487
|
-
} | {
|
|
3488
|
-
message: string;
|
|
3842
|
+
created_at?: string | undefined;
|
|
3489
3843
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3490
3844
|
warning_code: 'code_modified_external_to_seam';
|
|
3491
3845
|
} | {
|
|
3492
3846
|
message: string;
|
|
3847
|
+
created_at?: string | undefined;
|
|
3493
3848
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3494
3849
|
warning_code: 'delay_in_setting_on_device';
|
|
3495
3850
|
} | {
|
|
3496
3851
|
message: string;
|
|
3852
|
+
created_at?: string | undefined;
|
|
3497
3853
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3498
3854
|
warning_code: 'delay_in_removing_from_device';
|
|
3499
3855
|
} | {
|
|
3500
3856
|
message: string;
|
|
3857
|
+
created_at?: string | undefined;
|
|
3501
3858
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3502
3859
|
warning_code: 'third_party_integration_detected';
|
|
3503
3860
|
} | {
|
|
3504
3861
|
message: string;
|
|
3862
|
+
created_at?: string | undefined;
|
|
3505
3863
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3506
3864
|
warning_code: 'august_device_programming_delay';
|
|
3507
3865
|
} | {
|
|
3508
3866
|
message: string;
|
|
3867
|
+
created_at?: string | undefined;
|
|
3868
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3869
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
3870
|
+
} | {
|
|
3871
|
+
message: string;
|
|
3872
|
+
created_at?: string | undefined;
|
|
3509
3873
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3510
3874
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
3511
3875
|
} | {
|
|
3512
3876
|
message: string;
|
|
3877
|
+
created_at?: string | undefined;
|
|
3513
3878
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3514
3879
|
warning_code: 'management_transferred';
|
|
3515
3880
|
} | {
|
|
3516
3881
|
message: string;
|
|
3882
|
+
created_at?: string | undefined;
|
|
3517
3883
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3518
3884
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
3519
3885
|
}>;
|
|
@@ -3572,98 +3938,147 @@ export interface Routes {
|
|
|
3572
3938
|
errors: Array<{
|
|
3573
3939
|
message: string;
|
|
3574
3940
|
is_access_code_error: true;
|
|
3941
|
+
created_at?: string | undefined;
|
|
3575
3942
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3576
3943
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
3577
3944
|
} | {
|
|
3578
3945
|
message: string;
|
|
3579
3946
|
is_access_code_error: true;
|
|
3947
|
+
created_at?: string | undefined;
|
|
3580
3948
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3581
3949
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3582
3950
|
} | {
|
|
3583
3951
|
message: string;
|
|
3584
3952
|
is_access_code_error: true;
|
|
3953
|
+
created_at?: string | undefined;
|
|
3954
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3955
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
3956
|
+
} | {
|
|
3957
|
+
message: string;
|
|
3958
|
+
is_access_code_error: true;
|
|
3959
|
+
created_at?: string | undefined;
|
|
3585
3960
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3586
3961
|
error_code: 'failed_to_set_on_device';
|
|
3587
3962
|
} | {
|
|
3588
3963
|
message: string;
|
|
3589
3964
|
is_access_code_error: true;
|
|
3965
|
+
created_at?: string | undefined;
|
|
3590
3966
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3591
3967
|
error_code: 'failed_to_remove_from_device';
|
|
3592
3968
|
} | {
|
|
3593
3969
|
message: string;
|
|
3594
3970
|
is_access_code_error: true;
|
|
3971
|
+
created_at?: string | undefined;
|
|
3595
3972
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3596
3973
|
error_code: 'duplicate_code_on_device';
|
|
3597
3974
|
} | {
|
|
3598
3975
|
message: string;
|
|
3599
3976
|
is_access_code_error: true;
|
|
3977
|
+
created_at?: string | undefined;
|
|
3600
3978
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3601
3979
|
error_code: 'duplicate_code_attempt_prevented';
|
|
3602
3980
|
} | {
|
|
3603
3981
|
message: string;
|
|
3604
3982
|
is_access_code_error: true;
|
|
3983
|
+
created_at?: string | undefined;
|
|
3605
3984
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3606
3985
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
3607
3986
|
} | {
|
|
3608
3987
|
message: string;
|
|
3609
3988
|
is_access_code_error: true;
|
|
3989
|
+
created_at?: string | undefined;
|
|
3610
3990
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3611
3991
|
error_code: 'igloohome_bridge_offline';
|
|
3612
3992
|
} | {
|
|
3613
3993
|
message: string;
|
|
3614
3994
|
is_access_code_error: true;
|
|
3995
|
+
created_at?: string | undefined;
|
|
3615
3996
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3616
3997
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
3617
3998
|
} | {
|
|
3618
3999
|
message: string;
|
|
3619
4000
|
is_access_code_error: true;
|
|
4001
|
+
created_at?: string | undefined;
|
|
3620
4002
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3621
4003
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
3622
4004
|
} | {
|
|
3623
4005
|
message: string;
|
|
3624
4006
|
is_access_code_error: true;
|
|
4007
|
+
created_at?: string | undefined;
|
|
3625
4008
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3626
4009
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
3627
4010
|
} | {
|
|
3628
4011
|
message: string;
|
|
3629
4012
|
is_access_code_error: true;
|
|
4013
|
+
created_at?: string | undefined;
|
|
3630
4014
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3631
4015
|
error_code: 'code_modified_external_to_seam';
|
|
3632
4016
|
} | {
|
|
3633
4017
|
message: string;
|
|
3634
4018
|
is_access_code_error: true;
|
|
4019
|
+
created_at?: string | undefined;
|
|
3635
4020
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3636
4021
|
error_code: 'august_lock_invalid_code_length';
|
|
3637
4022
|
} | {
|
|
3638
4023
|
message: string;
|
|
3639
4024
|
is_access_code_error: true;
|
|
4025
|
+
created_at?: string | undefined;
|
|
3640
4026
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3641
4027
|
error_code: 'august_device_programming_delay';
|
|
3642
4028
|
} | {
|
|
3643
4029
|
message: string;
|
|
3644
4030
|
is_access_code_error: true;
|
|
4031
|
+
created_at?: string | undefined;
|
|
3645
4032
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3646
4033
|
error_code: 'august_device_slots_full';
|
|
3647
4034
|
} | {
|
|
3648
4035
|
message: string;
|
|
3649
4036
|
is_access_code_error: true;
|
|
4037
|
+
created_at?: string | undefined;
|
|
3650
4038
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3651
4039
|
error_code: 'august_lock_missing_keypad';
|
|
3652
4040
|
} | {
|
|
3653
4041
|
message: string;
|
|
3654
4042
|
is_access_code_error: true;
|
|
4043
|
+
created_at?: string | undefined;
|
|
3655
4044
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3656
|
-
error_code: '
|
|
4045
|
+
error_code: 'august_lock_temporarily_offline';
|
|
3657
4046
|
} | {
|
|
3658
4047
|
message: string;
|
|
3659
4048
|
is_access_code_error: true;
|
|
4049
|
+
created_at?: string | undefined;
|
|
4050
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4051
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
4052
|
+
} | {
|
|
4053
|
+
message: string;
|
|
4054
|
+
is_access_code_error: true;
|
|
4055
|
+
created_at?: string | undefined;
|
|
3660
4056
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3661
4057
|
error_code: 'hubitat_device_programming_delay';
|
|
3662
4058
|
} | {
|
|
3663
4059
|
message: string;
|
|
3664
4060
|
is_access_code_error: true;
|
|
4061
|
+
created_at?: string | undefined;
|
|
3665
4062
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3666
4063
|
error_code: 'hubitat_no_free_positions_available';
|
|
4064
|
+
} | {
|
|
4065
|
+
message: string;
|
|
4066
|
+
is_access_code_error: true;
|
|
4067
|
+
created_at?: string | undefined;
|
|
4068
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4069
|
+
error_code: 'wyze_duplicate_code_name';
|
|
4070
|
+
} | {
|
|
4071
|
+
message: string;
|
|
4072
|
+
is_access_code_error: true;
|
|
4073
|
+
created_at?: string | undefined;
|
|
4074
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4075
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
4076
|
+
} | {
|
|
4077
|
+
message: string;
|
|
4078
|
+
is_access_code_error: true;
|
|
4079
|
+
created_at?: string | undefined;
|
|
4080
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4081
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
3667
4082
|
} | {
|
|
3668
4083
|
message: string;
|
|
3669
4084
|
is_device_error: false;
|
|
@@ -3755,50 +4170,62 @@ export interface Routes {
|
|
|
3755
4170
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3756
4171
|
warnings: Array<{
|
|
3757
4172
|
message: string;
|
|
4173
|
+
created_at?: string | undefined;
|
|
3758
4174
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3759
4175
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
3760
4176
|
} | {
|
|
3761
4177
|
message: string;
|
|
4178
|
+
created_at?: string | undefined;
|
|
3762
4179
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3763
4180
|
warning_code: 'schlage_detected_duplicate';
|
|
3764
4181
|
} | {
|
|
3765
4182
|
message: string;
|
|
4183
|
+
created_at?: string | undefined;
|
|
3766
4184
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3767
4185
|
warning_code: 'schlage_creation_outage';
|
|
3768
4186
|
} | {
|
|
3769
4187
|
message: string;
|
|
3770
|
-
|
|
3771
|
-
warning_code: 'salto_office_mode';
|
|
3772
|
-
} | {
|
|
3773
|
-
message: string;
|
|
4188
|
+
created_at?: string | undefined;
|
|
3774
4189
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3775
4190
|
warning_code: 'code_modified_external_to_seam';
|
|
3776
4191
|
} | {
|
|
3777
4192
|
message: string;
|
|
4193
|
+
created_at?: string | undefined;
|
|
3778
4194
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3779
4195
|
warning_code: 'delay_in_setting_on_device';
|
|
3780
4196
|
} | {
|
|
3781
4197
|
message: string;
|
|
4198
|
+
created_at?: string | undefined;
|
|
3782
4199
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3783
4200
|
warning_code: 'delay_in_removing_from_device';
|
|
3784
4201
|
} | {
|
|
3785
4202
|
message: string;
|
|
4203
|
+
created_at?: string | undefined;
|
|
3786
4204
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3787
4205
|
warning_code: 'third_party_integration_detected';
|
|
3788
4206
|
} | {
|
|
3789
4207
|
message: string;
|
|
4208
|
+
created_at?: string | undefined;
|
|
3790
4209
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3791
4210
|
warning_code: 'august_device_programming_delay';
|
|
3792
4211
|
} | {
|
|
3793
4212
|
message: string;
|
|
4213
|
+
created_at?: string | undefined;
|
|
4214
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4215
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
4216
|
+
} | {
|
|
4217
|
+
message: string;
|
|
4218
|
+
created_at?: string | undefined;
|
|
3794
4219
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3795
4220
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
3796
4221
|
} | {
|
|
3797
4222
|
message: string;
|
|
4223
|
+
created_at?: string | undefined;
|
|
3798
4224
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3799
4225
|
warning_code: 'management_transferred';
|
|
3800
4226
|
} | {
|
|
3801
4227
|
message: string;
|
|
4228
|
+
created_at?: string | undefined;
|
|
3802
4229
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3803
4230
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
3804
4231
|
}>;
|
|
@@ -4748,98 +5175,147 @@ export interface Routes {
|
|
|
4748
5175
|
errors: Array<{
|
|
4749
5176
|
message: string;
|
|
4750
5177
|
is_access_code_error: true;
|
|
5178
|
+
created_at?: string | undefined;
|
|
4751
5179
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4752
5180
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
4753
5181
|
} | {
|
|
4754
5182
|
message: string;
|
|
4755
5183
|
is_access_code_error: true;
|
|
5184
|
+
created_at?: string | undefined;
|
|
4756
5185
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4757
5186
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
4758
5187
|
} | {
|
|
4759
5188
|
message: string;
|
|
4760
5189
|
is_access_code_error: true;
|
|
5190
|
+
created_at?: string | undefined;
|
|
5191
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5192
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
5193
|
+
} | {
|
|
5194
|
+
message: string;
|
|
5195
|
+
is_access_code_error: true;
|
|
5196
|
+
created_at?: string | undefined;
|
|
4761
5197
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4762
5198
|
error_code: 'failed_to_set_on_device';
|
|
4763
5199
|
} | {
|
|
4764
5200
|
message: string;
|
|
4765
5201
|
is_access_code_error: true;
|
|
5202
|
+
created_at?: string | undefined;
|
|
4766
5203
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4767
5204
|
error_code: 'failed_to_remove_from_device';
|
|
4768
5205
|
} | {
|
|
4769
5206
|
message: string;
|
|
4770
5207
|
is_access_code_error: true;
|
|
5208
|
+
created_at?: string | undefined;
|
|
4771
5209
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4772
5210
|
error_code: 'duplicate_code_on_device';
|
|
4773
5211
|
} | {
|
|
4774
5212
|
message: string;
|
|
4775
5213
|
is_access_code_error: true;
|
|
5214
|
+
created_at?: string | undefined;
|
|
4776
5215
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4777
5216
|
error_code: 'duplicate_code_attempt_prevented';
|
|
4778
5217
|
} | {
|
|
4779
5218
|
message: string;
|
|
4780
5219
|
is_access_code_error: true;
|
|
5220
|
+
created_at?: string | undefined;
|
|
4781
5221
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4782
5222
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
4783
5223
|
} | {
|
|
4784
5224
|
message: string;
|
|
4785
5225
|
is_access_code_error: true;
|
|
5226
|
+
created_at?: string | undefined;
|
|
4786
5227
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4787
5228
|
error_code: 'igloohome_bridge_offline';
|
|
4788
5229
|
} | {
|
|
4789
5230
|
message: string;
|
|
4790
5231
|
is_access_code_error: true;
|
|
5232
|
+
created_at?: string | undefined;
|
|
4791
5233
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4792
5234
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
4793
5235
|
} | {
|
|
4794
5236
|
message: string;
|
|
4795
5237
|
is_access_code_error: true;
|
|
5238
|
+
created_at?: string | undefined;
|
|
4796
5239
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4797
5240
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
4798
5241
|
} | {
|
|
4799
5242
|
message: string;
|
|
4800
5243
|
is_access_code_error: true;
|
|
5244
|
+
created_at?: string | undefined;
|
|
4801
5245
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4802
5246
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
4803
5247
|
} | {
|
|
4804
5248
|
message: string;
|
|
4805
5249
|
is_access_code_error: true;
|
|
5250
|
+
created_at?: string | undefined;
|
|
4806
5251
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4807
5252
|
error_code: 'code_modified_external_to_seam';
|
|
4808
5253
|
} | {
|
|
4809
5254
|
message: string;
|
|
4810
5255
|
is_access_code_error: true;
|
|
5256
|
+
created_at?: string | undefined;
|
|
4811
5257
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4812
5258
|
error_code: 'august_lock_invalid_code_length';
|
|
4813
5259
|
} | {
|
|
4814
5260
|
message: string;
|
|
4815
5261
|
is_access_code_error: true;
|
|
5262
|
+
created_at?: string | undefined;
|
|
4816
5263
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4817
5264
|
error_code: 'august_device_programming_delay';
|
|
4818
5265
|
} | {
|
|
4819
5266
|
message: string;
|
|
4820
5267
|
is_access_code_error: true;
|
|
5268
|
+
created_at?: string | undefined;
|
|
4821
5269
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4822
5270
|
error_code: 'august_device_slots_full';
|
|
4823
5271
|
} | {
|
|
4824
5272
|
message: string;
|
|
4825
5273
|
is_access_code_error: true;
|
|
5274
|
+
created_at?: string | undefined;
|
|
4826
5275
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4827
5276
|
error_code: 'august_lock_missing_keypad';
|
|
4828
5277
|
} | {
|
|
4829
5278
|
message: string;
|
|
4830
5279
|
is_access_code_error: true;
|
|
5280
|
+
created_at?: string | undefined;
|
|
4831
5281
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4832
|
-
error_code: '
|
|
5282
|
+
error_code: 'august_lock_temporarily_offline';
|
|
4833
5283
|
} | {
|
|
4834
5284
|
message: string;
|
|
4835
5285
|
is_access_code_error: true;
|
|
5286
|
+
created_at?: string | undefined;
|
|
5287
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5288
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
5289
|
+
} | {
|
|
5290
|
+
message: string;
|
|
5291
|
+
is_access_code_error: true;
|
|
5292
|
+
created_at?: string | undefined;
|
|
4836
5293
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4837
5294
|
error_code: 'hubitat_device_programming_delay';
|
|
4838
5295
|
} | {
|
|
4839
5296
|
message: string;
|
|
4840
5297
|
is_access_code_error: true;
|
|
5298
|
+
created_at?: string | undefined;
|
|
4841
5299
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4842
5300
|
error_code: 'hubitat_no_free_positions_available';
|
|
5301
|
+
} | {
|
|
5302
|
+
message: string;
|
|
5303
|
+
is_access_code_error: true;
|
|
5304
|
+
created_at?: string | undefined;
|
|
5305
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5306
|
+
error_code: 'wyze_duplicate_code_name';
|
|
5307
|
+
} | {
|
|
5308
|
+
message: string;
|
|
5309
|
+
is_access_code_error: true;
|
|
5310
|
+
created_at?: string | undefined;
|
|
5311
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5312
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
5313
|
+
} | {
|
|
5314
|
+
message: string;
|
|
5315
|
+
is_access_code_error: true;
|
|
5316
|
+
created_at?: string | undefined;
|
|
5317
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5318
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
4843
5319
|
} | {
|
|
4844
5320
|
message: string;
|
|
4845
5321
|
is_device_error: false;
|
|
@@ -4931,50 +5407,62 @@ export interface Routes {
|
|
|
4931
5407
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
4932
5408
|
warnings: Array<{
|
|
4933
5409
|
message: string;
|
|
5410
|
+
created_at?: string | undefined;
|
|
4934
5411
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4935
5412
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
4936
5413
|
} | {
|
|
4937
5414
|
message: string;
|
|
5415
|
+
created_at?: string | undefined;
|
|
4938
5416
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4939
5417
|
warning_code: 'schlage_detected_duplicate';
|
|
4940
5418
|
} | {
|
|
4941
5419
|
message: string;
|
|
5420
|
+
created_at?: string | undefined;
|
|
4942
5421
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4943
5422
|
warning_code: 'schlage_creation_outage';
|
|
4944
5423
|
} | {
|
|
4945
5424
|
message: string;
|
|
4946
|
-
|
|
4947
|
-
warning_code: 'salto_office_mode';
|
|
4948
|
-
} | {
|
|
4949
|
-
message: string;
|
|
5425
|
+
created_at?: string | undefined;
|
|
4950
5426
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4951
5427
|
warning_code: 'code_modified_external_to_seam';
|
|
4952
5428
|
} | {
|
|
4953
5429
|
message: string;
|
|
5430
|
+
created_at?: string | undefined;
|
|
4954
5431
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4955
5432
|
warning_code: 'delay_in_setting_on_device';
|
|
4956
5433
|
} | {
|
|
4957
5434
|
message: string;
|
|
5435
|
+
created_at?: string | undefined;
|
|
4958
5436
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4959
5437
|
warning_code: 'delay_in_removing_from_device';
|
|
4960
5438
|
} | {
|
|
4961
5439
|
message: string;
|
|
5440
|
+
created_at?: string | undefined;
|
|
4962
5441
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4963
5442
|
warning_code: 'third_party_integration_detected';
|
|
4964
5443
|
} | {
|
|
4965
5444
|
message: string;
|
|
5445
|
+
created_at?: string | undefined;
|
|
4966
5446
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4967
5447
|
warning_code: 'august_device_programming_delay';
|
|
4968
5448
|
} | {
|
|
4969
5449
|
message: string;
|
|
5450
|
+
created_at?: string | undefined;
|
|
5451
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5452
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
5453
|
+
} | {
|
|
5454
|
+
message: string;
|
|
5455
|
+
created_at?: string | undefined;
|
|
4970
5456
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4971
5457
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
4972
5458
|
} | {
|
|
4973
5459
|
message: string;
|
|
5460
|
+
created_at?: string | undefined;
|
|
4974
5461
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4975
5462
|
warning_code: 'management_transferred';
|
|
4976
5463
|
} | {
|
|
4977
5464
|
message: string;
|
|
5465
|
+
created_at?: string | undefined;
|
|
4978
5466
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4979
5467
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
4980
5468
|
}>;
|
|
@@ -5015,98 +5503,147 @@ export interface Routes {
|
|
|
5015
5503
|
errors: Array<{
|
|
5016
5504
|
message: string;
|
|
5017
5505
|
is_access_code_error: true;
|
|
5506
|
+
created_at?: string | undefined;
|
|
5018
5507
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5019
5508
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
5020
5509
|
} | {
|
|
5021
5510
|
message: string;
|
|
5022
5511
|
is_access_code_error: true;
|
|
5512
|
+
created_at?: string | undefined;
|
|
5023
5513
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5024
5514
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
5025
5515
|
} | {
|
|
5026
5516
|
message: string;
|
|
5027
5517
|
is_access_code_error: true;
|
|
5518
|
+
created_at?: string | undefined;
|
|
5519
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5520
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
5521
|
+
} | {
|
|
5522
|
+
message: string;
|
|
5523
|
+
is_access_code_error: true;
|
|
5524
|
+
created_at?: string | undefined;
|
|
5028
5525
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5029
5526
|
error_code: 'failed_to_set_on_device';
|
|
5030
5527
|
} | {
|
|
5031
5528
|
message: string;
|
|
5032
5529
|
is_access_code_error: true;
|
|
5530
|
+
created_at?: string | undefined;
|
|
5033
5531
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5034
5532
|
error_code: 'failed_to_remove_from_device';
|
|
5035
5533
|
} | {
|
|
5036
5534
|
message: string;
|
|
5037
5535
|
is_access_code_error: true;
|
|
5536
|
+
created_at?: string | undefined;
|
|
5038
5537
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5039
5538
|
error_code: 'duplicate_code_on_device';
|
|
5040
5539
|
} | {
|
|
5041
5540
|
message: string;
|
|
5042
5541
|
is_access_code_error: true;
|
|
5542
|
+
created_at?: string | undefined;
|
|
5043
5543
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5044
5544
|
error_code: 'duplicate_code_attempt_prevented';
|
|
5045
5545
|
} | {
|
|
5046
5546
|
message: string;
|
|
5047
5547
|
is_access_code_error: true;
|
|
5548
|
+
created_at?: string | undefined;
|
|
5048
5549
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5049
5550
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
5050
5551
|
} | {
|
|
5051
5552
|
message: string;
|
|
5052
5553
|
is_access_code_error: true;
|
|
5554
|
+
created_at?: string | undefined;
|
|
5053
5555
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5054
5556
|
error_code: 'igloohome_bridge_offline';
|
|
5055
5557
|
} | {
|
|
5056
5558
|
message: string;
|
|
5057
5559
|
is_access_code_error: true;
|
|
5560
|
+
created_at?: string | undefined;
|
|
5058
5561
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5059
5562
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
5060
5563
|
} | {
|
|
5061
5564
|
message: string;
|
|
5062
5565
|
is_access_code_error: true;
|
|
5566
|
+
created_at?: string | undefined;
|
|
5063
5567
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5064
5568
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
5065
5569
|
} | {
|
|
5066
5570
|
message: string;
|
|
5067
5571
|
is_access_code_error: true;
|
|
5572
|
+
created_at?: string | undefined;
|
|
5068
5573
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5069
5574
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
5070
5575
|
} | {
|
|
5071
5576
|
message: string;
|
|
5072
5577
|
is_access_code_error: true;
|
|
5578
|
+
created_at?: string | undefined;
|
|
5073
5579
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5074
5580
|
error_code: 'code_modified_external_to_seam';
|
|
5075
5581
|
} | {
|
|
5076
5582
|
message: string;
|
|
5077
5583
|
is_access_code_error: true;
|
|
5584
|
+
created_at?: string | undefined;
|
|
5078
5585
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5079
5586
|
error_code: 'august_lock_invalid_code_length';
|
|
5080
5587
|
} | {
|
|
5081
5588
|
message: string;
|
|
5082
5589
|
is_access_code_error: true;
|
|
5590
|
+
created_at?: string | undefined;
|
|
5083
5591
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5084
5592
|
error_code: 'august_device_programming_delay';
|
|
5085
5593
|
} | {
|
|
5086
5594
|
message: string;
|
|
5087
5595
|
is_access_code_error: true;
|
|
5596
|
+
created_at?: string | undefined;
|
|
5088
5597
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5089
5598
|
error_code: 'august_device_slots_full';
|
|
5090
5599
|
} | {
|
|
5091
5600
|
message: string;
|
|
5092
5601
|
is_access_code_error: true;
|
|
5602
|
+
created_at?: string | undefined;
|
|
5093
5603
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5094
5604
|
error_code: 'august_lock_missing_keypad';
|
|
5095
5605
|
} | {
|
|
5096
5606
|
message: string;
|
|
5097
5607
|
is_access_code_error: true;
|
|
5608
|
+
created_at?: string | undefined;
|
|
5098
5609
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5099
|
-
error_code: '
|
|
5610
|
+
error_code: 'august_lock_temporarily_offline';
|
|
5100
5611
|
} | {
|
|
5101
5612
|
message: string;
|
|
5102
5613
|
is_access_code_error: true;
|
|
5614
|
+
created_at?: string | undefined;
|
|
5615
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5616
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
5617
|
+
} | {
|
|
5618
|
+
message: string;
|
|
5619
|
+
is_access_code_error: true;
|
|
5620
|
+
created_at?: string | undefined;
|
|
5103
5621
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5104
5622
|
error_code: 'hubitat_device_programming_delay';
|
|
5105
5623
|
} | {
|
|
5106
5624
|
message: string;
|
|
5107
5625
|
is_access_code_error: true;
|
|
5626
|
+
created_at?: string | undefined;
|
|
5108
5627
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5109
5628
|
error_code: 'hubitat_no_free_positions_available';
|
|
5629
|
+
} | {
|
|
5630
|
+
message: string;
|
|
5631
|
+
is_access_code_error: true;
|
|
5632
|
+
created_at?: string | undefined;
|
|
5633
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5634
|
+
error_code: 'wyze_duplicate_code_name';
|
|
5635
|
+
} | {
|
|
5636
|
+
message: string;
|
|
5637
|
+
is_access_code_error: true;
|
|
5638
|
+
created_at?: string | undefined;
|
|
5639
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5640
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
5641
|
+
} | {
|
|
5642
|
+
message: string;
|
|
5643
|
+
is_access_code_error: true;
|
|
5644
|
+
created_at?: string | undefined;
|
|
5645
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5646
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
5110
5647
|
} | {
|
|
5111
5648
|
message: string;
|
|
5112
5649
|
is_device_error: false;
|
|
@@ -5198,50 +5735,62 @@ export interface Routes {
|
|
|
5198
5735
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
5199
5736
|
warnings: Array<{
|
|
5200
5737
|
message: string;
|
|
5738
|
+
created_at?: string | undefined;
|
|
5201
5739
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5202
5740
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
5203
5741
|
} | {
|
|
5204
5742
|
message: string;
|
|
5743
|
+
created_at?: string | undefined;
|
|
5205
5744
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5206
5745
|
warning_code: 'schlage_detected_duplicate';
|
|
5207
5746
|
} | {
|
|
5208
5747
|
message: string;
|
|
5748
|
+
created_at?: string | undefined;
|
|
5209
5749
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5210
5750
|
warning_code: 'schlage_creation_outage';
|
|
5211
5751
|
} | {
|
|
5212
5752
|
message: string;
|
|
5213
|
-
|
|
5214
|
-
warning_code: 'salto_office_mode';
|
|
5215
|
-
} | {
|
|
5216
|
-
message: string;
|
|
5753
|
+
created_at?: string | undefined;
|
|
5217
5754
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5218
5755
|
warning_code: 'code_modified_external_to_seam';
|
|
5219
5756
|
} | {
|
|
5220
5757
|
message: string;
|
|
5758
|
+
created_at?: string | undefined;
|
|
5221
5759
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5222
5760
|
warning_code: 'delay_in_setting_on_device';
|
|
5223
5761
|
} | {
|
|
5224
5762
|
message: string;
|
|
5763
|
+
created_at?: string | undefined;
|
|
5225
5764
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5226
5765
|
warning_code: 'delay_in_removing_from_device';
|
|
5227
5766
|
} | {
|
|
5228
5767
|
message: string;
|
|
5768
|
+
created_at?: string | undefined;
|
|
5229
5769
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5230
5770
|
warning_code: 'third_party_integration_detected';
|
|
5231
5771
|
} | {
|
|
5232
5772
|
message: string;
|
|
5773
|
+
created_at?: string | undefined;
|
|
5233
5774
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5234
5775
|
warning_code: 'august_device_programming_delay';
|
|
5235
5776
|
} | {
|
|
5236
5777
|
message: string;
|
|
5778
|
+
created_at?: string | undefined;
|
|
5779
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5780
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
5781
|
+
} | {
|
|
5782
|
+
message: string;
|
|
5783
|
+
created_at?: string | undefined;
|
|
5237
5784
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5238
5785
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
5239
5786
|
} | {
|
|
5240
5787
|
message: string;
|
|
5788
|
+
created_at?: string | undefined;
|
|
5241
5789
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5242
5790
|
warning_code: 'management_transferred';
|
|
5243
5791
|
} | {
|
|
5244
5792
|
message: string;
|
|
5793
|
+
created_at?: string | undefined;
|
|
5245
5794
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5246
5795
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
5247
5796
|
}>;
|