@seamapi/types 1.362.0 → 1.363.1
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 +228 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +940 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1097 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +67 -0
- 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 +155 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +125 -0
- package/lib/seam/connect/models/events/acs/entrances.js +28 -0
- package/lib/seam/connect/models/events/acs/entrances.js.map +1 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +60 -0
- package/lib/seam/connect/models/events/acs/index.js +2 -0
- package/lib/seam/connect/models/events/acs/index.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +61 -1
- package/lib/seam/connect/openapi.d.ts +136 -2
- package/lib/seam/connect/openapi.js +162 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +79 -0
- package/src/lib/seam/connect/models/events/acs/entrances.ts +36 -0
- package/src/lib/seam/connect/models/events/acs/index.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +170 -0
- package/src/lib/seam/connect/route-types.ts +347 -0
|
@@ -928,96 +928,115 @@ 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;
|
|
941
944
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
942
945
|
error_code: 'failed_to_set_on_device';
|
|
943
946
|
} | {
|
|
944
947
|
message: string;
|
|
945
948
|
is_access_code_error: true;
|
|
949
|
+
created_at?: string | undefined;
|
|
946
950
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
947
951
|
error_code: 'failed_to_remove_from_device';
|
|
948
952
|
} | {
|
|
949
953
|
message: string;
|
|
950
954
|
is_access_code_error: true;
|
|
955
|
+
created_at?: string | undefined;
|
|
951
956
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
952
957
|
error_code: 'duplicate_code_on_device';
|
|
953
958
|
} | {
|
|
954
959
|
message: string;
|
|
955
960
|
is_access_code_error: true;
|
|
961
|
+
created_at?: string | undefined;
|
|
956
962
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
957
963
|
error_code: 'duplicate_code_attempt_prevented';
|
|
958
964
|
} | {
|
|
959
965
|
message: string;
|
|
960
966
|
is_access_code_error: true;
|
|
967
|
+
created_at?: string | undefined;
|
|
961
968
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
962
969
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
963
970
|
} | {
|
|
964
971
|
message: string;
|
|
965
972
|
is_access_code_error: true;
|
|
973
|
+
created_at?: string | undefined;
|
|
966
974
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
967
975
|
error_code: 'igloohome_bridge_offline';
|
|
968
976
|
} | {
|
|
969
977
|
message: string;
|
|
970
978
|
is_access_code_error: true;
|
|
979
|
+
created_at?: string | undefined;
|
|
971
980
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
972
981
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
973
982
|
} | {
|
|
974
983
|
message: string;
|
|
975
984
|
is_access_code_error: true;
|
|
985
|
+
created_at?: string | undefined;
|
|
976
986
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
977
987
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
978
988
|
} | {
|
|
979
989
|
message: string;
|
|
980
990
|
is_access_code_error: true;
|
|
991
|
+
created_at?: string | undefined;
|
|
981
992
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
982
993
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
983
994
|
} | {
|
|
984
995
|
message: string;
|
|
985
996
|
is_access_code_error: true;
|
|
997
|
+
created_at?: string | undefined;
|
|
986
998
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
987
999
|
error_code: 'code_modified_external_to_seam';
|
|
988
1000
|
} | {
|
|
989
1001
|
message: string;
|
|
990
1002
|
is_access_code_error: true;
|
|
1003
|
+
created_at?: string | undefined;
|
|
991
1004
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
992
1005
|
error_code: 'august_lock_invalid_code_length';
|
|
993
1006
|
} | {
|
|
994
1007
|
message: string;
|
|
995
1008
|
is_access_code_error: true;
|
|
1009
|
+
created_at?: string | undefined;
|
|
996
1010
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
997
1011
|
error_code: 'august_device_programming_delay';
|
|
998
1012
|
} | {
|
|
999
1013
|
message: string;
|
|
1000
1014
|
is_access_code_error: true;
|
|
1015
|
+
created_at?: string | undefined;
|
|
1001
1016
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1002
1017
|
error_code: 'august_device_slots_full';
|
|
1003
1018
|
} | {
|
|
1004
1019
|
message: string;
|
|
1005
1020
|
is_access_code_error: true;
|
|
1021
|
+
created_at?: string | undefined;
|
|
1006
1022
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1007
1023
|
error_code: 'august_lock_missing_keypad';
|
|
1008
1024
|
} | {
|
|
1009
1025
|
message: string;
|
|
1010
1026
|
is_access_code_error: true;
|
|
1027
|
+
created_at?: string | undefined;
|
|
1011
1028
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1012
1029
|
error_code: 'salto_site_user_not_subscribed';
|
|
1013
1030
|
} | {
|
|
1014
1031
|
message: string;
|
|
1015
1032
|
is_access_code_error: true;
|
|
1033
|
+
created_at?: string | undefined;
|
|
1016
1034
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1017
1035
|
error_code: 'hubitat_device_programming_delay';
|
|
1018
1036
|
} | {
|
|
1019
1037
|
message: string;
|
|
1020
1038
|
is_access_code_error: true;
|
|
1039
|
+
created_at?: string | undefined;
|
|
1021
1040
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1022
1041
|
error_code: 'hubitat_no_free_positions_available';
|
|
1023
1042
|
} | {
|
|
@@ -1111,50 +1130,62 @@ export interface Routes {
|
|
|
1111
1130
|
/** 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
1131
|
warnings: Array<{
|
|
1113
1132
|
message: string;
|
|
1133
|
+
created_at?: string | undefined;
|
|
1114
1134
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1115
1135
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
1116
1136
|
} | {
|
|
1117
1137
|
message: string;
|
|
1138
|
+
created_at?: string | undefined;
|
|
1118
1139
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1119
1140
|
warning_code: 'schlage_detected_duplicate';
|
|
1120
1141
|
} | {
|
|
1121
1142
|
message: string;
|
|
1143
|
+
created_at?: string | undefined;
|
|
1122
1144
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1123
1145
|
warning_code: 'schlage_creation_outage';
|
|
1124
1146
|
} | {
|
|
1125
1147
|
message: string;
|
|
1148
|
+
created_at?: string | undefined;
|
|
1126
1149
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1127
1150
|
warning_code: 'salto_office_mode';
|
|
1128
1151
|
} | {
|
|
1129
1152
|
message: string;
|
|
1153
|
+
created_at?: string | undefined;
|
|
1130
1154
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1131
1155
|
warning_code: 'code_modified_external_to_seam';
|
|
1132
1156
|
} | {
|
|
1133
1157
|
message: string;
|
|
1158
|
+
created_at?: string | undefined;
|
|
1134
1159
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1135
1160
|
warning_code: 'delay_in_setting_on_device';
|
|
1136
1161
|
} | {
|
|
1137
1162
|
message: string;
|
|
1163
|
+
created_at?: string | undefined;
|
|
1138
1164
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1139
1165
|
warning_code: 'delay_in_removing_from_device';
|
|
1140
1166
|
} | {
|
|
1141
1167
|
message: string;
|
|
1168
|
+
created_at?: string | undefined;
|
|
1142
1169
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1143
1170
|
warning_code: 'third_party_integration_detected';
|
|
1144
1171
|
} | {
|
|
1145
1172
|
message: string;
|
|
1173
|
+
created_at?: string | undefined;
|
|
1146
1174
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1147
1175
|
warning_code: 'august_device_programming_delay';
|
|
1148
1176
|
} | {
|
|
1149
1177
|
message: string;
|
|
1178
|
+
created_at?: string | undefined;
|
|
1150
1179
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1151
1180
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
1152
1181
|
} | {
|
|
1153
1182
|
message: string;
|
|
1183
|
+
created_at?: string | undefined;
|
|
1154
1184
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1155
1185
|
warning_code: 'management_transferred';
|
|
1156
1186
|
} | {
|
|
1157
1187
|
message: string;
|
|
1188
|
+
created_at?: string | undefined;
|
|
1158
1189
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1159
1190
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
1160
1191
|
}>;
|
|
@@ -1231,96 +1262,115 @@ export interface Routes {
|
|
|
1231
1262
|
errors: Array<{
|
|
1232
1263
|
message: string;
|
|
1233
1264
|
is_access_code_error: true;
|
|
1265
|
+
created_at?: string | undefined;
|
|
1234
1266
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1235
1267
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
1236
1268
|
} | {
|
|
1237
1269
|
message: string;
|
|
1238
1270
|
is_access_code_error: true;
|
|
1271
|
+
created_at?: string | undefined;
|
|
1239
1272
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1240
1273
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
1241
1274
|
} | {
|
|
1242
1275
|
message: string;
|
|
1243
1276
|
is_access_code_error: true;
|
|
1277
|
+
created_at?: string | undefined;
|
|
1244
1278
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1245
1279
|
error_code: 'failed_to_set_on_device';
|
|
1246
1280
|
} | {
|
|
1247
1281
|
message: string;
|
|
1248
1282
|
is_access_code_error: true;
|
|
1283
|
+
created_at?: string | undefined;
|
|
1249
1284
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1250
1285
|
error_code: 'failed_to_remove_from_device';
|
|
1251
1286
|
} | {
|
|
1252
1287
|
message: string;
|
|
1253
1288
|
is_access_code_error: true;
|
|
1289
|
+
created_at?: string | undefined;
|
|
1254
1290
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1255
1291
|
error_code: 'duplicate_code_on_device';
|
|
1256
1292
|
} | {
|
|
1257
1293
|
message: string;
|
|
1258
1294
|
is_access_code_error: true;
|
|
1295
|
+
created_at?: string | undefined;
|
|
1259
1296
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1260
1297
|
error_code: 'duplicate_code_attempt_prevented';
|
|
1261
1298
|
} | {
|
|
1262
1299
|
message: string;
|
|
1263
1300
|
is_access_code_error: true;
|
|
1301
|
+
created_at?: string | undefined;
|
|
1264
1302
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1265
1303
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
1266
1304
|
} | {
|
|
1267
1305
|
message: string;
|
|
1268
1306
|
is_access_code_error: true;
|
|
1307
|
+
created_at?: string | undefined;
|
|
1269
1308
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1270
1309
|
error_code: 'igloohome_bridge_offline';
|
|
1271
1310
|
} | {
|
|
1272
1311
|
message: string;
|
|
1273
1312
|
is_access_code_error: true;
|
|
1313
|
+
created_at?: string | undefined;
|
|
1274
1314
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1275
1315
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
1276
1316
|
} | {
|
|
1277
1317
|
message: string;
|
|
1278
1318
|
is_access_code_error: true;
|
|
1319
|
+
created_at?: string | undefined;
|
|
1279
1320
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1280
1321
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
1281
1322
|
} | {
|
|
1282
1323
|
message: string;
|
|
1283
1324
|
is_access_code_error: true;
|
|
1325
|
+
created_at?: string | undefined;
|
|
1284
1326
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1285
1327
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
1286
1328
|
} | {
|
|
1287
1329
|
message: string;
|
|
1288
1330
|
is_access_code_error: true;
|
|
1331
|
+
created_at?: string | undefined;
|
|
1289
1332
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1290
1333
|
error_code: 'code_modified_external_to_seam';
|
|
1291
1334
|
} | {
|
|
1292
1335
|
message: string;
|
|
1293
1336
|
is_access_code_error: true;
|
|
1337
|
+
created_at?: string | undefined;
|
|
1294
1338
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1295
1339
|
error_code: 'august_lock_invalid_code_length';
|
|
1296
1340
|
} | {
|
|
1297
1341
|
message: string;
|
|
1298
1342
|
is_access_code_error: true;
|
|
1343
|
+
created_at?: string | undefined;
|
|
1299
1344
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1300
1345
|
error_code: 'august_device_programming_delay';
|
|
1301
1346
|
} | {
|
|
1302
1347
|
message: string;
|
|
1303
1348
|
is_access_code_error: true;
|
|
1349
|
+
created_at?: string | undefined;
|
|
1304
1350
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1305
1351
|
error_code: 'august_device_slots_full';
|
|
1306
1352
|
} | {
|
|
1307
1353
|
message: string;
|
|
1308
1354
|
is_access_code_error: true;
|
|
1355
|
+
created_at?: string | undefined;
|
|
1309
1356
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1310
1357
|
error_code: 'august_lock_missing_keypad';
|
|
1311
1358
|
} | {
|
|
1312
1359
|
message: string;
|
|
1313
1360
|
is_access_code_error: true;
|
|
1361
|
+
created_at?: string | undefined;
|
|
1314
1362
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1315
1363
|
error_code: 'salto_site_user_not_subscribed';
|
|
1316
1364
|
} | {
|
|
1317
1365
|
message: string;
|
|
1318
1366
|
is_access_code_error: true;
|
|
1367
|
+
created_at?: string | undefined;
|
|
1319
1368
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1320
1369
|
error_code: 'hubitat_device_programming_delay';
|
|
1321
1370
|
} | {
|
|
1322
1371
|
message: string;
|
|
1323
1372
|
is_access_code_error: true;
|
|
1373
|
+
created_at?: string | undefined;
|
|
1324
1374
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1325
1375
|
error_code: 'hubitat_no_free_positions_available';
|
|
1326
1376
|
} | {
|
|
@@ -1414,50 +1464,62 @@ export interface Routes {
|
|
|
1414
1464
|
/** 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
1465
|
warnings: Array<{
|
|
1416
1466
|
message: string;
|
|
1467
|
+
created_at?: string | undefined;
|
|
1417
1468
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1418
1469
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
1419
1470
|
} | {
|
|
1420
1471
|
message: string;
|
|
1472
|
+
created_at?: string | undefined;
|
|
1421
1473
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1422
1474
|
warning_code: 'schlage_detected_duplicate';
|
|
1423
1475
|
} | {
|
|
1424
1476
|
message: string;
|
|
1477
|
+
created_at?: string | undefined;
|
|
1425
1478
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1426
1479
|
warning_code: 'schlage_creation_outage';
|
|
1427
1480
|
} | {
|
|
1428
1481
|
message: string;
|
|
1482
|
+
created_at?: string | undefined;
|
|
1429
1483
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1430
1484
|
warning_code: 'salto_office_mode';
|
|
1431
1485
|
} | {
|
|
1432
1486
|
message: string;
|
|
1487
|
+
created_at?: string | undefined;
|
|
1433
1488
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1434
1489
|
warning_code: 'code_modified_external_to_seam';
|
|
1435
1490
|
} | {
|
|
1436
1491
|
message: string;
|
|
1492
|
+
created_at?: string | undefined;
|
|
1437
1493
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1438
1494
|
warning_code: 'delay_in_setting_on_device';
|
|
1439
1495
|
} | {
|
|
1440
1496
|
message: string;
|
|
1497
|
+
created_at?: string | undefined;
|
|
1441
1498
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1442
1499
|
warning_code: 'delay_in_removing_from_device';
|
|
1443
1500
|
} | {
|
|
1444
1501
|
message: string;
|
|
1502
|
+
created_at?: string | undefined;
|
|
1445
1503
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1446
1504
|
warning_code: 'third_party_integration_detected';
|
|
1447
1505
|
} | {
|
|
1448
1506
|
message: string;
|
|
1507
|
+
created_at?: string | undefined;
|
|
1449
1508
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1450
1509
|
warning_code: 'august_device_programming_delay';
|
|
1451
1510
|
} | {
|
|
1452
1511
|
message: string;
|
|
1512
|
+
created_at?: string | undefined;
|
|
1453
1513
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1454
1514
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
1455
1515
|
} | {
|
|
1456
1516
|
message: string;
|
|
1517
|
+
created_at?: string | undefined;
|
|
1457
1518
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1458
1519
|
warning_code: 'management_transferred';
|
|
1459
1520
|
} | {
|
|
1460
1521
|
message: string;
|
|
1522
|
+
created_at?: string | undefined;
|
|
1461
1523
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1462
1524
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
1463
1525
|
}>;
|
|
@@ -2431,96 +2493,115 @@ export interface Routes {
|
|
|
2431
2493
|
errors: Array<{
|
|
2432
2494
|
message: string;
|
|
2433
2495
|
is_access_code_error: true;
|
|
2496
|
+
created_at?: string | undefined;
|
|
2434
2497
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2435
2498
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
2436
2499
|
} | {
|
|
2437
2500
|
message: string;
|
|
2438
2501
|
is_access_code_error: true;
|
|
2502
|
+
created_at?: string | undefined;
|
|
2439
2503
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2440
2504
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
2441
2505
|
} | {
|
|
2442
2506
|
message: string;
|
|
2443
2507
|
is_access_code_error: true;
|
|
2508
|
+
created_at?: string | undefined;
|
|
2444
2509
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2445
2510
|
error_code: 'failed_to_set_on_device';
|
|
2446
2511
|
} | {
|
|
2447
2512
|
message: string;
|
|
2448
2513
|
is_access_code_error: true;
|
|
2514
|
+
created_at?: string | undefined;
|
|
2449
2515
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2450
2516
|
error_code: 'failed_to_remove_from_device';
|
|
2451
2517
|
} | {
|
|
2452
2518
|
message: string;
|
|
2453
2519
|
is_access_code_error: true;
|
|
2520
|
+
created_at?: string | undefined;
|
|
2454
2521
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2455
2522
|
error_code: 'duplicate_code_on_device';
|
|
2456
2523
|
} | {
|
|
2457
2524
|
message: string;
|
|
2458
2525
|
is_access_code_error: true;
|
|
2526
|
+
created_at?: string | undefined;
|
|
2459
2527
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2460
2528
|
error_code: 'duplicate_code_attempt_prevented';
|
|
2461
2529
|
} | {
|
|
2462
2530
|
message: string;
|
|
2463
2531
|
is_access_code_error: true;
|
|
2532
|
+
created_at?: string | undefined;
|
|
2464
2533
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2465
2534
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
2466
2535
|
} | {
|
|
2467
2536
|
message: string;
|
|
2468
2537
|
is_access_code_error: true;
|
|
2538
|
+
created_at?: string | undefined;
|
|
2469
2539
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2470
2540
|
error_code: 'igloohome_bridge_offline';
|
|
2471
2541
|
} | {
|
|
2472
2542
|
message: string;
|
|
2473
2543
|
is_access_code_error: true;
|
|
2544
|
+
created_at?: string | undefined;
|
|
2474
2545
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2475
2546
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
2476
2547
|
} | {
|
|
2477
2548
|
message: string;
|
|
2478
2549
|
is_access_code_error: true;
|
|
2550
|
+
created_at?: string | undefined;
|
|
2479
2551
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2480
2552
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
2481
2553
|
} | {
|
|
2482
2554
|
message: string;
|
|
2483
2555
|
is_access_code_error: true;
|
|
2556
|
+
created_at?: string | undefined;
|
|
2484
2557
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2485
2558
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
2486
2559
|
} | {
|
|
2487
2560
|
message: string;
|
|
2488
2561
|
is_access_code_error: true;
|
|
2562
|
+
created_at?: string | undefined;
|
|
2489
2563
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2490
2564
|
error_code: 'code_modified_external_to_seam';
|
|
2491
2565
|
} | {
|
|
2492
2566
|
message: string;
|
|
2493
2567
|
is_access_code_error: true;
|
|
2568
|
+
created_at?: string | undefined;
|
|
2494
2569
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2495
2570
|
error_code: 'august_lock_invalid_code_length';
|
|
2496
2571
|
} | {
|
|
2497
2572
|
message: string;
|
|
2498
2573
|
is_access_code_error: true;
|
|
2574
|
+
created_at?: string | undefined;
|
|
2499
2575
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2500
2576
|
error_code: 'august_device_programming_delay';
|
|
2501
2577
|
} | {
|
|
2502
2578
|
message: string;
|
|
2503
2579
|
is_access_code_error: true;
|
|
2580
|
+
created_at?: string | undefined;
|
|
2504
2581
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2505
2582
|
error_code: 'august_device_slots_full';
|
|
2506
2583
|
} | {
|
|
2507
2584
|
message: string;
|
|
2508
2585
|
is_access_code_error: true;
|
|
2586
|
+
created_at?: string | undefined;
|
|
2509
2587
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2510
2588
|
error_code: 'august_lock_missing_keypad';
|
|
2511
2589
|
} | {
|
|
2512
2590
|
message: string;
|
|
2513
2591
|
is_access_code_error: true;
|
|
2592
|
+
created_at?: string | undefined;
|
|
2514
2593
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2515
2594
|
error_code: 'salto_site_user_not_subscribed';
|
|
2516
2595
|
} | {
|
|
2517
2596
|
message: string;
|
|
2518
2597
|
is_access_code_error: true;
|
|
2598
|
+
created_at?: string | undefined;
|
|
2519
2599
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2520
2600
|
error_code: 'hubitat_device_programming_delay';
|
|
2521
2601
|
} | {
|
|
2522
2602
|
message: string;
|
|
2523
2603
|
is_access_code_error: true;
|
|
2604
|
+
created_at?: string | undefined;
|
|
2524
2605
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2525
2606
|
error_code: 'hubitat_no_free_positions_available';
|
|
2526
2607
|
} | {
|
|
@@ -2614,50 +2695,62 @@ export interface Routes {
|
|
|
2614
2695
|
/** 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
2696
|
warnings: Array<{
|
|
2616
2697
|
message: string;
|
|
2698
|
+
created_at?: string | undefined;
|
|
2617
2699
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2618
2700
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
2619
2701
|
} | {
|
|
2620
2702
|
message: string;
|
|
2703
|
+
created_at?: string | undefined;
|
|
2621
2704
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2622
2705
|
warning_code: 'schlage_detected_duplicate';
|
|
2623
2706
|
} | {
|
|
2624
2707
|
message: string;
|
|
2708
|
+
created_at?: string | undefined;
|
|
2625
2709
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2626
2710
|
warning_code: 'schlage_creation_outage';
|
|
2627
2711
|
} | {
|
|
2628
2712
|
message: string;
|
|
2713
|
+
created_at?: string | undefined;
|
|
2629
2714
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2630
2715
|
warning_code: 'salto_office_mode';
|
|
2631
2716
|
} | {
|
|
2632
2717
|
message: string;
|
|
2718
|
+
created_at?: string | undefined;
|
|
2633
2719
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2634
2720
|
warning_code: 'code_modified_external_to_seam';
|
|
2635
2721
|
} | {
|
|
2636
2722
|
message: string;
|
|
2723
|
+
created_at?: string | undefined;
|
|
2637
2724
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2638
2725
|
warning_code: 'delay_in_setting_on_device';
|
|
2639
2726
|
} | {
|
|
2640
2727
|
message: string;
|
|
2728
|
+
created_at?: string | undefined;
|
|
2641
2729
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2642
2730
|
warning_code: 'delay_in_removing_from_device';
|
|
2643
2731
|
} | {
|
|
2644
2732
|
message: string;
|
|
2733
|
+
created_at?: string | undefined;
|
|
2645
2734
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2646
2735
|
warning_code: 'third_party_integration_detected';
|
|
2647
2736
|
} | {
|
|
2648
2737
|
message: string;
|
|
2738
|
+
created_at?: string | undefined;
|
|
2649
2739
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2650
2740
|
warning_code: 'august_device_programming_delay';
|
|
2651
2741
|
} | {
|
|
2652
2742
|
message: string;
|
|
2743
|
+
created_at?: string | undefined;
|
|
2653
2744
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2654
2745
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
2655
2746
|
} | {
|
|
2656
2747
|
message: string;
|
|
2748
|
+
created_at?: string | undefined;
|
|
2657
2749
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2658
2750
|
warning_code: 'management_transferred';
|
|
2659
2751
|
} | {
|
|
2660
2752
|
message: string;
|
|
2753
|
+
created_at?: string | undefined;
|
|
2661
2754
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2662
2755
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
2663
2756
|
}>;
|
|
@@ -2721,96 +2814,115 @@ export interface Routes {
|
|
|
2721
2814
|
errors: Array<{
|
|
2722
2815
|
message: string;
|
|
2723
2816
|
is_access_code_error: true;
|
|
2817
|
+
created_at?: string | undefined;
|
|
2724
2818
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2725
2819
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
2726
2820
|
} | {
|
|
2727
2821
|
message: string;
|
|
2728
2822
|
is_access_code_error: true;
|
|
2823
|
+
created_at?: string | undefined;
|
|
2729
2824
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2730
2825
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
2731
2826
|
} | {
|
|
2732
2827
|
message: string;
|
|
2733
2828
|
is_access_code_error: true;
|
|
2829
|
+
created_at?: string | undefined;
|
|
2734
2830
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2735
2831
|
error_code: 'failed_to_set_on_device';
|
|
2736
2832
|
} | {
|
|
2737
2833
|
message: string;
|
|
2738
2834
|
is_access_code_error: true;
|
|
2835
|
+
created_at?: string | undefined;
|
|
2739
2836
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2740
2837
|
error_code: 'failed_to_remove_from_device';
|
|
2741
2838
|
} | {
|
|
2742
2839
|
message: string;
|
|
2743
2840
|
is_access_code_error: true;
|
|
2841
|
+
created_at?: string | undefined;
|
|
2744
2842
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2745
2843
|
error_code: 'duplicate_code_on_device';
|
|
2746
2844
|
} | {
|
|
2747
2845
|
message: string;
|
|
2748
2846
|
is_access_code_error: true;
|
|
2847
|
+
created_at?: string | undefined;
|
|
2749
2848
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2750
2849
|
error_code: 'duplicate_code_attempt_prevented';
|
|
2751
2850
|
} | {
|
|
2752
2851
|
message: string;
|
|
2753
2852
|
is_access_code_error: true;
|
|
2853
|
+
created_at?: string | undefined;
|
|
2754
2854
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2755
2855
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
2756
2856
|
} | {
|
|
2757
2857
|
message: string;
|
|
2758
2858
|
is_access_code_error: true;
|
|
2859
|
+
created_at?: string | undefined;
|
|
2759
2860
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2760
2861
|
error_code: 'igloohome_bridge_offline';
|
|
2761
2862
|
} | {
|
|
2762
2863
|
message: string;
|
|
2763
2864
|
is_access_code_error: true;
|
|
2865
|
+
created_at?: string | undefined;
|
|
2764
2866
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2765
2867
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
2766
2868
|
} | {
|
|
2767
2869
|
message: string;
|
|
2768
2870
|
is_access_code_error: true;
|
|
2871
|
+
created_at?: string | undefined;
|
|
2769
2872
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2770
2873
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
2771
2874
|
} | {
|
|
2772
2875
|
message: string;
|
|
2773
2876
|
is_access_code_error: true;
|
|
2877
|
+
created_at?: string | undefined;
|
|
2774
2878
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2775
2879
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
2776
2880
|
} | {
|
|
2777
2881
|
message: string;
|
|
2778
2882
|
is_access_code_error: true;
|
|
2883
|
+
created_at?: string | undefined;
|
|
2779
2884
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2780
2885
|
error_code: 'code_modified_external_to_seam';
|
|
2781
2886
|
} | {
|
|
2782
2887
|
message: string;
|
|
2783
2888
|
is_access_code_error: true;
|
|
2889
|
+
created_at?: string | undefined;
|
|
2784
2890
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2785
2891
|
error_code: 'august_lock_invalid_code_length';
|
|
2786
2892
|
} | {
|
|
2787
2893
|
message: string;
|
|
2788
2894
|
is_access_code_error: true;
|
|
2895
|
+
created_at?: string | undefined;
|
|
2789
2896
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2790
2897
|
error_code: 'august_device_programming_delay';
|
|
2791
2898
|
} | {
|
|
2792
2899
|
message: string;
|
|
2793
2900
|
is_access_code_error: true;
|
|
2901
|
+
created_at?: string | undefined;
|
|
2794
2902
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2795
2903
|
error_code: 'august_device_slots_full';
|
|
2796
2904
|
} | {
|
|
2797
2905
|
message: string;
|
|
2798
2906
|
is_access_code_error: true;
|
|
2907
|
+
created_at?: string | undefined;
|
|
2799
2908
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2800
2909
|
error_code: 'august_lock_missing_keypad';
|
|
2801
2910
|
} | {
|
|
2802
2911
|
message: string;
|
|
2803
2912
|
is_access_code_error: true;
|
|
2913
|
+
created_at?: string | undefined;
|
|
2804
2914
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2805
2915
|
error_code: 'salto_site_user_not_subscribed';
|
|
2806
2916
|
} | {
|
|
2807
2917
|
message: string;
|
|
2808
2918
|
is_access_code_error: true;
|
|
2919
|
+
created_at?: string | undefined;
|
|
2809
2920
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2810
2921
|
error_code: 'hubitat_device_programming_delay';
|
|
2811
2922
|
} | {
|
|
2812
2923
|
message: string;
|
|
2813
2924
|
is_access_code_error: true;
|
|
2925
|
+
created_at?: string | undefined;
|
|
2814
2926
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2815
2927
|
error_code: 'hubitat_no_free_positions_available';
|
|
2816
2928
|
} | {
|
|
@@ -2904,50 +3016,62 @@ export interface Routes {
|
|
|
2904
3016
|
/** 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
3017
|
warnings: Array<{
|
|
2906
3018
|
message: string;
|
|
3019
|
+
created_at?: string | undefined;
|
|
2907
3020
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2908
3021
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
2909
3022
|
} | {
|
|
2910
3023
|
message: string;
|
|
3024
|
+
created_at?: string | undefined;
|
|
2911
3025
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2912
3026
|
warning_code: 'schlage_detected_duplicate';
|
|
2913
3027
|
} | {
|
|
2914
3028
|
message: string;
|
|
3029
|
+
created_at?: string | undefined;
|
|
2915
3030
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2916
3031
|
warning_code: 'schlage_creation_outage';
|
|
2917
3032
|
} | {
|
|
2918
3033
|
message: string;
|
|
3034
|
+
created_at?: string | undefined;
|
|
2919
3035
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2920
3036
|
warning_code: 'salto_office_mode';
|
|
2921
3037
|
} | {
|
|
2922
3038
|
message: string;
|
|
3039
|
+
created_at?: string | undefined;
|
|
2923
3040
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2924
3041
|
warning_code: 'code_modified_external_to_seam';
|
|
2925
3042
|
} | {
|
|
2926
3043
|
message: string;
|
|
3044
|
+
created_at?: string | undefined;
|
|
2927
3045
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2928
3046
|
warning_code: 'delay_in_setting_on_device';
|
|
2929
3047
|
} | {
|
|
2930
3048
|
message: string;
|
|
3049
|
+
created_at?: string | undefined;
|
|
2931
3050
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2932
3051
|
warning_code: 'delay_in_removing_from_device';
|
|
2933
3052
|
} | {
|
|
2934
3053
|
message: string;
|
|
3054
|
+
created_at?: string | undefined;
|
|
2935
3055
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2936
3056
|
warning_code: 'third_party_integration_detected';
|
|
2937
3057
|
} | {
|
|
2938
3058
|
message: string;
|
|
3059
|
+
created_at?: string | undefined;
|
|
2939
3060
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2940
3061
|
warning_code: 'august_device_programming_delay';
|
|
2941
3062
|
} | {
|
|
2942
3063
|
message: string;
|
|
3064
|
+
created_at?: string | undefined;
|
|
2943
3065
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2944
3066
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
2945
3067
|
} | {
|
|
2946
3068
|
message: string;
|
|
3069
|
+
created_at?: string | undefined;
|
|
2947
3070
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2948
3071
|
warning_code: 'management_transferred';
|
|
2949
3072
|
} | {
|
|
2950
3073
|
message: string;
|
|
3074
|
+
created_at?: string | undefined;
|
|
2951
3075
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2952
3076
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
2953
3077
|
}>;
|
|
@@ -3010,96 +3134,115 @@ export interface Routes {
|
|
|
3010
3134
|
errors: Array<{
|
|
3011
3135
|
message: string;
|
|
3012
3136
|
is_access_code_error: true;
|
|
3137
|
+
created_at?: string | undefined;
|
|
3013
3138
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3014
3139
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
3015
3140
|
} | {
|
|
3016
3141
|
message: string;
|
|
3017
3142
|
is_access_code_error: true;
|
|
3143
|
+
created_at?: string | undefined;
|
|
3018
3144
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3019
3145
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3020
3146
|
} | {
|
|
3021
3147
|
message: string;
|
|
3022
3148
|
is_access_code_error: true;
|
|
3149
|
+
created_at?: string | undefined;
|
|
3023
3150
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3024
3151
|
error_code: 'failed_to_set_on_device';
|
|
3025
3152
|
} | {
|
|
3026
3153
|
message: string;
|
|
3027
3154
|
is_access_code_error: true;
|
|
3155
|
+
created_at?: string | undefined;
|
|
3028
3156
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3029
3157
|
error_code: 'failed_to_remove_from_device';
|
|
3030
3158
|
} | {
|
|
3031
3159
|
message: string;
|
|
3032
3160
|
is_access_code_error: true;
|
|
3161
|
+
created_at?: string | undefined;
|
|
3033
3162
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3034
3163
|
error_code: 'duplicate_code_on_device';
|
|
3035
3164
|
} | {
|
|
3036
3165
|
message: string;
|
|
3037
3166
|
is_access_code_error: true;
|
|
3167
|
+
created_at?: string | undefined;
|
|
3038
3168
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3039
3169
|
error_code: 'duplicate_code_attempt_prevented';
|
|
3040
3170
|
} | {
|
|
3041
3171
|
message: string;
|
|
3042
3172
|
is_access_code_error: true;
|
|
3173
|
+
created_at?: string | undefined;
|
|
3043
3174
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3044
3175
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
3045
3176
|
} | {
|
|
3046
3177
|
message: string;
|
|
3047
3178
|
is_access_code_error: true;
|
|
3179
|
+
created_at?: string | undefined;
|
|
3048
3180
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3049
3181
|
error_code: 'igloohome_bridge_offline';
|
|
3050
3182
|
} | {
|
|
3051
3183
|
message: string;
|
|
3052
3184
|
is_access_code_error: true;
|
|
3185
|
+
created_at?: string | undefined;
|
|
3053
3186
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3054
3187
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
3055
3188
|
} | {
|
|
3056
3189
|
message: string;
|
|
3057
3190
|
is_access_code_error: true;
|
|
3191
|
+
created_at?: string | undefined;
|
|
3058
3192
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3059
3193
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
3060
3194
|
} | {
|
|
3061
3195
|
message: string;
|
|
3062
3196
|
is_access_code_error: true;
|
|
3197
|
+
created_at?: string | undefined;
|
|
3063
3198
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3064
3199
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
3065
3200
|
} | {
|
|
3066
3201
|
message: string;
|
|
3067
3202
|
is_access_code_error: true;
|
|
3203
|
+
created_at?: string | undefined;
|
|
3068
3204
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3069
3205
|
error_code: 'code_modified_external_to_seam';
|
|
3070
3206
|
} | {
|
|
3071
3207
|
message: string;
|
|
3072
3208
|
is_access_code_error: true;
|
|
3209
|
+
created_at?: string | undefined;
|
|
3073
3210
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3074
3211
|
error_code: 'august_lock_invalid_code_length';
|
|
3075
3212
|
} | {
|
|
3076
3213
|
message: string;
|
|
3077
3214
|
is_access_code_error: true;
|
|
3215
|
+
created_at?: string | undefined;
|
|
3078
3216
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3079
3217
|
error_code: 'august_device_programming_delay';
|
|
3080
3218
|
} | {
|
|
3081
3219
|
message: string;
|
|
3082
3220
|
is_access_code_error: true;
|
|
3221
|
+
created_at?: string | undefined;
|
|
3083
3222
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3084
3223
|
error_code: 'august_device_slots_full';
|
|
3085
3224
|
} | {
|
|
3086
3225
|
message: string;
|
|
3087
3226
|
is_access_code_error: true;
|
|
3227
|
+
created_at?: string | undefined;
|
|
3088
3228
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3089
3229
|
error_code: 'august_lock_missing_keypad';
|
|
3090
3230
|
} | {
|
|
3091
3231
|
message: string;
|
|
3092
3232
|
is_access_code_error: true;
|
|
3233
|
+
created_at?: string | undefined;
|
|
3093
3234
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3094
3235
|
error_code: 'salto_site_user_not_subscribed';
|
|
3095
3236
|
} | {
|
|
3096
3237
|
message: string;
|
|
3097
3238
|
is_access_code_error: true;
|
|
3239
|
+
created_at?: string | undefined;
|
|
3098
3240
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3099
3241
|
error_code: 'hubitat_device_programming_delay';
|
|
3100
3242
|
} | {
|
|
3101
3243
|
message: string;
|
|
3102
3244
|
is_access_code_error: true;
|
|
3245
|
+
created_at?: string | undefined;
|
|
3103
3246
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3104
3247
|
error_code: 'hubitat_no_free_positions_available';
|
|
3105
3248
|
} | {
|
|
@@ -3193,50 +3336,62 @@ export interface Routes {
|
|
|
3193
3336
|
/** 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
3337
|
warnings: Array<{
|
|
3195
3338
|
message: string;
|
|
3339
|
+
created_at?: string | undefined;
|
|
3196
3340
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3197
3341
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
3198
3342
|
} | {
|
|
3199
3343
|
message: string;
|
|
3344
|
+
created_at?: string | undefined;
|
|
3200
3345
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3201
3346
|
warning_code: 'schlage_detected_duplicate';
|
|
3202
3347
|
} | {
|
|
3203
3348
|
message: string;
|
|
3349
|
+
created_at?: string | undefined;
|
|
3204
3350
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3205
3351
|
warning_code: 'schlage_creation_outage';
|
|
3206
3352
|
} | {
|
|
3207
3353
|
message: string;
|
|
3354
|
+
created_at?: string | undefined;
|
|
3208
3355
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3209
3356
|
warning_code: 'salto_office_mode';
|
|
3210
3357
|
} | {
|
|
3211
3358
|
message: string;
|
|
3359
|
+
created_at?: string | undefined;
|
|
3212
3360
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3213
3361
|
warning_code: 'code_modified_external_to_seam';
|
|
3214
3362
|
} | {
|
|
3215
3363
|
message: string;
|
|
3364
|
+
created_at?: string | undefined;
|
|
3216
3365
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3217
3366
|
warning_code: 'delay_in_setting_on_device';
|
|
3218
3367
|
} | {
|
|
3219
3368
|
message: string;
|
|
3369
|
+
created_at?: string | undefined;
|
|
3220
3370
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3221
3371
|
warning_code: 'delay_in_removing_from_device';
|
|
3222
3372
|
} | {
|
|
3223
3373
|
message: string;
|
|
3374
|
+
created_at?: string | undefined;
|
|
3224
3375
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3225
3376
|
warning_code: 'third_party_integration_detected';
|
|
3226
3377
|
} | {
|
|
3227
3378
|
message: string;
|
|
3379
|
+
created_at?: string | undefined;
|
|
3228
3380
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3229
3381
|
warning_code: 'august_device_programming_delay';
|
|
3230
3382
|
} | {
|
|
3231
3383
|
message: string;
|
|
3384
|
+
created_at?: string | undefined;
|
|
3232
3385
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3233
3386
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
3234
3387
|
} | {
|
|
3235
3388
|
message: string;
|
|
3389
|
+
created_at?: string | undefined;
|
|
3236
3390
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3237
3391
|
warning_code: 'management_transferred';
|
|
3238
3392
|
} | {
|
|
3239
3393
|
message: string;
|
|
3394
|
+
created_at?: string | undefined;
|
|
3240
3395
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3241
3396
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
3242
3397
|
}>;
|
|
@@ -3287,96 +3442,115 @@ export interface Routes {
|
|
|
3287
3442
|
errors: Array<{
|
|
3288
3443
|
message: string;
|
|
3289
3444
|
is_access_code_error: true;
|
|
3445
|
+
created_at?: string | undefined;
|
|
3290
3446
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3291
3447
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
3292
3448
|
} | {
|
|
3293
3449
|
message: string;
|
|
3294
3450
|
is_access_code_error: true;
|
|
3451
|
+
created_at?: string | undefined;
|
|
3295
3452
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3296
3453
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3297
3454
|
} | {
|
|
3298
3455
|
message: string;
|
|
3299
3456
|
is_access_code_error: true;
|
|
3457
|
+
created_at?: string | undefined;
|
|
3300
3458
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3301
3459
|
error_code: 'failed_to_set_on_device';
|
|
3302
3460
|
} | {
|
|
3303
3461
|
message: string;
|
|
3304
3462
|
is_access_code_error: true;
|
|
3463
|
+
created_at?: string | undefined;
|
|
3305
3464
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3306
3465
|
error_code: 'failed_to_remove_from_device';
|
|
3307
3466
|
} | {
|
|
3308
3467
|
message: string;
|
|
3309
3468
|
is_access_code_error: true;
|
|
3469
|
+
created_at?: string | undefined;
|
|
3310
3470
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3311
3471
|
error_code: 'duplicate_code_on_device';
|
|
3312
3472
|
} | {
|
|
3313
3473
|
message: string;
|
|
3314
3474
|
is_access_code_error: true;
|
|
3475
|
+
created_at?: string | undefined;
|
|
3315
3476
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3316
3477
|
error_code: 'duplicate_code_attempt_prevented';
|
|
3317
3478
|
} | {
|
|
3318
3479
|
message: string;
|
|
3319
3480
|
is_access_code_error: true;
|
|
3481
|
+
created_at?: string | undefined;
|
|
3320
3482
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3321
3483
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
3322
3484
|
} | {
|
|
3323
3485
|
message: string;
|
|
3324
3486
|
is_access_code_error: true;
|
|
3487
|
+
created_at?: string | undefined;
|
|
3325
3488
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3326
3489
|
error_code: 'igloohome_bridge_offline';
|
|
3327
3490
|
} | {
|
|
3328
3491
|
message: string;
|
|
3329
3492
|
is_access_code_error: true;
|
|
3493
|
+
created_at?: string | undefined;
|
|
3330
3494
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3331
3495
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
3332
3496
|
} | {
|
|
3333
3497
|
message: string;
|
|
3334
3498
|
is_access_code_error: true;
|
|
3499
|
+
created_at?: string | undefined;
|
|
3335
3500
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3336
3501
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
3337
3502
|
} | {
|
|
3338
3503
|
message: string;
|
|
3339
3504
|
is_access_code_error: true;
|
|
3505
|
+
created_at?: string | undefined;
|
|
3340
3506
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3341
3507
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
3342
3508
|
} | {
|
|
3343
3509
|
message: string;
|
|
3344
3510
|
is_access_code_error: true;
|
|
3511
|
+
created_at?: string | undefined;
|
|
3345
3512
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3346
3513
|
error_code: 'code_modified_external_to_seam';
|
|
3347
3514
|
} | {
|
|
3348
3515
|
message: string;
|
|
3349
3516
|
is_access_code_error: true;
|
|
3517
|
+
created_at?: string | undefined;
|
|
3350
3518
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3351
3519
|
error_code: 'august_lock_invalid_code_length';
|
|
3352
3520
|
} | {
|
|
3353
3521
|
message: string;
|
|
3354
3522
|
is_access_code_error: true;
|
|
3523
|
+
created_at?: string | undefined;
|
|
3355
3524
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3356
3525
|
error_code: 'august_device_programming_delay';
|
|
3357
3526
|
} | {
|
|
3358
3527
|
message: string;
|
|
3359
3528
|
is_access_code_error: true;
|
|
3529
|
+
created_at?: string | undefined;
|
|
3360
3530
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3361
3531
|
error_code: 'august_device_slots_full';
|
|
3362
3532
|
} | {
|
|
3363
3533
|
message: string;
|
|
3364
3534
|
is_access_code_error: true;
|
|
3535
|
+
created_at?: string | undefined;
|
|
3365
3536
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3366
3537
|
error_code: 'august_lock_missing_keypad';
|
|
3367
3538
|
} | {
|
|
3368
3539
|
message: string;
|
|
3369
3540
|
is_access_code_error: true;
|
|
3541
|
+
created_at?: string | undefined;
|
|
3370
3542
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3371
3543
|
error_code: 'salto_site_user_not_subscribed';
|
|
3372
3544
|
} | {
|
|
3373
3545
|
message: string;
|
|
3374
3546
|
is_access_code_error: true;
|
|
3547
|
+
created_at?: string | undefined;
|
|
3375
3548
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3376
3549
|
error_code: 'hubitat_device_programming_delay';
|
|
3377
3550
|
} | {
|
|
3378
3551
|
message: string;
|
|
3379
3552
|
is_access_code_error: true;
|
|
3553
|
+
created_at?: string | undefined;
|
|
3380
3554
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3381
3555
|
error_code: 'hubitat_no_free_positions_available';
|
|
3382
3556
|
} | {
|
|
@@ -3470,50 +3644,62 @@ export interface Routes {
|
|
|
3470
3644
|
/** 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
3645
|
warnings: Array<{
|
|
3472
3646
|
message: string;
|
|
3647
|
+
created_at?: string | undefined;
|
|
3473
3648
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3474
3649
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
3475
3650
|
} | {
|
|
3476
3651
|
message: string;
|
|
3652
|
+
created_at?: string | undefined;
|
|
3477
3653
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3478
3654
|
warning_code: 'schlage_detected_duplicate';
|
|
3479
3655
|
} | {
|
|
3480
3656
|
message: string;
|
|
3657
|
+
created_at?: string | undefined;
|
|
3481
3658
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3482
3659
|
warning_code: 'schlage_creation_outage';
|
|
3483
3660
|
} | {
|
|
3484
3661
|
message: string;
|
|
3662
|
+
created_at?: string | undefined;
|
|
3485
3663
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3486
3664
|
warning_code: 'salto_office_mode';
|
|
3487
3665
|
} | {
|
|
3488
3666
|
message: string;
|
|
3667
|
+
created_at?: string | undefined;
|
|
3489
3668
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3490
3669
|
warning_code: 'code_modified_external_to_seam';
|
|
3491
3670
|
} | {
|
|
3492
3671
|
message: string;
|
|
3672
|
+
created_at?: string | undefined;
|
|
3493
3673
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3494
3674
|
warning_code: 'delay_in_setting_on_device';
|
|
3495
3675
|
} | {
|
|
3496
3676
|
message: string;
|
|
3677
|
+
created_at?: string | undefined;
|
|
3497
3678
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3498
3679
|
warning_code: 'delay_in_removing_from_device';
|
|
3499
3680
|
} | {
|
|
3500
3681
|
message: string;
|
|
3682
|
+
created_at?: string | undefined;
|
|
3501
3683
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3502
3684
|
warning_code: 'third_party_integration_detected';
|
|
3503
3685
|
} | {
|
|
3504
3686
|
message: string;
|
|
3687
|
+
created_at?: string | undefined;
|
|
3505
3688
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3506
3689
|
warning_code: 'august_device_programming_delay';
|
|
3507
3690
|
} | {
|
|
3508
3691
|
message: string;
|
|
3692
|
+
created_at?: string | undefined;
|
|
3509
3693
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3510
3694
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
3511
3695
|
} | {
|
|
3512
3696
|
message: string;
|
|
3697
|
+
created_at?: string | undefined;
|
|
3513
3698
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3514
3699
|
warning_code: 'management_transferred';
|
|
3515
3700
|
} | {
|
|
3516
3701
|
message: string;
|
|
3702
|
+
created_at?: string | undefined;
|
|
3517
3703
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3518
3704
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
3519
3705
|
}>;
|
|
@@ -3572,96 +3758,115 @@ export interface Routes {
|
|
|
3572
3758
|
errors: Array<{
|
|
3573
3759
|
message: string;
|
|
3574
3760
|
is_access_code_error: true;
|
|
3761
|
+
created_at?: string | undefined;
|
|
3575
3762
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3576
3763
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
3577
3764
|
} | {
|
|
3578
3765
|
message: string;
|
|
3579
3766
|
is_access_code_error: true;
|
|
3767
|
+
created_at?: string | undefined;
|
|
3580
3768
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3581
3769
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3582
3770
|
} | {
|
|
3583
3771
|
message: string;
|
|
3584
3772
|
is_access_code_error: true;
|
|
3773
|
+
created_at?: string | undefined;
|
|
3585
3774
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3586
3775
|
error_code: 'failed_to_set_on_device';
|
|
3587
3776
|
} | {
|
|
3588
3777
|
message: string;
|
|
3589
3778
|
is_access_code_error: true;
|
|
3779
|
+
created_at?: string | undefined;
|
|
3590
3780
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3591
3781
|
error_code: 'failed_to_remove_from_device';
|
|
3592
3782
|
} | {
|
|
3593
3783
|
message: string;
|
|
3594
3784
|
is_access_code_error: true;
|
|
3785
|
+
created_at?: string | undefined;
|
|
3595
3786
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3596
3787
|
error_code: 'duplicate_code_on_device';
|
|
3597
3788
|
} | {
|
|
3598
3789
|
message: string;
|
|
3599
3790
|
is_access_code_error: true;
|
|
3791
|
+
created_at?: string | undefined;
|
|
3600
3792
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3601
3793
|
error_code: 'duplicate_code_attempt_prevented';
|
|
3602
3794
|
} | {
|
|
3603
3795
|
message: string;
|
|
3604
3796
|
is_access_code_error: true;
|
|
3797
|
+
created_at?: string | undefined;
|
|
3605
3798
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3606
3799
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
3607
3800
|
} | {
|
|
3608
3801
|
message: string;
|
|
3609
3802
|
is_access_code_error: true;
|
|
3803
|
+
created_at?: string | undefined;
|
|
3610
3804
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3611
3805
|
error_code: 'igloohome_bridge_offline';
|
|
3612
3806
|
} | {
|
|
3613
3807
|
message: string;
|
|
3614
3808
|
is_access_code_error: true;
|
|
3809
|
+
created_at?: string | undefined;
|
|
3615
3810
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3616
3811
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
3617
3812
|
} | {
|
|
3618
3813
|
message: string;
|
|
3619
3814
|
is_access_code_error: true;
|
|
3815
|
+
created_at?: string | undefined;
|
|
3620
3816
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3621
3817
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
3622
3818
|
} | {
|
|
3623
3819
|
message: string;
|
|
3624
3820
|
is_access_code_error: true;
|
|
3821
|
+
created_at?: string | undefined;
|
|
3625
3822
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3626
3823
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
3627
3824
|
} | {
|
|
3628
3825
|
message: string;
|
|
3629
3826
|
is_access_code_error: true;
|
|
3827
|
+
created_at?: string | undefined;
|
|
3630
3828
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3631
3829
|
error_code: 'code_modified_external_to_seam';
|
|
3632
3830
|
} | {
|
|
3633
3831
|
message: string;
|
|
3634
3832
|
is_access_code_error: true;
|
|
3833
|
+
created_at?: string | undefined;
|
|
3635
3834
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3636
3835
|
error_code: 'august_lock_invalid_code_length';
|
|
3637
3836
|
} | {
|
|
3638
3837
|
message: string;
|
|
3639
3838
|
is_access_code_error: true;
|
|
3839
|
+
created_at?: string | undefined;
|
|
3640
3840
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3641
3841
|
error_code: 'august_device_programming_delay';
|
|
3642
3842
|
} | {
|
|
3643
3843
|
message: string;
|
|
3644
3844
|
is_access_code_error: true;
|
|
3845
|
+
created_at?: string | undefined;
|
|
3645
3846
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3646
3847
|
error_code: 'august_device_slots_full';
|
|
3647
3848
|
} | {
|
|
3648
3849
|
message: string;
|
|
3649
3850
|
is_access_code_error: true;
|
|
3851
|
+
created_at?: string | undefined;
|
|
3650
3852
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3651
3853
|
error_code: 'august_lock_missing_keypad';
|
|
3652
3854
|
} | {
|
|
3653
3855
|
message: string;
|
|
3654
3856
|
is_access_code_error: true;
|
|
3857
|
+
created_at?: string | undefined;
|
|
3655
3858
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3656
3859
|
error_code: 'salto_site_user_not_subscribed';
|
|
3657
3860
|
} | {
|
|
3658
3861
|
message: string;
|
|
3659
3862
|
is_access_code_error: true;
|
|
3863
|
+
created_at?: string | undefined;
|
|
3660
3864
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3661
3865
|
error_code: 'hubitat_device_programming_delay';
|
|
3662
3866
|
} | {
|
|
3663
3867
|
message: string;
|
|
3664
3868
|
is_access_code_error: true;
|
|
3869
|
+
created_at?: string | undefined;
|
|
3665
3870
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3666
3871
|
error_code: 'hubitat_no_free_positions_available';
|
|
3667
3872
|
} | {
|
|
@@ -3755,50 +3960,62 @@ export interface Routes {
|
|
|
3755
3960
|
/** 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
3961
|
warnings: Array<{
|
|
3757
3962
|
message: string;
|
|
3963
|
+
created_at?: string | undefined;
|
|
3758
3964
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3759
3965
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
3760
3966
|
} | {
|
|
3761
3967
|
message: string;
|
|
3968
|
+
created_at?: string | undefined;
|
|
3762
3969
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3763
3970
|
warning_code: 'schlage_detected_duplicate';
|
|
3764
3971
|
} | {
|
|
3765
3972
|
message: string;
|
|
3973
|
+
created_at?: string | undefined;
|
|
3766
3974
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3767
3975
|
warning_code: 'schlage_creation_outage';
|
|
3768
3976
|
} | {
|
|
3769
3977
|
message: string;
|
|
3978
|
+
created_at?: string | undefined;
|
|
3770
3979
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3771
3980
|
warning_code: 'salto_office_mode';
|
|
3772
3981
|
} | {
|
|
3773
3982
|
message: string;
|
|
3983
|
+
created_at?: string | undefined;
|
|
3774
3984
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3775
3985
|
warning_code: 'code_modified_external_to_seam';
|
|
3776
3986
|
} | {
|
|
3777
3987
|
message: string;
|
|
3988
|
+
created_at?: string | undefined;
|
|
3778
3989
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3779
3990
|
warning_code: 'delay_in_setting_on_device';
|
|
3780
3991
|
} | {
|
|
3781
3992
|
message: string;
|
|
3993
|
+
created_at?: string | undefined;
|
|
3782
3994
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3783
3995
|
warning_code: 'delay_in_removing_from_device';
|
|
3784
3996
|
} | {
|
|
3785
3997
|
message: string;
|
|
3998
|
+
created_at?: string | undefined;
|
|
3786
3999
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3787
4000
|
warning_code: 'third_party_integration_detected';
|
|
3788
4001
|
} | {
|
|
3789
4002
|
message: string;
|
|
4003
|
+
created_at?: string | undefined;
|
|
3790
4004
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3791
4005
|
warning_code: 'august_device_programming_delay';
|
|
3792
4006
|
} | {
|
|
3793
4007
|
message: string;
|
|
4008
|
+
created_at?: string | undefined;
|
|
3794
4009
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3795
4010
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
3796
4011
|
} | {
|
|
3797
4012
|
message: string;
|
|
4013
|
+
created_at?: string | undefined;
|
|
3798
4014
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3799
4015
|
warning_code: 'management_transferred';
|
|
3800
4016
|
} | {
|
|
3801
4017
|
message: string;
|
|
4018
|
+
created_at?: string | undefined;
|
|
3802
4019
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3803
4020
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
3804
4021
|
}>;
|
|
@@ -4748,96 +4965,115 @@ export interface Routes {
|
|
|
4748
4965
|
errors: Array<{
|
|
4749
4966
|
message: string;
|
|
4750
4967
|
is_access_code_error: true;
|
|
4968
|
+
created_at?: string | undefined;
|
|
4751
4969
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4752
4970
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
4753
4971
|
} | {
|
|
4754
4972
|
message: string;
|
|
4755
4973
|
is_access_code_error: true;
|
|
4974
|
+
created_at?: string | undefined;
|
|
4756
4975
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4757
4976
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
4758
4977
|
} | {
|
|
4759
4978
|
message: string;
|
|
4760
4979
|
is_access_code_error: true;
|
|
4980
|
+
created_at?: string | undefined;
|
|
4761
4981
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4762
4982
|
error_code: 'failed_to_set_on_device';
|
|
4763
4983
|
} | {
|
|
4764
4984
|
message: string;
|
|
4765
4985
|
is_access_code_error: true;
|
|
4986
|
+
created_at?: string | undefined;
|
|
4766
4987
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4767
4988
|
error_code: 'failed_to_remove_from_device';
|
|
4768
4989
|
} | {
|
|
4769
4990
|
message: string;
|
|
4770
4991
|
is_access_code_error: true;
|
|
4992
|
+
created_at?: string | undefined;
|
|
4771
4993
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4772
4994
|
error_code: 'duplicate_code_on_device';
|
|
4773
4995
|
} | {
|
|
4774
4996
|
message: string;
|
|
4775
4997
|
is_access_code_error: true;
|
|
4998
|
+
created_at?: string | undefined;
|
|
4776
4999
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4777
5000
|
error_code: 'duplicate_code_attempt_prevented';
|
|
4778
5001
|
} | {
|
|
4779
5002
|
message: string;
|
|
4780
5003
|
is_access_code_error: true;
|
|
5004
|
+
created_at?: string | undefined;
|
|
4781
5005
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4782
5006
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
4783
5007
|
} | {
|
|
4784
5008
|
message: string;
|
|
4785
5009
|
is_access_code_error: true;
|
|
5010
|
+
created_at?: string | undefined;
|
|
4786
5011
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4787
5012
|
error_code: 'igloohome_bridge_offline';
|
|
4788
5013
|
} | {
|
|
4789
5014
|
message: string;
|
|
4790
5015
|
is_access_code_error: true;
|
|
5016
|
+
created_at?: string | undefined;
|
|
4791
5017
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4792
5018
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
4793
5019
|
} | {
|
|
4794
5020
|
message: string;
|
|
4795
5021
|
is_access_code_error: true;
|
|
5022
|
+
created_at?: string | undefined;
|
|
4796
5023
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4797
5024
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
4798
5025
|
} | {
|
|
4799
5026
|
message: string;
|
|
4800
5027
|
is_access_code_error: true;
|
|
5028
|
+
created_at?: string | undefined;
|
|
4801
5029
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4802
5030
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
4803
5031
|
} | {
|
|
4804
5032
|
message: string;
|
|
4805
5033
|
is_access_code_error: true;
|
|
5034
|
+
created_at?: string | undefined;
|
|
4806
5035
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4807
5036
|
error_code: 'code_modified_external_to_seam';
|
|
4808
5037
|
} | {
|
|
4809
5038
|
message: string;
|
|
4810
5039
|
is_access_code_error: true;
|
|
5040
|
+
created_at?: string | undefined;
|
|
4811
5041
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4812
5042
|
error_code: 'august_lock_invalid_code_length';
|
|
4813
5043
|
} | {
|
|
4814
5044
|
message: string;
|
|
4815
5045
|
is_access_code_error: true;
|
|
5046
|
+
created_at?: string | undefined;
|
|
4816
5047
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4817
5048
|
error_code: 'august_device_programming_delay';
|
|
4818
5049
|
} | {
|
|
4819
5050
|
message: string;
|
|
4820
5051
|
is_access_code_error: true;
|
|
5052
|
+
created_at?: string | undefined;
|
|
4821
5053
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4822
5054
|
error_code: 'august_device_slots_full';
|
|
4823
5055
|
} | {
|
|
4824
5056
|
message: string;
|
|
4825
5057
|
is_access_code_error: true;
|
|
5058
|
+
created_at?: string | undefined;
|
|
4826
5059
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4827
5060
|
error_code: 'august_lock_missing_keypad';
|
|
4828
5061
|
} | {
|
|
4829
5062
|
message: string;
|
|
4830
5063
|
is_access_code_error: true;
|
|
5064
|
+
created_at?: string | undefined;
|
|
4831
5065
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4832
5066
|
error_code: 'salto_site_user_not_subscribed';
|
|
4833
5067
|
} | {
|
|
4834
5068
|
message: string;
|
|
4835
5069
|
is_access_code_error: true;
|
|
5070
|
+
created_at?: string | undefined;
|
|
4836
5071
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4837
5072
|
error_code: 'hubitat_device_programming_delay';
|
|
4838
5073
|
} | {
|
|
4839
5074
|
message: string;
|
|
4840
5075
|
is_access_code_error: true;
|
|
5076
|
+
created_at?: string | undefined;
|
|
4841
5077
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4842
5078
|
error_code: 'hubitat_no_free_positions_available';
|
|
4843
5079
|
} | {
|
|
@@ -4931,50 +5167,62 @@ export interface Routes {
|
|
|
4931
5167
|
/** 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
5168
|
warnings: Array<{
|
|
4933
5169
|
message: string;
|
|
5170
|
+
created_at?: string | undefined;
|
|
4934
5171
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4935
5172
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
4936
5173
|
} | {
|
|
4937
5174
|
message: string;
|
|
5175
|
+
created_at?: string | undefined;
|
|
4938
5176
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4939
5177
|
warning_code: 'schlage_detected_duplicate';
|
|
4940
5178
|
} | {
|
|
4941
5179
|
message: string;
|
|
5180
|
+
created_at?: string | undefined;
|
|
4942
5181
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4943
5182
|
warning_code: 'schlage_creation_outage';
|
|
4944
5183
|
} | {
|
|
4945
5184
|
message: string;
|
|
5185
|
+
created_at?: string | undefined;
|
|
4946
5186
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4947
5187
|
warning_code: 'salto_office_mode';
|
|
4948
5188
|
} | {
|
|
4949
5189
|
message: string;
|
|
5190
|
+
created_at?: string | undefined;
|
|
4950
5191
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4951
5192
|
warning_code: 'code_modified_external_to_seam';
|
|
4952
5193
|
} | {
|
|
4953
5194
|
message: string;
|
|
5195
|
+
created_at?: string | undefined;
|
|
4954
5196
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4955
5197
|
warning_code: 'delay_in_setting_on_device';
|
|
4956
5198
|
} | {
|
|
4957
5199
|
message: string;
|
|
5200
|
+
created_at?: string | undefined;
|
|
4958
5201
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4959
5202
|
warning_code: 'delay_in_removing_from_device';
|
|
4960
5203
|
} | {
|
|
4961
5204
|
message: string;
|
|
5205
|
+
created_at?: string | undefined;
|
|
4962
5206
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4963
5207
|
warning_code: 'third_party_integration_detected';
|
|
4964
5208
|
} | {
|
|
4965
5209
|
message: string;
|
|
5210
|
+
created_at?: string | undefined;
|
|
4966
5211
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4967
5212
|
warning_code: 'august_device_programming_delay';
|
|
4968
5213
|
} | {
|
|
4969
5214
|
message: string;
|
|
5215
|
+
created_at?: string | undefined;
|
|
4970
5216
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4971
5217
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
4972
5218
|
} | {
|
|
4973
5219
|
message: string;
|
|
5220
|
+
created_at?: string | undefined;
|
|
4974
5221
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4975
5222
|
warning_code: 'management_transferred';
|
|
4976
5223
|
} | {
|
|
4977
5224
|
message: string;
|
|
5225
|
+
created_at?: string | undefined;
|
|
4978
5226
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4979
5227
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
4980
5228
|
}>;
|
|
@@ -5015,96 +5263,115 @@ export interface Routes {
|
|
|
5015
5263
|
errors: Array<{
|
|
5016
5264
|
message: string;
|
|
5017
5265
|
is_access_code_error: true;
|
|
5266
|
+
created_at?: string | undefined;
|
|
5018
5267
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5019
5268
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
5020
5269
|
} | {
|
|
5021
5270
|
message: string;
|
|
5022
5271
|
is_access_code_error: true;
|
|
5272
|
+
created_at?: string | undefined;
|
|
5023
5273
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5024
5274
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
5025
5275
|
} | {
|
|
5026
5276
|
message: string;
|
|
5027
5277
|
is_access_code_error: true;
|
|
5278
|
+
created_at?: string | undefined;
|
|
5028
5279
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5029
5280
|
error_code: 'failed_to_set_on_device';
|
|
5030
5281
|
} | {
|
|
5031
5282
|
message: string;
|
|
5032
5283
|
is_access_code_error: true;
|
|
5284
|
+
created_at?: string | undefined;
|
|
5033
5285
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5034
5286
|
error_code: 'failed_to_remove_from_device';
|
|
5035
5287
|
} | {
|
|
5036
5288
|
message: string;
|
|
5037
5289
|
is_access_code_error: true;
|
|
5290
|
+
created_at?: string | undefined;
|
|
5038
5291
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5039
5292
|
error_code: 'duplicate_code_on_device';
|
|
5040
5293
|
} | {
|
|
5041
5294
|
message: string;
|
|
5042
5295
|
is_access_code_error: true;
|
|
5296
|
+
created_at?: string | undefined;
|
|
5043
5297
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5044
5298
|
error_code: 'duplicate_code_attempt_prevented';
|
|
5045
5299
|
} | {
|
|
5046
5300
|
message: string;
|
|
5047
5301
|
is_access_code_error: true;
|
|
5302
|
+
created_at?: string | undefined;
|
|
5048
5303
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5049
5304
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
5050
5305
|
} | {
|
|
5051
5306
|
message: string;
|
|
5052
5307
|
is_access_code_error: true;
|
|
5308
|
+
created_at?: string | undefined;
|
|
5053
5309
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5054
5310
|
error_code: 'igloohome_bridge_offline';
|
|
5055
5311
|
} | {
|
|
5056
5312
|
message: string;
|
|
5057
5313
|
is_access_code_error: true;
|
|
5314
|
+
created_at?: string | undefined;
|
|
5058
5315
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5059
5316
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
5060
5317
|
} | {
|
|
5061
5318
|
message: string;
|
|
5062
5319
|
is_access_code_error: true;
|
|
5320
|
+
created_at?: string | undefined;
|
|
5063
5321
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5064
5322
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
5065
5323
|
} | {
|
|
5066
5324
|
message: string;
|
|
5067
5325
|
is_access_code_error: true;
|
|
5326
|
+
created_at?: string | undefined;
|
|
5068
5327
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5069
5328
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
5070
5329
|
} | {
|
|
5071
5330
|
message: string;
|
|
5072
5331
|
is_access_code_error: true;
|
|
5332
|
+
created_at?: string | undefined;
|
|
5073
5333
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5074
5334
|
error_code: 'code_modified_external_to_seam';
|
|
5075
5335
|
} | {
|
|
5076
5336
|
message: string;
|
|
5077
5337
|
is_access_code_error: true;
|
|
5338
|
+
created_at?: string | undefined;
|
|
5078
5339
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5079
5340
|
error_code: 'august_lock_invalid_code_length';
|
|
5080
5341
|
} | {
|
|
5081
5342
|
message: string;
|
|
5082
5343
|
is_access_code_error: true;
|
|
5344
|
+
created_at?: string | undefined;
|
|
5083
5345
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5084
5346
|
error_code: 'august_device_programming_delay';
|
|
5085
5347
|
} | {
|
|
5086
5348
|
message: string;
|
|
5087
5349
|
is_access_code_error: true;
|
|
5350
|
+
created_at?: string | undefined;
|
|
5088
5351
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5089
5352
|
error_code: 'august_device_slots_full';
|
|
5090
5353
|
} | {
|
|
5091
5354
|
message: string;
|
|
5092
5355
|
is_access_code_error: true;
|
|
5356
|
+
created_at?: string | undefined;
|
|
5093
5357
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5094
5358
|
error_code: 'august_lock_missing_keypad';
|
|
5095
5359
|
} | {
|
|
5096
5360
|
message: string;
|
|
5097
5361
|
is_access_code_error: true;
|
|
5362
|
+
created_at?: string | undefined;
|
|
5098
5363
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5099
5364
|
error_code: 'salto_site_user_not_subscribed';
|
|
5100
5365
|
} | {
|
|
5101
5366
|
message: string;
|
|
5102
5367
|
is_access_code_error: true;
|
|
5368
|
+
created_at?: string | undefined;
|
|
5103
5369
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5104
5370
|
error_code: 'hubitat_device_programming_delay';
|
|
5105
5371
|
} | {
|
|
5106
5372
|
message: string;
|
|
5107
5373
|
is_access_code_error: true;
|
|
5374
|
+
created_at?: string | undefined;
|
|
5108
5375
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5109
5376
|
error_code: 'hubitat_no_free_positions_available';
|
|
5110
5377
|
} | {
|
|
@@ -5198,50 +5465,62 @@ export interface Routes {
|
|
|
5198
5465
|
/** 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
5466
|
warnings: Array<{
|
|
5200
5467
|
message: string;
|
|
5468
|
+
created_at?: string | undefined;
|
|
5201
5469
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5202
5470
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
5203
5471
|
} | {
|
|
5204
5472
|
message: string;
|
|
5473
|
+
created_at?: string | undefined;
|
|
5205
5474
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5206
5475
|
warning_code: 'schlage_detected_duplicate';
|
|
5207
5476
|
} | {
|
|
5208
5477
|
message: string;
|
|
5478
|
+
created_at?: string | undefined;
|
|
5209
5479
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5210
5480
|
warning_code: 'schlage_creation_outage';
|
|
5211
5481
|
} | {
|
|
5212
5482
|
message: string;
|
|
5483
|
+
created_at?: string | undefined;
|
|
5213
5484
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5214
5485
|
warning_code: 'salto_office_mode';
|
|
5215
5486
|
} | {
|
|
5216
5487
|
message: string;
|
|
5488
|
+
created_at?: string | undefined;
|
|
5217
5489
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5218
5490
|
warning_code: 'code_modified_external_to_seam';
|
|
5219
5491
|
} | {
|
|
5220
5492
|
message: string;
|
|
5493
|
+
created_at?: string | undefined;
|
|
5221
5494
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5222
5495
|
warning_code: 'delay_in_setting_on_device';
|
|
5223
5496
|
} | {
|
|
5224
5497
|
message: string;
|
|
5498
|
+
created_at?: string | undefined;
|
|
5225
5499
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5226
5500
|
warning_code: 'delay_in_removing_from_device';
|
|
5227
5501
|
} | {
|
|
5228
5502
|
message: string;
|
|
5503
|
+
created_at?: string | undefined;
|
|
5229
5504
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5230
5505
|
warning_code: 'third_party_integration_detected';
|
|
5231
5506
|
} | {
|
|
5232
5507
|
message: string;
|
|
5508
|
+
created_at?: string | undefined;
|
|
5233
5509
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5234
5510
|
warning_code: 'august_device_programming_delay';
|
|
5235
5511
|
} | {
|
|
5236
5512
|
message: string;
|
|
5513
|
+
created_at?: string | undefined;
|
|
5237
5514
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5238
5515
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
5239
5516
|
} | {
|
|
5240
5517
|
message: string;
|
|
5518
|
+
created_at?: string | undefined;
|
|
5241
5519
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5242
5520
|
warning_code: 'management_transferred';
|
|
5243
5521
|
} | {
|
|
5244
5522
|
message: string;
|
|
5523
|
+
created_at?: string | undefined;
|
|
5245
5524
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5246
5525
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
5247
5526
|
}>;
|
|
@@ -16229,6 +16508,36 @@ export interface Routes {
|
|
|
16229
16508
|
acs_system_id: string;
|
|
16230
16509
|
acs_access_group_id: string;
|
|
16231
16510
|
event_type: 'acs_access_group.deleted';
|
|
16511
|
+
} | {
|
|
16512
|
+
/** ID of the event. */
|
|
16513
|
+
event_id: string;
|
|
16514
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16515
|
+
workspace_id: string;
|
|
16516
|
+
/** Date and time at which the event was created. */
|
|
16517
|
+
created_at: string;
|
|
16518
|
+
/** Date and time at which the event occurred. */
|
|
16519
|
+
occurred_at: string;
|
|
16520
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16521
|
+
connected_account_id?: string | undefined;
|
|
16522
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16523
|
+
acs_system_id: string;
|
|
16524
|
+
acs_entrance_id: string;
|
|
16525
|
+
event_type: 'acs_entrance.added';
|
|
16526
|
+
} | {
|
|
16527
|
+
/** ID of the event. */
|
|
16528
|
+
event_id: string;
|
|
16529
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16530
|
+
workspace_id: string;
|
|
16531
|
+
/** Date and time at which the event was created. */
|
|
16532
|
+
created_at: string;
|
|
16533
|
+
/** Date and time at which the event occurred. */
|
|
16534
|
+
occurred_at: string;
|
|
16535
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16536
|
+
connected_account_id?: string | undefined;
|
|
16537
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16538
|
+
acs_system_id: string;
|
|
16539
|
+
acs_entrance_id: string;
|
|
16540
|
+
event_type: 'acs_entrance.removed';
|
|
16232
16541
|
} | {
|
|
16233
16542
|
/** ID of the event. */
|
|
16234
16543
|
event_id: string;
|
|
@@ -17020,8 +17329,8 @@ export interface Routes {
|
|
|
17020
17329
|
acs_system_ids?: string[] | undefined;
|
|
17021
17330
|
access_code_id?: string | undefined;
|
|
17022
17331
|
access_code_ids?: string[] | undefined;
|
|
17023
|
-
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated') | undefined;
|
|
17024
|
-
event_types?: Array<'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated'> | undefined;
|
|
17332
|
+
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated') | undefined;
|
|
17333
|
+
event_types?: Array<'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated'> | undefined;
|
|
17025
17334
|
connected_account_id?: string | undefined;
|
|
17026
17335
|
connect_webview_id?: string | undefined;
|
|
17027
17336
|
limit?: number;
|
|
@@ -17457,6 +17766,36 @@ export interface Routes {
|
|
|
17457
17766
|
acs_system_id: string;
|
|
17458
17767
|
acs_access_group_id: string;
|
|
17459
17768
|
event_type: 'acs_access_group.deleted';
|
|
17769
|
+
} | {
|
|
17770
|
+
/** ID of the event. */
|
|
17771
|
+
event_id: string;
|
|
17772
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17773
|
+
workspace_id: string;
|
|
17774
|
+
/** Date and time at which the event was created. */
|
|
17775
|
+
created_at: string;
|
|
17776
|
+
/** Date and time at which the event occurred. */
|
|
17777
|
+
occurred_at: string;
|
|
17778
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
17779
|
+
connected_account_id?: string | undefined;
|
|
17780
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
17781
|
+
acs_system_id: string;
|
|
17782
|
+
acs_entrance_id: string;
|
|
17783
|
+
event_type: 'acs_entrance.added';
|
|
17784
|
+
} | {
|
|
17785
|
+
/** ID of the event. */
|
|
17786
|
+
event_id: string;
|
|
17787
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17788
|
+
workspace_id: string;
|
|
17789
|
+
/** Date and time at which the event was created. */
|
|
17790
|
+
created_at: string;
|
|
17791
|
+
/** Date and time at which the event occurred. */
|
|
17792
|
+
occurred_at: string;
|
|
17793
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
17794
|
+
connected_account_id?: string | undefined;
|
|
17795
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
17796
|
+
acs_system_id: string;
|
|
17797
|
+
acs_entrance_id: string;
|
|
17798
|
+
event_type: 'acs_entrance.removed';
|
|
17460
17799
|
} | {
|
|
17461
17800
|
/** ID of the event. */
|
|
17462
17801
|
event_id: string;
|