@seamapi/types 1.363.0 → 1.364.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +312 -38
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1410 -102
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1486 -34
- package/lib/seam/connect/models/access-codes/managed-access-code.js +135 -11
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +306 -21
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +240 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +594 -45
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +152 -12
- package/src/lib/seam/connect/openapi.ts +252 -32
- package/src/lib/seam/connect/route-types.ts +648 -54
|
@@ -1097,117 +1097,171 @@ export interface Routes {
|
|
|
1097
1097
|
| {
|
|
1098
1098
|
message: string
|
|
1099
1099
|
is_access_code_error: true
|
|
1100
|
+
created_at?: string | undefined
|
|
1100
1101
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1101
1102
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
1102
1103
|
}
|
|
1103
1104
|
| {
|
|
1104
1105
|
message: string
|
|
1105
1106
|
is_access_code_error: true
|
|
1107
|
+
created_at?: string | undefined
|
|
1106
1108
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1107
1109
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
1108
1110
|
}
|
|
1109
1111
|
| {
|
|
1110
1112
|
message: string
|
|
1111
1113
|
is_access_code_error: true
|
|
1114
|
+
created_at?: string | undefined
|
|
1115
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1116
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
1117
|
+
}
|
|
1118
|
+
| {
|
|
1119
|
+
message: string
|
|
1120
|
+
is_access_code_error: true
|
|
1121
|
+
created_at?: string | undefined
|
|
1112
1122
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1113
1123
|
error_code: 'failed_to_set_on_device'
|
|
1114
1124
|
}
|
|
1115
1125
|
| {
|
|
1116
1126
|
message: string
|
|
1117
1127
|
is_access_code_error: true
|
|
1128
|
+
created_at?: string | undefined
|
|
1118
1129
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1119
1130
|
error_code: 'failed_to_remove_from_device'
|
|
1120
1131
|
}
|
|
1121
1132
|
| {
|
|
1122
1133
|
message: string
|
|
1123
1134
|
is_access_code_error: true
|
|
1135
|
+
created_at?: string | undefined
|
|
1124
1136
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1125
1137
|
error_code: 'duplicate_code_on_device'
|
|
1126
1138
|
}
|
|
1127
1139
|
| {
|
|
1128
1140
|
message: string
|
|
1129
1141
|
is_access_code_error: true
|
|
1142
|
+
created_at?: string | undefined
|
|
1130
1143
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1131
1144
|
error_code: 'duplicate_code_attempt_prevented'
|
|
1132
1145
|
}
|
|
1133
1146
|
| {
|
|
1134
1147
|
message: string
|
|
1135
1148
|
is_access_code_error: true
|
|
1149
|
+
created_at?: string | undefined
|
|
1136
1150
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1137
1151
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
1138
1152
|
}
|
|
1139
1153
|
| {
|
|
1140
1154
|
message: string
|
|
1141
1155
|
is_access_code_error: true
|
|
1156
|
+
created_at?: string | undefined
|
|
1142
1157
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1143
1158
|
error_code: 'igloohome_bridge_offline'
|
|
1144
1159
|
}
|
|
1145
1160
|
| {
|
|
1146
1161
|
message: string
|
|
1147
1162
|
is_access_code_error: true
|
|
1163
|
+
created_at?: string | undefined
|
|
1148
1164
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1149
1165
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
1150
1166
|
}
|
|
1151
1167
|
| {
|
|
1152
1168
|
message: string
|
|
1153
1169
|
is_access_code_error: true
|
|
1170
|
+
created_at?: string | undefined
|
|
1154
1171
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1155
1172
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
1156
1173
|
}
|
|
1157
1174
|
| {
|
|
1158
1175
|
message: string
|
|
1159
1176
|
is_access_code_error: true
|
|
1177
|
+
created_at?: string | undefined
|
|
1160
1178
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1161
1179
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
1162
1180
|
}
|
|
1163
1181
|
| {
|
|
1164
1182
|
message: string
|
|
1165
1183
|
is_access_code_error: true
|
|
1184
|
+
created_at?: string | undefined
|
|
1166
1185
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1167
1186
|
error_code: 'code_modified_external_to_seam'
|
|
1168
1187
|
}
|
|
1169
1188
|
| {
|
|
1170
1189
|
message: string
|
|
1171
1190
|
is_access_code_error: true
|
|
1191
|
+
created_at?: string | undefined
|
|
1172
1192
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1173
1193
|
error_code: 'august_lock_invalid_code_length'
|
|
1174
1194
|
}
|
|
1175
1195
|
| {
|
|
1176
1196
|
message: string
|
|
1177
1197
|
is_access_code_error: true
|
|
1198
|
+
created_at?: string | undefined
|
|
1178
1199
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1179
1200
|
error_code: 'august_device_programming_delay'
|
|
1180
1201
|
}
|
|
1181
1202
|
| {
|
|
1182
1203
|
message: string
|
|
1183
1204
|
is_access_code_error: true
|
|
1205
|
+
created_at?: string | undefined
|
|
1184
1206
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1185
1207
|
error_code: 'august_device_slots_full'
|
|
1186
1208
|
}
|
|
1187
1209
|
| {
|
|
1188
1210
|
message: string
|
|
1189
1211
|
is_access_code_error: true
|
|
1212
|
+
created_at?: string | undefined
|
|
1190
1213
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1191
1214
|
error_code: 'august_lock_missing_keypad'
|
|
1192
1215
|
}
|
|
1193
1216
|
| {
|
|
1194
1217
|
message: string
|
|
1195
1218
|
is_access_code_error: true
|
|
1219
|
+
created_at?: string | undefined
|
|
1220
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1221
|
+
error_code: 'august_lock_temporarily_offline'
|
|
1222
|
+
}
|
|
1223
|
+
| {
|
|
1224
|
+
message: string
|
|
1225
|
+
is_access_code_error: true
|
|
1226
|
+
created_at?: string | undefined
|
|
1196
1227
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1197
|
-
error_code: '
|
|
1228
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
1198
1229
|
}
|
|
1199
1230
|
| {
|
|
1200
1231
|
message: string
|
|
1201
1232
|
is_access_code_error: true
|
|
1233
|
+
created_at?: string | undefined
|
|
1202
1234
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1203
1235
|
error_code: 'hubitat_device_programming_delay'
|
|
1204
1236
|
}
|
|
1205
1237
|
| {
|
|
1206
1238
|
message: string
|
|
1207
1239
|
is_access_code_error: true
|
|
1240
|
+
created_at?: string | undefined
|
|
1208
1241
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1209
1242
|
error_code: 'hubitat_no_free_positions_available'
|
|
1210
1243
|
}
|
|
1244
|
+
| {
|
|
1245
|
+
message: string
|
|
1246
|
+
is_access_code_error: true
|
|
1247
|
+
created_at?: string | undefined
|
|
1248
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1249
|
+
error_code: 'wyze_duplicate_code_name'
|
|
1250
|
+
}
|
|
1251
|
+
| {
|
|
1252
|
+
message: string
|
|
1253
|
+
is_access_code_error: true
|
|
1254
|
+
created_at?: string | undefined
|
|
1255
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1256
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
1257
|
+
}
|
|
1258
|
+
| {
|
|
1259
|
+
message: string
|
|
1260
|
+
is_access_code_error: true
|
|
1261
|
+
created_at?: string | undefined
|
|
1262
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1263
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
1264
|
+
}
|
|
1211
1265
|
| {
|
|
1212
1266
|
message: string
|
|
1213
1267
|
is_device_error: false
|
|
@@ -1314,61 +1368,73 @@ export interface Routes {
|
|
|
1314
1368
|
warnings: Array<
|
|
1315
1369
|
| {
|
|
1316
1370
|
message: string
|
|
1371
|
+
created_at?: string | undefined
|
|
1317
1372
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1318
1373
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
1319
1374
|
}
|
|
1320
1375
|
| {
|
|
1321
1376
|
message: string
|
|
1377
|
+
created_at?: string | undefined
|
|
1322
1378
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1323
1379
|
warning_code: 'schlage_detected_duplicate'
|
|
1324
1380
|
}
|
|
1325
1381
|
| {
|
|
1326
1382
|
message: string
|
|
1383
|
+
created_at?: string | undefined
|
|
1327
1384
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1328
1385
|
warning_code: 'schlage_creation_outage'
|
|
1329
1386
|
}
|
|
1330
1387
|
| {
|
|
1331
1388
|
message: string
|
|
1332
|
-
|
|
1333
|
-
warning_code: 'salto_office_mode'
|
|
1334
|
-
}
|
|
1335
|
-
| {
|
|
1336
|
-
message: string
|
|
1389
|
+
created_at?: string | undefined
|
|
1337
1390
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1338
1391
|
warning_code: 'code_modified_external_to_seam'
|
|
1339
1392
|
}
|
|
1340
1393
|
| {
|
|
1341
1394
|
message: string
|
|
1395
|
+
created_at?: string | undefined
|
|
1342
1396
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1343
1397
|
warning_code: 'delay_in_setting_on_device'
|
|
1344
1398
|
}
|
|
1345
1399
|
| {
|
|
1346
1400
|
message: string
|
|
1401
|
+
created_at?: string | undefined
|
|
1347
1402
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1348
1403
|
warning_code: 'delay_in_removing_from_device'
|
|
1349
1404
|
}
|
|
1350
1405
|
| {
|
|
1351
1406
|
message: string
|
|
1407
|
+
created_at?: string | undefined
|
|
1352
1408
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1353
1409
|
warning_code: 'third_party_integration_detected'
|
|
1354
1410
|
}
|
|
1355
1411
|
| {
|
|
1356
1412
|
message: string
|
|
1413
|
+
created_at?: string | undefined
|
|
1357
1414
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1358
1415
|
warning_code: 'august_device_programming_delay'
|
|
1359
1416
|
}
|
|
1360
1417
|
| {
|
|
1361
1418
|
message: string
|
|
1419
|
+
created_at?: string | undefined
|
|
1420
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1421
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
1422
|
+
}
|
|
1423
|
+
| {
|
|
1424
|
+
message: string
|
|
1425
|
+
created_at?: string | undefined
|
|
1362
1426
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1363
1427
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
1364
1428
|
}
|
|
1365
1429
|
| {
|
|
1366
1430
|
message: string
|
|
1431
|
+
created_at?: string | undefined
|
|
1367
1432
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1368
1433
|
warning_code: 'management_transferred'
|
|
1369
1434
|
}
|
|
1370
1435
|
| {
|
|
1371
1436
|
message: string
|
|
1437
|
+
created_at?: string | undefined
|
|
1372
1438
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1373
1439
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
1374
1440
|
}
|
|
@@ -1447,117 +1513,171 @@ export interface Routes {
|
|
|
1447
1513
|
| {
|
|
1448
1514
|
message: string
|
|
1449
1515
|
is_access_code_error: true
|
|
1516
|
+
created_at?: string | undefined
|
|
1450
1517
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1451
1518
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
1452
1519
|
}
|
|
1453
1520
|
| {
|
|
1454
1521
|
message: string
|
|
1455
1522
|
is_access_code_error: true
|
|
1523
|
+
created_at?: string | undefined
|
|
1456
1524
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1457
1525
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
1458
1526
|
}
|
|
1459
1527
|
| {
|
|
1460
1528
|
message: string
|
|
1461
1529
|
is_access_code_error: true
|
|
1530
|
+
created_at?: string | undefined
|
|
1531
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1532
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
1533
|
+
}
|
|
1534
|
+
| {
|
|
1535
|
+
message: string
|
|
1536
|
+
is_access_code_error: true
|
|
1537
|
+
created_at?: string | undefined
|
|
1462
1538
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1463
1539
|
error_code: 'failed_to_set_on_device'
|
|
1464
1540
|
}
|
|
1465
1541
|
| {
|
|
1466
1542
|
message: string
|
|
1467
1543
|
is_access_code_error: true
|
|
1544
|
+
created_at?: string | undefined
|
|
1468
1545
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1469
1546
|
error_code: 'failed_to_remove_from_device'
|
|
1470
1547
|
}
|
|
1471
1548
|
| {
|
|
1472
1549
|
message: string
|
|
1473
1550
|
is_access_code_error: true
|
|
1551
|
+
created_at?: string | undefined
|
|
1474
1552
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1475
1553
|
error_code: 'duplicate_code_on_device'
|
|
1476
1554
|
}
|
|
1477
1555
|
| {
|
|
1478
1556
|
message: string
|
|
1479
1557
|
is_access_code_error: true
|
|
1558
|
+
created_at?: string | undefined
|
|
1480
1559
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1481
1560
|
error_code: 'duplicate_code_attempt_prevented'
|
|
1482
1561
|
}
|
|
1483
1562
|
| {
|
|
1484
1563
|
message: string
|
|
1485
1564
|
is_access_code_error: true
|
|
1565
|
+
created_at?: string | undefined
|
|
1486
1566
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1487
1567
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
1488
1568
|
}
|
|
1489
1569
|
| {
|
|
1490
1570
|
message: string
|
|
1491
1571
|
is_access_code_error: true
|
|
1572
|
+
created_at?: string | undefined
|
|
1492
1573
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1493
1574
|
error_code: 'igloohome_bridge_offline'
|
|
1494
1575
|
}
|
|
1495
1576
|
| {
|
|
1496
1577
|
message: string
|
|
1497
1578
|
is_access_code_error: true
|
|
1579
|
+
created_at?: string | undefined
|
|
1498
1580
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1499
1581
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
1500
1582
|
}
|
|
1501
1583
|
| {
|
|
1502
1584
|
message: string
|
|
1503
1585
|
is_access_code_error: true
|
|
1586
|
+
created_at?: string | undefined
|
|
1504
1587
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1505
1588
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
1506
1589
|
}
|
|
1507
1590
|
| {
|
|
1508
1591
|
message: string
|
|
1509
1592
|
is_access_code_error: true
|
|
1593
|
+
created_at?: string | undefined
|
|
1510
1594
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1511
1595
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
1512
1596
|
}
|
|
1513
1597
|
| {
|
|
1514
1598
|
message: string
|
|
1515
1599
|
is_access_code_error: true
|
|
1600
|
+
created_at?: string | undefined
|
|
1516
1601
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1517
1602
|
error_code: 'code_modified_external_to_seam'
|
|
1518
1603
|
}
|
|
1519
1604
|
| {
|
|
1520
1605
|
message: string
|
|
1521
1606
|
is_access_code_error: true
|
|
1607
|
+
created_at?: string | undefined
|
|
1522
1608
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1523
1609
|
error_code: 'august_lock_invalid_code_length'
|
|
1524
1610
|
}
|
|
1525
1611
|
| {
|
|
1526
1612
|
message: string
|
|
1527
1613
|
is_access_code_error: true
|
|
1614
|
+
created_at?: string | undefined
|
|
1528
1615
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1529
1616
|
error_code: 'august_device_programming_delay'
|
|
1530
1617
|
}
|
|
1531
1618
|
| {
|
|
1532
1619
|
message: string
|
|
1533
1620
|
is_access_code_error: true
|
|
1621
|
+
created_at?: string | undefined
|
|
1534
1622
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1535
1623
|
error_code: 'august_device_slots_full'
|
|
1536
1624
|
}
|
|
1537
1625
|
| {
|
|
1538
1626
|
message: string
|
|
1539
1627
|
is_access_code_error: true
|
|
1628
|
+
created_at?: string | undefined
|
|
1540
1629
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1541
1630
|
error_code: 'august_lock_missing_keypad'
|
|
1542
1631
|
}
|
|
1543
1632
|
| {
|
|
1544
1633
|
message: string
|
|
1545
1634
|
is_access_code_error: true
|
|
1635
|
+
created_at?: string | undefined
|
|
1546
1636
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1547
|
-
error_code: '
|
|
1637
|
+
error_code: 'august_lock_temporarily_offline'
|
|
1548
1638
|
}
|
|
1549
1639
|
| {
|
|
1550
1640
|
message: string
|
|
1551
1641
|
is_access_code_error: true
|
|
1642
|
+
created_at?: string | undefined
|
|
1643
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1644
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
1645
|
+
}
|
|
1646
|
+
| {
|
|
1647
|
+
message: string
|
|
1648
|
+
is_access_code_error: true
|
|
1649
|
+
created_at?: string | undefined
|
|
1552
1650
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1553
1651
|
error_code: 'hubitat_device_programming_delay'
|
|
1554
1652
|
}
|
|
1555
1653
|
| {
|
|
1556
1654
|
message: string
|
|
1557
1655
|
is_access_code_error: true
|
|
1656
|
+
created_at?: string | undefined
|
|
1558
1657
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1559
1658
|
error_code: 'hubitat_no_free_positions_available'
|
|
1560
1659
|
}
|
|
1660
|
+
| {
|
|
1661
|
+
message: string
|
|
1662
|
+
is_access_code_error: true
|
|
1663
|
+
created_at?: string | undefined
|
|
1664
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1665
|
+
error_code: 'wyze_duplicate_code_name'
|
|
1666
|
+
}
|
|
1667
|
+
| {
|
|
1668
|
+
message: string
|
|
1669
|
+
is_access_code_error: true
|
|
1670
|
+
created_at?: string | undefined
|
|
1671
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1672
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
1673
|
+
}
|
|
1674
|
+
| {
|
|
1675
|
+
message: string
|
|
1676
|
+
is_access_code_error: true
|
|
1677
|
+
created_at?: string | undefined
|
|
1678
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1679
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
1680
|
+
}
|
|
1561
1681
|
| {
|
|
1562
1682
|
message: string
|
|
1563
1683
|
is_device_error: false
|
|
@@ -1664,61 +1784,73 @@ export interface Routes {
|
|
|
1664
1784
|
warnings: Array<
|
|
1665
1785
|
| {
|
|
1666
1786
|
message: string
|
|
1787
|
+
created_at?: string | undefined
|
|
1667
1788
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1668
1789
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
1669
1790
|
}
|
|
1670
1791
|
| {
|
|
1671
1792
|
message: string
|
|
1793
|
+
created_at?: string | undefined
|
|
1672
1794
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1673
1795
|
warning_code: 'schlage_detected_duplicate'
|
|
1674
1796
|
}
|
|
1675
1797
|
| {
|
|
1676
1798
|
message: string
|
|
1799
|
+
created_at?: string | undefined
|
|
1677
1800
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1678
1801
|
warning_code: 'schlage_creation_outage'
|
|
1679
1802
|
}
|
|
1680
1803
|
| {
|
|
1681
1804
|
message: string
|
|
1682
|
-
|
|
1683
|
-
warning_code: 'salto_office_mode'
|
|
1684
|
-
}
|
|
1685
|
-
| {
|
|
1686
|
-
message: string
|
|
1805
|
+
created_at?: string | undefined
|
|
1687
1806
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1688
1807
|
warning_code: 'code_modified_external_to_seam'
|
|
1689
1808
|
}
|
|
1690
1809
|
| {
|
|
1691
1810
|
message: string
|
|
1811
|
+
created_at?: string | undefined
|
|
1692
1812
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1693
1813
|
warning_code: 'delay_in_setting_on_device'
|
|
1694
1814
|
}
|
|
1695
1815
|
| {
|
|
1696
1816
|
message: string
|
|
1817
|
+
created_at?: string | undefined
|
|
1697
1818
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1698
1819
|
warning_code: 'delay_in_removing_from_device'
|
|
1699
1820
|
}
|
|
1700
1821
|
| {
|
|
1701
1822
|
message: string
|
|
1823
|
+
created_at?: string | undefined
|
|
1702
1824
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1703
1825
|
warning_code: 'third_party_integration_detected'
|
|
1704
1826
|
}
|
|
1705
1827
|
| {
|
|
1706
1828
|
message: string
|
|
1829
|
+
created_at?: string | undefined
|
|
1707
1830
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1708
1831
|
warning_code: 'august_device_programming_delay'
|
|
1709
1832
|
}
|
|
1710
1833
|
| {
|
|
1711
1834
|
message: string
|
|
1835
|
+
created_at?: string | undefined
|
|
1836
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1837
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
1838
|
+
}
|
|
1839
|
+
| {
|
|
1840
|
+
message: string
|
|
1841
|
+
created_at?: string | undefined
|
|
1712
1842
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1713
1843
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
1714
1844
|
}
|
|
1715
1845
|
| {
|
|
1716
1846
|
message: string
|
|
1847
|
+
created_at?: string | undefined
|
|
1717
1848
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1718
1849
|
warning_code: 'management_transferred'
|
|
1719
1850
|
}
|
|
1720
1851
|
| {
|
|
1721
1852
|
message: string
|
|
1853
|
+
created_at?: string | undefined
|
|
1722
1854
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1723
1855
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
1724
1856
|
}
|
|
@@ -2862,117 +2994,171 @@ export interface Routes {
|
|
|
2862
2994
|
| {
|
|
2863
2995
|
message: string
|
|
2864
2996
|
is_access_code_error: true
|
|
2997
|
+
created_at?: string | undefined
|
|
2865
2998
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2866
2999
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
2867
3000
|
}
|
|
2868
3001
|
| {
|
|
2869
3002
|
message: string
|
|
2870
3003
|
is_access_code_error: true
|
|
3004
|
+
created_at?: string | undefined
|
|
2871
3005
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2872
3006
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
2873
3007
|
}
|
|
2874
3008
|
| {
|
|
2875
3009
|
message: string
|
|
2876
3010
|
is_access_code_error: true
|
|
3011
|
+
created_at?: string | undefined
|
|
3012
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3013
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
3014
|
+
}
|
|
3015
|
+
| {
|
|
3016
|
+
message: string
|
|
3017
|
+
is_access_code_error: true
|
|
3018
|
+
created_at?: string | undefined
|
|
2877
3019
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2878
3020
|
error_code: 'failed_to_set_on_device'
|
|
2879
3021
|
}
|
|
2880
3022
|
| {
|
|
2881
3023
|
message: string
|
|
2882
3024
|
is_access_code_error: true
|
|
3025
|
+
created_at?: string | undefined
|
|
2883
3026
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2884
3027
|
error_code: 'failed_to_remove_from_device'
|
|
2885
3028
|
}
|
|
2886
3029
|
| {
|
|
2887
3030
|
message: string
|
|
2888
3031
|
is_access_code_error: true
|
|
3032
|
+
created_at?: string | undefined
|
|
2889
3033
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2890
3034
|
error_code: 'duplicate_code_on_device'
|
|
2891
3035
|
}
|
|
2892
3036
|
| {
|
|
2893
3037
|
message: string
|
|
2894
3038
|
is_access_code_error: true
|
|
3039
|
+
created_at?: string | undefined
|
|
2895
3040
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2896
3041
|
error_code: 'duplicate_code_attempt_prevented'
|
|
2897
3042
|
}
|
|
2898
3043
|
| {
|
|
2899
3044
|
message: string
|
|
2900
3045
|
is_access_code_error: true
|
|
3046
|
+
created_at?: string | undefined
|
|
2901
3047
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2902
3048
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
2903
3049
|
}
|
|
2904
3050
|
| {
|
|
2905
3051
|
message: string
|
|
2906
3052
|
is_access_code_error: true
|
|
3053
|
+
created_at?: string | undefined
|
|
2907
3054
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2908
3055
|
error_code: 'igloohome_bridge_offline'
|
|
2909
3056
|
}
|
|
2910
3057
|
| {
|
|
2911
3058
|
message: string
|
|
2912
3059
|
is_access_code_error: true
|
|
3060
|
+
created_at?: string | undefined
|
|
2913
3061
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2914
3062
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
2915
3063
|
}
|
|
2916
3064
|
| {
|
|
2917
3065
|
message: string
|
|
2918
3066
|
is_access_code_error: true
|
|
3067
|
+
created_at?: string | undefined
|
|
2919
3068
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2920
3069
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
2921
3070
|
}
|
|
2922
3071
|
| {
|
|
2923
3072
|
message: string
|
|
2924
3073
|
is_access_code_error: true
|
|
3074
|
+
created_at?: string | undefined
|
|
2925
3075
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2926
3076
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
2927
3077
|
}
|
|
2928
3078
|
| {
|
|
2929
3079
|
message: string
|
|
2930
3080
|
is_access_code_error: true
|
|
3081
|
+
created_at?: string | undefined
|
|
2931
3082
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2932
3083
|
error_code: 'code_modified_external_to_seam'
|
|
2933
3084
|
}
|
|
2934
3085
|
| {
|
|
2935
3086
|
message: string
|
|
2936
3087
|
is_access_code_error: true
|
|
3088
|
+
created_at?: string | undefined
|
|
2937
3089
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2938
3090
|
error_code: 'august_lock_invalid_code_length'
|
|
2939
3091
|
}
|
|
2940
3092
|
| {
|
|
2941
3093
|
message: string
|
|
2942
3094
|
is_access_code_error: true
|
|
3095
|
+
created_at?: string | undefined
|
|
2943
3096
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2944
3097
|
error_code: 'august_device_programming_delay'
|
|
2945
3098
|
}
|
|
2946
3099
|
| {
|
|
2947
3100
|
message: string
|
|
2948
3101
|
is_access_code_error: true
|
|
3102
|
+
created_at?: string | undefined
|
|
2949
3103
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2950
3104
|
error_code: 'august_device_slots_full'
|
|
2951
3105
|
}
|
|
2952
3106
|
| {
|
|
2953
3107
|
message: string
|
|
2954
3108
|
is_access_code_error: true
|
|
3109
|
+
created_at?: string | undefined
|
|
2955
3110
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2956
3111
|
error_code: 'august_lock_missing_keypad'
|
|
2957
3112
|
}
|
|
2958
3113
|
| {
|
|
2959
3114
|
message: string
|
|
2960
3115
|
is_access_code_error: true
|
|
3116
|
+
created_at?: string | undefined
|
|
2961
3117
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2962
|
-
error_code: '
|
|
3118
|
+
error_code: 'august_lock_temporarily_offline'
|
|
2963
3119
|
}
|
|
2964
3120
|
| {
|
|
2965
3121
|
message: string
|
|
2966
3122
|
is_access_code_error: true
|
|
3123
|
+
created_at?: string | undefined
|
|
3124
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3125
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
3126
|
+
}
|
|
3127
|
+
| {
|
|
3128
|
+
message: string
|
|
3129
|
+
is_access_code_error: true
|
|
3130
|
+
created_at?: string | undefined
|
|
2967
3131
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2968
3132
|
error_code: 'hubitat_device_programming_delay'
|
|
2969
3133
|
}
|
|
2970
3134
|
| {
|
|
2971
3135
|
message: string
|
|
2972
3136
|
is_access_code_error: true
|
|
3137
|
+
created_at?: string | undefined
|
|
2973
3138
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2974
3139
|
error_code: 'hubitat_no_free_positions_available'
|
|
2975
3140
|
}
|
|
3141
|
+
| {
|
|
3142
|
+
message: string
|
|
3143
|
+
is_access_code_error: true
|
|
3144
|
+
created_at?: string | undefined
|
|
3145
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3146
|
+
error_code: 'wyze_duplicate_code_name'
|
|
3147
|
+
}
|
|
3148
|
+
| {
|
|
3149
|
+
message: string
|
|
3150
|
+
is_access_code_error: true
|
|
3151
|
+
created_at?: string | undefined
|
|
3152
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3153
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
3154
|
+
}
|
|
3155
|
+
| {
|
|
3156
|
+
message: string
|
|
3157
|
+
is_access_code_error: true
|
|
3158
|
+
created_at?: string | undefined
|
|
3159
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3160
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
3161
|
+
}
|
|
2976
3162
|
| {
|
|
2977
3163
|
message: string
|
|
2978
3164
|
is_device_error: false
|
|
@@ -3079,61 +3265,73 @@ export interface Routes {
|
|
|
3079
3265
|
warnings: Array<
|
|
3080
3266
|
| {
|
|
3081
3267
|
message: string
|
|
3268
|
+
created_at?: string | undefined
|
|
3082
3269
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3083
3270
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3084
3271
|
}
|
|
3085
3272
|
| {
|
|
3086
3273
|
message: string
|
|
3274
|
+
created_at?: string | undefined
|
|
3087
3275
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3088
3276
|
warning_code: 'schlage_detected_duplicate'
|
|
3089
3277
|
}
|
|
3090
3278
|
| {
|
|
3091
3279
|
message: string
|
|
3280
|
+
created_at?: string | undefined
|
|
3092
3281
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3093
3282
|
warning_code: 'schlage_creation_outage'
|
|
3094
3283
|
}
|
|
3095
3284
|
| {
|
|
3096
3285
|
message: string
|
|
3097
|
-
|
|
3098
|
-
warning_code: 'salto_office_mode'
|
|
3099
|
-
}
|
|
3100
|
-
| {
|
|
3101
|
-
message: string
|
|
3286
|
+
created_at?: string | undefined
|
|
3102
3287
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3103
3288
|
warning_code: 'code_modified_external_to_seam'
|
|
3104
3289
|
}
|
|
3105
3290
|
| {
|
|
3106
3291
|
message: string
|
|
3292
|
+
created_at?: string | undefined
|
|
3107
3293
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3108
3294
|
warning_code: 'delay_in_setting_on_device'
|
|
3109
3295
|
}
|
|
3110
3296
|
| {
|
|
3111
3297
|
message: string
|
|
3298
|
+
created_at?: string | undefined
|
|
3112
3299
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3113
3300
|
warning_code: 'delay_in_removing_from_device'
|
|
3114
3301
|
}
|
|
3115
3302
|
| {
|
|
3116
3303
|
message: string
|
|
3304
|
+
created_at?: string | undefined
|
|
3117
3305
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3118
3306
|
warning_code: 'third_party_integration_detected'
|
|
3119
3307
|
}
|
|
3120
3308
|
| {
|
|
3121
3309
|
message: string
|
|
3310
|
+
created_at?: string | undefined
|
|
3122
3311
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3123
3312
|
warning_code: 'august_device_programming_delay'
|
|
3124
3313
|
}
|
|
3125
3314
|
| {
|
|
3126
3315
|
message: string
|
|
3316
|
+
created_at?: string | undefined
|
|
3317
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3318
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
3319
|
+
}
|
|
3320
|
+
| {
|
|
3321
|
+
message: string
|
|
3322
|
+
created_at?: string | undefined
|
|
3127
3323
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3128
3324
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3129
3325
|
}
|
|
3130
3326
|
| {
|
|
3131
3327
|
message: string
|
|
3328
|
+
created_at?: string | undefined
|
|
3132
3329
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3133
3330
|
warning_code: 'management_transferred'
|
|
3134
3331
|
}
|
|
3135
3332
|
| {
|
|
3136
3333
|
message: string
|
|
3334
|
+
created_at?: string | undefined
|
|
3137
3335
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3138
3336
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
3139
3337
|
}
|
|
@@ -3199,117 +3397,171 @@ export interface Routes {
|
|
|
3199
3397
|
| {
|
|
3200
3398
|
message: string
|
|
3201
3399
|
is_access_code_error: true
|
|
3400
|
+
created_at?: string | undefined
|
|
3202
3401
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3203
3402
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
3204
3403
|
}
|
|
3205
3404
|
| {
|
|
3206
3405
|
message: string
|
|
3207
3406
|
is_access_code_error: true
|
|
3407
|
+
created_at?: string | undefined
|
|
3208
3408
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3209
3409
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3210
3410
|
}
|
|
3211
3411
|
| {
|
|
3212
3412
|
message: string
|
|
3213
3413
|
is_access_code_error: true
|
|
3414
|
+
created_at?: string | undefined
|
|
3415
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3416
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
3417
|
+
}
|
|
3418
|
+
| {
|
|
3419
|
+
message: string
|
|
3420
|
+
is_access_code_error: true
|
|
3421
|
+
created_at?: string | undefined
|
|
3214
3422
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3215
3423
|
error_code: 'failed_to_set_on_device'
|
|
3216
3424
|
}
|
|
3217
3425
|
| {
|
|
3218
3426
|
message: string
|
|
3219
3427
|
is_access_code_error: true
|
|
3428
|
+
created_at?: string | undefined
|
|
3220
3429
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3221
3430
|
error_code: 'failed_to_remove_from_device'
|
|
3222
3431
|
}
|
|
3223
3432
|
| {
|
|
3224
3433
|
message: string
|
|
3225
3434
|
is_access_code_error: true
|
|
3435
|
+
created_at?: string | undefined
|
|
3226
3436
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3227
3437
|
error_code: 'duplicate_code_on_device'
|
|
3228
3438
|
}
|
|
3229
3439
|
| {
|
|
3230
3440
|
message: string
|
|
3231
3441
|
is_access_code_error: true
|
|
3442
|
+
created_at?: string | undefined
|
|
3232
3443
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3233
3444
|
error_code: 'duplicate_code_attempt_prevented'
|
|
3234
3445
|
}
|
|
3235
3446
|
| {
|
|
3236
3447
|
message: string
|
|
3237
3448
|
is_access_code_error: true
|
|
3449
|
+
created_at?: string | undefined
|
|
3238
3450
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3239
3451
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
3240
3452
|
}
|
|
3241
3453
|
| {
|
|
3242
3454
|
message: string
|
|
3243
3455
|
is_access_code_error: true
|
|
3456
|
+
created_at?: string | undefined
|
|
3244
3457
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3245
3458
|
error_code: 'igloohome_bridge_offline'
|
|
3246
3459
|
}
|
|
3247
3460
|
| {
|
|
3248
3461
|
message: string
|
|
3249
3462
|
is_access_code_error: true
|
|
3463
|
+
created_at?: string | undefined
|
|
3250
3464
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3251
3465
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3252
3466
|
}
|
|
3253
3467
|
| {
|
|
3254
3468
|
message: string
|
|
3255
3469
|
is_access_code_error: true
|
|
3470
|
+
created_at?: string | undefined
|
|
3256
3471
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3257
3472
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
3258
3473
|
}
|
|
3259
3474
|
| {
|
|
3260
3475
|
message: string
|
|
3261
3476
|
is_access_code_error: true
|
|
3477
|
+
created_at?: string | undefined
|
|
3262
3478
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3263
3479
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
3264
3480
|
}
|
|
3265
3481
|
| {
|
|
3266
3482
|
message: string
|
|
3267
3483
|
is_access_code_error: true
|
|
3484
|
+
created_at?: string | undefined
|
|
3268
3485
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3269
3486
|
error_code: 'code_modified_external_to_seam'
|
|
3270
3487
|
}
|
|
3271
3488
|
| {
|
|
3272
3489
|
message: string
|
|
3273
3490
|
is_access_code_error: true
|
|
3491
|
+
created_at?: string | undefined
|
|
3274
3492
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3275
3493
|
error_code: 'august_lock_invalid_code_length'
|
|
3276
3494
|
}
|
|
3277
3495
|
| {
|
|
3278
3496
|
message: string
|
|
3279
3497
|
is_access_code_error: true
|
|
3498
|
+
created_at?: string | undefined
|
|
3280
3499
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3281
3500
|
error_code: 'august_device_programming_delay'
|
|
3282
3501
|
}
|
|
3283
3502
|
| {
|
|
3284
3503
|
message: string
|
|
3285
3504
|
is_access_code_error: true
|
|
3505
|
+
created_at?: string | undefined
|
|
3286
3506
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3287
3507
|
error_code: 'august_device_slots_full'
|
|
3288
3508
|
}
|
|
3289
3509
|
| {
|
|
3290
3510
|
message: string
|
|
3291
3511
|
is_access_code_error: true
|
|
3512
|
+
created_at?: string | undefined
|
|
3292
3513
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3293
3514
|
error_code: 'august_lock_missing_keypad'
|
|
3294
3515
|
}
|
|
3295
3516
|
| {
|
|
3296
3517
|
message: string
|
|
3297
3518
|
is_access_code_error: true
|
|
3519
|
+
created_at?: string | undefined
|
|
3298
3520
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3299
|
-
error_code: '
|
|
3521
|
+
error_code: 'august_lock_temporarily_offline'
|
|
3300
3522
|
}
|
|
3301
3523
|
| {
|
|
3302
3524
|
message: string
|
|
3303
3525
|
is_access_code_error: true
|
|
3526
|
+
created_at?: string | undefined
|
|
3527
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3528
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
3529
|
+
}
|
|
3530
|
+
| {
|
|
3531
|
+
message: string
|
|
3532
|
+
is_access_code_error: true
|
|
3533
|
+
created_at?: string | undefined
|
|
3304
3534
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3305
3535
|
error_code: 'hubitat_device_programming_delay'
|
|
3306
3536
|
}
|
|
3307
3537
|
| {
|
|
3308
3538
|
message: string
|
|
3309
3539
|
is_access_code_error: true
|
|
3540
|
+
created_at?: string | undefined
|
|
3310
3541
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3311
3542
|
error_code: 'hubitat_no_free_positions_available'
|
|
3312
3543
|
}
|
|
3544
|
+
| {
|
|
3545
|
+
message: string
|
|
3546
|
+
is_access_code_error: true
|
|
3547
|
+
created_at?: string | undefined
|
|
3548
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3549
|
+
error_code: 'wyze_duplicate_code_name'
|
|
3550
|
+
}
|
|
3551
|
+
| {
|
|
3552
|
+
message: string
|
|
3553
|
+
is_access_code_error: true
|
|
3554
|
+
created_at?: string | undefined
|
|
3555
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3556
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
3557
|
+
}
|
|
3558
|
+
| {
|
|
3559
|
+
message: string
|
|
3560
|
+
is_access_code_error: true
|
|
3561
|
+
created_at?: string | undefined
|
|
3562
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3563
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
3564
|
+
}
|
|
3313
3565
|
| {
|
|
3314
3566
|
message: string
|
|
3315
3567
|
is_device_error: false
|
|
@@ -3416,61 +3668,73 @@ export interface Routes {
|
|
|
3416
3668
|
warnings: Array<
|
|
3417
3669
|
| {
|
|
3418
3670
|
message: string
|
|
3671
|
+
created_at?: string | undefined
|
|
3419
3672
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3420
3673
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3421
3674
|
}
|
|
3422
3675
|
| {
|
|
3423
3676
|
message: string
|
|
3677
|
+
created_at?: string | undefined
|
|
3424
3678
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3425
3679
|
warning_code: 'schlage_detected_duplicate'
|
|
3426
3680
|
}
|
|
3427
3681
|
| {
|
|
3428
3682
|
message: string
|
|
3683
|
+
created_at?: string | undefined
|
|
3429
3684
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3430
3685
|
warning_code: 'schlage_creation_outage'
|
|
3431
3686
|
}
|
|
3432
3687
|
| {
|
|
3433
3688
|
message: string
|
|
3434
|
-
|
|
3435
|
-
warning_code: 'salto_office_mode'
|
|
3436
|
-
}
|
|
3437
|
-
| {
|
|
3438
|
-
message: string
|
|
3689
|
+
created_at?: string | undefined
|
|
3439
3690
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3440
3691
|
warning_code: 'code_modified_external_to_seam'
|
|
3441
3692
|
}
|
|
3442
3693
|
| {
|
|
3443
3694
|
message: string
|
|
3695
|
+
created_at?: string | undefined
|
|
3444
3696
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3445
3697
|
warning_code: 'delay_in_setting_on_device'
|
|
3446
3698
|
}
|
|
3447
3699
|
| {
|
|
3448
3700
|
message: string
|
|
3701
|
+
created_at?: string | undefined
|
|
3449
3702
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3450
3703
|
warning_code: 'delay_in_removing_from_device'
|
|
3451
3704
|
}
|
|
3452
3705
|
| {
|
|
3453
3706
|
message: string
|
|
3707
|
+
created_at?: string | undefined
|
|
3454
3708
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3455
3709
|
warning_code: 'third_party_integration_detected'
|
|
3456
3710
|
}
|
|
3457
3711
|
| {
|
|
3458
3712
|
message: string
|
|
3713
|
+
created_at?: string | undefined
|
|
3459
3714
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3460
3715
|
warning_code: 'august_device_programming_delay'
|
|
3461
3716
|
}
|
|
3462
3717
|
| {
|
|
3463
3718
|
message: string
|
|
3719
|
+
created_at?: string | undefined
|
|
3720
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3721
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
3722
|
+
}
|
|
3723
|
+
| {
|
|
3724
|
+
message: string
|
|
3725
|
+
created_at?: string | undefined
|
|
3464
3726
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3465
3727
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3466
3728
|
}
|
|
3467
3729
|
| {
|
|
3468
3730
|
message: string
|
|
3731
|
+
created_at?: string | undefined
|
|
3469
3732
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3470
3733
|
warning_code: 'management_transferred'
|
|
3471
3734
|
}
|
|
3472
3735
|
| {
|
|
3473
3736
|
message: string
|
|
3737
|
+
created_at?: string | undefined
|
|
3474
3738
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3475
3739
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
3476
3740
|
}
|
|
@@ -3535,117 +3799,171 @@ export interface Routes {
|
|
|
3535
3799
|
| {
|
|
3536
3800
|
message: string
|
|
3537
3801
|
is_access_code_error: true
|
|
3802
|
+
created_at?: string | undefined
|
|
3538
3803
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3539
3804
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
3540
3805
|
}
|
|
3541
3806
|
| {
|
|
3542
3807
|
message: string
|
|
3543
3808
|
is_access_code_error: true
|
|
3809
|
+
created_at?: string | undefined
|
|
3544
3810
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3545
3811
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3546
3812
|
}
|
|
3547
3813
|
| {
|
|
3548
3814
|
message: string
|
|
3549
3815
|
is_access_code_error: true
|
|
3816
|
+
created_at?: string | undefined
|
|
3817
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3818
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
3819
|
+
}
|
|
3820
|
+
| {
|
|
3821
|
+
message: string
|
|
3822
|
+
is_access_code_error: true
|
|
3823
|
+
created_at?: string | undefined
|
|
3550
3824
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3551
3825
|
error_code: 'failed_to_set_on_device'
|
|
3552
3826
|
}
|
|
3553
3827
|
| {
|
|
3554
3828
|
message: string
|
|
3555
3829
|
is_access_code_error: true
|
|
3830
|
+
created_at?: string | undefined
|
|
3556
3831
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3557
3832
|
error_code: 'failed_to_remove_from_device'
|
|
3558
3833
|
}
|
|
3559
3834
|
| {
|
|
3560
3835
|
message: string
|
|
3561
3836
|
is_access_code_error: true
|
|
3837
|
+
created_at?: string | undefined
|
|
3562
3838
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3563
3839
|
error_code: 'duplicate_code_on_device'
|
|
3564
3840
|
}
|
|
3565
3841
|
| {
|
|
3566
3842
|
message: string
|
|
3567
3843
|
is_access_code_error: true
|
|
3844
|
+
created_at?: string | undefined
|
|
3568
3845
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3569
3846
|
error_code: 'duplicate_code_attempt_prevented'
|
|
3570
3847
|
}
|
|
3571
3848
|
| {
|
|
3572
3849
|
message: string
|
|
3573
3850
|
is_access_code_error: true
|
|
3851
|
+
created_at?: string | undefined
|
|
3574
3852
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3575
3853
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
3576
3854
|
}
|
|
3577
3855
|
| {
|
|
3578
3856
|
message: string
|
|
3579
3857
|
is_access_code_error: true
|
|
3858
|
+
created_at?: string | undefined
|
|
3580
3859
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3581
3860
|
error_code: 'igloohome_bridge_offline'
|
|
3582
3861
|
}
|
|
3583
3862
|
| {
|
|
3584
3863
|
message: string
|
|
3585
3864
|
is_access_code_error: true
|
|
3865
|
+
created_at?: string | undefined
|
|
3586
3866
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3587
3867
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3588
3868
|
}
|
|
3589
3869
|
| {
|
|
3590
3870
|
message: string
|
|
3591
3871
|
is_access_code_error: true
|
|
3872
|
+
created_at?: string | undefined
|
|
3592
3873
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3593
3874
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
3594
3875
|
}
|
|
3595
3876
|
| {
|
|
3596
3877
|
message: string
|
|
3597
3878
|
is_access_code_error: true
|
|
3879
|
+
created_at?: string | undefined
|
|
3598
3880
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3599
3881
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
3600
3882
|
}
|
|
3601
3883
|
| {
|
|
3602
3884
|
message: string
|
|
3603
3885
|
is_access_code_error: true
|
|
3886
|
+
created_at?: string | undefined
|
|
3604
3887
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3605
3888
|
error_code: 'code_modified_external_to_seam'
|
|
3606
3889
|
}
|
|
3607
3890
|
| {
|
|
3608
3891
|
message: string
|
|
3609
3892
|
is_access_code_error: true
|
|
3893
|
+
created_at?: string | undefined
|
|
3610
3894
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3611
3895
|
error_code: 'august_lock_invalid_code_length'
|
|
3612
3896
|
}
|
|
3613
3897
|
| {
|
|
3614
3898
|
message: string
|
|
3615
3899
|
is_access_code_error: true
|
|
3900
|
+
created_at?: string | undefined
|
|
3616
3901
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3617
3902
|
error_code: 'august_device_programming_delay'
|
|
3618
3903
|
}
|
|
3619
3904
|
| {
|
|
3620
3905
|
message: string
|
|
3621
3906
|
is_access_code_error: true
|
|
3907
|
+
created_at?: string | undefined
|
|
3622
3908
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3623
3909
|
error_code: 'august_device_slots_full'
|
|
3624
3910
|
}
|
|
3625
3911
|
| {
|
|
3626
3912
|
message: string
|
|
3627
3913
|
is_access_code_error: true
|
|
3914
|
+
created_at?: string | undefined
|
|
3628
3915
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3629
3916
|
error_code: 'august_lock_missing_keypad'
|
|
3630
3917
|
}
|
|
3631
3918
|
| {
|
|
3632
3919
|
message: string
|
|
3633
3920
|
is_access_code_error: true
|
|
3921
|
+
created_at?: string | undefined
|
|
3922
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3923
|
+
error_code: 'august_lock_temporarily_offline'
|
|
3924
|
+
}
|
|
3925
|
+
| {
|
|
3926
|
+
message: string
|
|
3927
|
+
is_access_code_error: true
|
|
3928
|
+
created_at?: string | undefined
|
|
3634
3929
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3635
|
-
error_code: '
|
|
3930
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
3636
3931
|
}
|
|
3637
3932
|
| {
|
|
3638
3933
|
message: string
|
|
3639
3934
|
is_access_code_error: true
|
|
3935
|
+
created_at?: string | undefined
|
|
3640
3936
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3641
3937
|
error_code: 'hubitat_device_programming_delay'
|
|
3642
3938
|
}
|
|
3643
3939
|
| {
|
|
3644
3940
|
message: string
|
|
3645
3941
|
is_access_code_error: true
|
|
3942
|
+
created_at?: string | undefined
|
|
3646
3943
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3647
3944
|
error_code: 'hubitat_no_free_positions_available'
|
|
3648
3945
|
}
|
|
3946
|
+
| {
|
|
3947
|
+
message: string
|
|
3948
|
+
is_access_code_error: true
|
|
3949
|
+
created_at?: string | undefined
|
|
3950
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3951
|
+
error_code: 'wyze_duplicate_code_name'
|
|
3952
|
+
}
|
|
3953
|
+
| {
|
|
3954
|
+
message: string
|
|
3955
|
+
is_access_code_error: true
|
|
3956
|
+
created_at?: string | undefined
|
|
3957
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3958
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
3959
|
+
}
|
|
3960
|
+
| {
|
|
3961
|
+
message: string
|
|
3962
|
+
is_access_code_error: true
|
|
3963
|
+
created_at?: string | undefined
|
|
3964
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3965
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
3966
|
+
}
|
|
3649
3967
|
| {
|
|
3650
3968
|
message: string
|
|
3651
3969
|
is_device_error: false
|
|
@@ -3752,61 +4070,73 @@ export interface Routes {
|
|
|
3752
4070
|
warnings: Array<
|
|
3753
4071
|
| {
|
|
3754
4072
|
message: string
|
|
4073
|
+
created_at?: string | undefined
|
|
3755
4074
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3756
4075
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3757
4076
|
}
|
|
3758
4077
|
| {
|
|
3759
4078
|
message: string
|
|
4079
|
+
created_at?: string | undefined
|
|
3760
4080
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3761
4081
|
warning_code: 'schlage_detected_duplicate'
|
|
3762
4082
|
}
|
|
3763
4083
|
| {
|
|
3764
4084
|
message: string
|
|
4085
|
+
created_at?: string | undefined
|
|
3765
4086
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3766
4087
|
warning_code: 'schlage_creation_outage'
|
|
3767
4088
|
}
|
|
3768
4089
|
| {
|
|
3769
4090
|
message: string
|
|
3770
|
-
|
|
3771
|
-
warning_code: 'salto_office_mode'
|
|
3772
|
-
}
|
|
3773
|
-
| {
|
|
3774
|
-
message: string
|
|
4091
|
+
created_at?: string | undefined
|
|
3775
4092
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3776
4093
|
warning_code: 'code_modified_external_to_seam'
|
|
3777
4094
|
}
|
|
3778
4095
|
| {
|
|
3779
4096
|
message: string
|
|
4097
|
+
created_at?: string | undefined
|
|
3780
4098
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3781
4099
|
warning_code: 'delay_in_setting_on_device'
|
|
3782
4100
|
}
|
|
3783
4101
|
| {
|
|
3784
4102
|
message: string
|
|
4103
|
+
created_at?: string | undefined
|
|
3785
4104
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3786
4105
|
warning_code: 'delay_in_removing_from_device'
|
|
3787
4106
|
}
|
|
3788
4107
|
| {
|
|
3789
4108
|
message: string
|
|
4109
|
+
created_at?: string | undefined
|
|
3790
4110
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3791
4111
|
warning_code: 'third_party_integration_detected'
|
|
3792
4112
|
}
|
|
3793
4113
|
| {
|
|
3794
4114
|
message: string
|
|
4115
|
+
created_at?: string | undefined
|
|
3795
4116
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3796
4117
|
warning_code: 'august_device_programming_delay'
|
|
3797
4118
|
}
|
|
3798
4119
|
| {
|
|
3799
4120
|
message: string
|
|
4121
|
+
created_at?: string | undefined
|
|
4122
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4123
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
4124
|
+
}
|
|
4125
|
+
| {
|
|
4126
|
+
message: string
|
|
4127
|
+
created_at?: string | undefined
|
|
3800
4128
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3801
4129
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3802
4130
|
}
|
|
3803
4131
|
| {
|
|
3804
4132
|
message: string
|
|
4133
|
+
created_at?: string | undefined
|
|
3805
4134
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3806
4135
|
warning_code: 'management_transferred'
|
|
3807
4136
|
}
|
|
3808
4137
|
| {
|
|
3809
4138
|
message: string
|
|
4139
|
+
created_at?: string | undefined
|
|
3810
4140
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3811
4141
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
3812
4142
|
}
|
|
@@ -3859,117 +4189,171 @@ export interface Routes {
|
|
|
3859
4189
|
| {
|
|
3860
4190
|
message: string
|
|
3861
4191
|
is_access_code_error: true
|
|
4192
|
+
created_at?: string | undefined
|
|
3862
4193
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3863
4194
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
3864
4195
|
}
|
|
3865
4196
|
| {
|
|
3866
4197
|
message: string
|
|
3867
4198
|
is_access_code_error: true
|
|
4199
|
+
created_at?: string | undefined
|
|
3868
4200
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3869
4201
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3870
4202
|
}
|
|
3871
4203
|
| {
|
|
3872
4204
|
message: string
|
|
3873
4205
|
is_access_code_error: true
|
|
4206
|
+
created_at?: string | undefined
|
|
4207
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4208
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
4209
|
+
}
|
|
4210
|
+
| {
|
|
4211
|
+
message: string
|
|
4212
|
+
is_access_code_error: true
|
|
4213
|
+
created_at?: string | undefined
|
|
3874
4214
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3875
4215
|
error_code: 'failed_to_set_on_device'
|
|
3876
4216
|
}
|
|
3877
4217
|
| {
|
|
3878
4218
|
message: string
|
|
3879
4219
|
is_access_code_error: true
|
|
4220
|
+
created_at?: string | undefined
|
|
3880
4221
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3881
4222
|
error_code: 'failed_to_remove_from_device'
|
|
3882
4223
|
}
|
|
3883
4224
|
| {
|
|
3884
4225
|
message: string
|
|
3885
4226
|
is_access_code_error: true
|
|
4227
|
+
created_at?: string | undefined
|
|
3886
4228
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3887
4229
|
error_code: 'duplicate_code_on_device'
|
|
3888
4230
|
}
|
|
3889
4231
|
| {
|
|
3890
4232
|
message: string
|
|
3891
4233
|
is_access_code_error: true
|
|
4234
|
+
created_at?: string | undefined
|
|
3892
4235
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3893
4236
|
error_code: 'duplicate_code_attempt_prevented'
|
|
3894
4237
|
}
|
|
3895
4238
|
| {
|
|
3896
4239
|
message: string
|
|
3897
4240
|
is_access_code_error: true
|
|
4241
|
+
created_at?: string | undefined
|
|
3898
4242
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3899
4243
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
3900
4244
|
}
|
|
3901
4245
|
| {
|
|
3902
4246
|
message: string
|
|
3903
4247
|
is_access_code_error: true
|
|
4248
|
+
created_at?: string | undefined
|
|
3904
4249
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3905
4250
|
error_code: 'igloohome_bridge_offline'
|
|
3906
4251
|
}
|
|
3907
4252
|
| {
|
|
3908
4253
|
message: string
|
|
3909
4254
|
is_access_code_error: true
|
|
4255
|
+
created_at?: string | undefined
|
|
3910
4256
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3911
4257
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3912
4258
|
}
|
|
3913
4259
|
| {
|
|
3914
4260
|
message: string
|
|
3915
4261
|
is_access_code_error: true
|
|
4262
|
+
created_at?: string | undefined
|
|
3916
4263
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3917
4264
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
3918
4265
|
}
|
|
3919
4266
|
| {
|
|
3920
4267
|
message: string
|
|
3921
4268
|
is_access_code_error: true
|
|
4269
|
+
created_at?: string | undefined
|
|
3922
4270
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3923
4271
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
3924
4272
|
}
|
|
3925
4273
|
| {
|
|
3926
4274
|
message: string
|
|
3927
4275
|
is_access_code_error: true
|
|
4276
|
+
created_at?: string | undefined
|
|
3928
4277
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3929
4278
|
error_code: 'code_modified_external_to_seam'
|
|
3930
4279
|
}
|
|
3931
4280
|
| {
|
|
3932
4281
|
message: string
|
|
3933
4282
|
is_access_code_error: true
|
|
4283
|
+
created_at?: string | undefined
|
|
3934
4284
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3935
4285
|
error_code: 'august_lock_invalid_code_length'
|
|
3936
4286
|
}
|
|
3937
4287
|
| {
|
|
3938
4288
|
message: string
|
|
3939
4289
|
is_access_code_error: true
|
|
4290
|
+
created_at?: string | undefined
|
|
3940
4291
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3941
4292
|
error_code: 'august_device_programming_delay'
|
|
3942
4293
|
}
|
|
3943
4294
|
| {
|
|
3944
4295
|
message: string
|
|
3945
4296
|
is_access_code_error: true
|
|
4297
|
+
created_at?: string | undefined
|
|
3946
4298
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3947
4299
|
error_code: 'august_device_slots_full'
|
|
3948
4300
|
}
|
|
3949
4301
|
| {
|
|
3950
4302
|
message: string
|
|
3951
4303
|
is_access_code_error: true
|
|
4304
|
+
created_at?: string | undefined
|
|
3952
4305
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3953
4306
|
error_code: 'august_lock_missing_keypad'
|
|
3954
4307
|
}
|
|
3955
4308
|
| {
|
|
3956
4309
|
message: string
|
|
3957
4310
|
is_access_code_error: true
|
|
4311
|
+
created_at?: string | undefined
|
|
3958
4312
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3959
|
-
error_code: '
|
|
4313
|
+
error_code: 'august_lock_temporarily_offline'
|
|
3960
4314
|
}
|
|
3961
4315
|
| {
|
|
3962
4316
|
message: string
|
|
3963
4317
|
is_access_code_error: true
|
|
4318
|
+
created_at?: string | undefined
|
|
4319
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4320
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
4321
|
+
}
|
|
4322
|
+
| {
|
|
4323
|
+
message: string
|
|
4324
|
+
is_access_code_error: true
|
|
4325
|
+
created_at?: string | undefined
|
|
3964
4326
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3965
4327
|
error_code: 'hubitat_device_programming_delay'
|
|
3966
4328
|
}
|
|
3967
4329
|
| {
|
|
3968
4330
|
message: string
|
|
3969
4331
|
is_access_code_error: true
|
|
4332
|
+
created_at?: string | undefined
|
|
3970
4333
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3971
4334
|
error_code: 'hubitat_no_free_positions_available'
|
|
3972
4335
|
}
|
|
4336
|
+
| {
|
|
4337
|
+
message: string
|
|
4338
|
+
is_access_code_error: true
|
|
4339
|
+
created_at?: string | undefined
|
|
4340
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4341
|
+
error_code: 'wyze_duplicate_code_name'
|
|
4342
|
+
}
|
|
4343
|
+
| {
|
|
4344
|
+
message: string
|
|
4345
|
+
is_access_code_error: true
|
|
4346
|
+
created_at?: string | undefined
|
|
4347
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4348
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
4349
|
+
}
|
|
4350
|
+
| {
|
|
4351
|
+
message: string
|
|
4352
|
+
is_access_code_error: true
|
|
4353
|
+
created_at?: string | undefined
|
|
4354
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4355
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
4356
|
+
}
|
|
3973
4357
|
| {
|
|
3974
4358
|
message: string
|
|
3975
4359
|
is_device_error: false
|
|
@@ -4076,61 +4460,73 @@ export interface Routes {
|
|
|
4076
4460
|
warnings: Array<
|
|
4077
4461
|
| {
|
|
4078
4462
|
message: string
|
|
4463
|
+
created_at?: string | undefined
|
|
4079
4464
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4080
4465
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
4081
4466
|
}
|
|
4082
4467
|
| {
|
|
4083
4468
|
message: string
|
|
4469
|
+
created_at?: string | undefined
|
|
4084
4470
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4085
4471
|
warning_code: 'schlage_detected_duplicate'
|
|
4086
4472
|
}
|
|
4087
4473
|
| {
|
|
4088
4474
|
message: string
|
|
4475
|
+
created_at?: string | undefined
|
|
4089
4476
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4090
4477
|
warning_code: 'schlage_creation_outage'
|
|
4091
4478
|
}
|
|
4092
4479
|
| {
|
|
4093
4480
|
message: string
|
|
4094
|
-
|
|
4095
|
-
warning_code: 'salto_office_mode'
|
|
4096
|
-
}
|
|
4097
|
-
| {
|
|
4098
|
-
message: string
|
|
4481
|
+
created_at?: string | undefined
|
|
4099
4482
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4100
4483
|
warning_code: 'code_modified_external_to_seam'
|
|
4101
4484
|
}
|
|
4102
4485
|
| {
|
|
4103
4486
|
message: string
|
|
4487
|
+
created_at?: string | undefined
|
|
4104
4488
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4105
4489
|
warning_code: 'delay_in_setting_on_device'
|
|
4106
4490
|
}
|
|
4107
4491
|
| {
|
|
4108
4492
|
message: string
|
|
4493
|
+
created_at?: string | undefined
|
|
4109
4494
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4110
4495
|
warning_code: 'delay_in_removing_from_device'
|
|
4111
4496
|
}
|
|
4112
4497
|
| {
|
|
4113
4498
|
message: string
|
|
4499
|
+
created_at?: string | undefined
|
|
4114
4500
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4115
4501
|
warning_code: 'third_party_integration_detected'
|
|
4116
4502
|
}
|
|
4117
4503
|
| {
|
|
4118
4504
|
message: string
|
|
4505
|
+
created_at?: string | undefined
|
|
4119
4506
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4120
4507
|
warning_code: 'august_device_programming_delay'
|
|
4121
4508
|
}
|
|
4122
4509
|
| {
|
|
4123
4510
|
message: string
|
|
4511
|
+
created_at?: string | undefined
|
|
4512
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4513
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
4514
|
+
}
|
|
4515
|
+
| {
|
|
4516
|
+
message: string
|
|
4517
|
+
created_at?: string | undefined
|
|
4124
4518
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4125
4519
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
4126
4520
|
}
|
|
4127
4521
|
| {
|
|
4128
4522
|
message: string
|
|
4523
|
+
created_at?: string | undefined
|
|
4129
4524
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4130
4525
|
warning_code: 'management_transferred'
|
|
4131
4526
|
}
|
|
4132
4527
|
| {
|
|
4133
4528
|
message: string
|
|
4529
|
+
created_at?: string | undefined
|
|
4134
4530
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4135
4531
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
4136
4532
|
}
|
|
@@ -4191,117 +4587,171 @@ export interface Routes {
|
|
|
4191
4587
|
| {
|
|
4192
4588
|
message: string
|
|
4193
4589
|
is_access_code_error: true
|
|
4590
|
+
created_at?: string | undefined
|
|
4194
4591
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4195
4592
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
4196
4593
|
}
|
|
4197
4594
|
| {
|
|
4198
4595
|
message: string
|
|
4199
4596
|
is_access_code_error: true
|
|
4597
|
+
created_at?: string | undefined
|
|
4200
4598
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4201
4599
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
4202
4600
|
}
|
|
4203
4601
|
| {
|
|
4204
4602
|
message: string
|
|
4205
4603
|
is_access_code_error: true
|
|
4604
|
+
created_at?: string | undefined
|
|
4605
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4606
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
4607
|
+
}
|
|
4608
|
+
| {
|
|
4609
|
+
message: string
|
|
4610
|
+
is_access_code_error: true
|
|
4611
|
+
created_at?: string | undefined
|
|
4206
4612
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4207
4613
|
error_code: 'failed_to_set_on_device'
|
|
4208
4614
|
}
|
|
4209
4615
|
| {
|
|
4210
4616
|
message: string
|
|
4211
4617
|
is_access_code_error: true
|
|
4618
|
+
created_at?: string | undefined
|
|
4212
4619
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4213
4620
|
error_code: 'failed_to_remove_from_device'
|
|
4214
4621
|
}
|
|
4215
4622
|
| {
|
|
4216
4623
|
message: string
|
|
4217
4624
|
is_access_code_error: true
|
|
4625
|
+
created_at?: string | undefined
|
|
4218
4626
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4219
4627
|
error_code: 'duplicate_code_on_device'
|
|
4220
4628
|
}
|
|
4221
4629
|
| {
|
|
4222
4630
|
message: string
|
|
4223
4631
|
is_access_code_error: true
|
|
4632
|
+
created_at?: string | undefined
|
|
4224
4633
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4225
4634
|
error_code: 'duplicate_code_attempt_prevented'
|
|
4226
4635
|
}
|
|
4227
4636
|
| {
|
|
4228
4637
|
message: string
|
|
4229
4638
|
is_access_code_error: true
|
|
4639
|
+
created_at?: string | undefined
|
|
4230
4640
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4231
4641
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
4232
4642
|
}
|
|
4233
4643
|
| {
|
|
4234
4644
|
message: string
|
|
4235
4645
|
is_access_code_error: true
|
|
4646
|
+
created_at?: string | undefined
|
|
4236
4647
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4237
4648
|
error_code: 'igloohome_bridge_offline'
|
|
4238
4649
|
}
|
|
4239
4650
|
| {
|
|
4240
4651
|
message: string
|
|
4241
4652
|
is_access_code_error: true
|
|
4653
|
+
created_at?: string | undefined
|
|
4242
4654
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4243
4655
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
4244
4656
|
}
|
|
4245
4657
|
| {
|
|
4246
4658
|
message: string
|
|
4247
4659
|
is_access_code_error: true
|
|
4660
|
+
created_at?: string | undefined
|
|
4248
4661
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4249
4662
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
4250
4663
|
}
|
|
4251
4664
|
| {
|
|
4252
4665
|
message: string
|
|
4253
4666
|
is_access_code_error: true
|
|
4667
|
+
created_at?: string | undefined
|
|
4254
4668
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4255
4669
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
4256
4670
|
}
|
|
4257
4671
|
| {
|
|
4258
4672
|
message: string
|
|
4259
4673
|
is_access_code_error: true
|
|
4674
|
+
created_at?: string | undefined
|
|
4260
4675
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4261
4676
|
error_code: 'code_modified_external_to_seam'
|
|
4262
4677
|
}
|
|
4263
4678
|
| {
|
|
4264
4679
|
message: string
|
|
4265
4680
|
is_access_code_error: true
|
|
4681
|
+
created_at?: string | undefined
|
|
4266
4682
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4267
4683
|
error_code: 'august_lock_invalid_code_length'
|
|
4268
4684
|
}
|
|
4269
4685
|
| {
|
|
4270
4686
|
message: string
|
|
4271
4687
|
is_access_code_error: true
|
|
4688
|
+
created_at?: string | undefined
|
|
4272
4689
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4273
4690
|
error_code: 'august_device_programming_delay'
|
|
4274
4691
|
}
|
|
4275
4692
|
| {
|
|
4276
4693
|
message: string
|
|
4277
4694
|
is_access_code_error: true
|
|
4695
|
+
created_at?: string | undefined
|
|
4278
4696
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4279
4697
|
error_code: 'august_device_slots_full'
|
|
4280
4698
|
}
|
|
4281
4699
|
| {
|
|
4282
4700
|
message: string
|
|
4283
4701
|
is_access_code_error: true
|
|
4702
|
+
created_at?: string | undefined
|
|
4284
4703
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4285
4704
|
error_code: 'august_lock_missing_keypad'
|
|
4286
4705
|
}
|
|
4287
4706
|
| {
|
|
4288
4707
|
message: string
|
|
4289
4708
|
is_access_code_error: true
|
|
4709
|
+
created_at?: string | undefined
|
|
4290
4710
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4291
|
-
error_code: '
|
|
4711
|
+
error_code: 'august_lock_temporarily_offline'
|
|
4292
4712
|
}
|
|
4293
4713
|
| {
|
|
4294
4714
|
message: string
|
|
4295
4715
|
is_access_code_error: true
|
|
4716
|
+
created_at?: string | undefined
|
|
4717
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4718
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
4719
|
+
}
|
|
4720
|
+
| {
|
|
4721
|
+
message: string
|
|
4722
|
+
is_access_code_error: true
|
|
4723
|
+
created_at?: string | undefined
|
|
4296
4724
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4297
4725
|
error_code: 'hubitat_device_programming_delay'
|
|
4298
4726
|
}
|
|
4299
4727
|
| {
|
|
4300
4728
|
message: string
|
|
4301
4729
|
is_access_code_error: true
|
|
4730
|
+
created_at?: string | undefined
|
|
4302
4731
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4303
4732
|
error_code: 'hubitat_no_free_positions_available'
|
|
4304
4733
|
}
|
|
4734
|
+
| {
|
|
4735
|
+
message: string
|
|
4736
|
+
is_access_code_error: true
|
|
4737
|
+
created_at?: string | undefined
|
|
4738
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4739
|
+
error_code: 'wyze_duplicate_code_name'
|
|
4740
|
+
}
|
|
4741
|
+
| {
|
|
4742
|
+
message: string
|
|
4743
|
+
is_access_code_error: true
|
|
4744
|
+
created_at?: string | undefined
|
|
4745
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4746
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
4747
|
+
}
|
|
4748
|
+
| {
|
|
4749
|
+
message: string
|
|
4750
|
+
is_access_code_error: true
|
|
4751
|
+
created_at?: string | undefined
|
|
4752
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4753
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
4754
|
+
}
|
|
4305
4755
|
| {
|
|
4306
4756
|
message: string
|
|
4307
4757
|
is_device_error: false
|
|
@@ -4408,61 +4858,73 @@ export interface Routes {
|
|
|
4408
4858
|
warnings: Array<
|
|
4409
4859
|
| {
|
|
4410
4860
|
message: string
|
|
4861
|
+
created_at?: string | undefined
|
|
4411
4862
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4412
4863
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
4413
4864
|
}
|
|
4414
4865
|
| {
|
|
4415
4866
|
message: string
|
|
4867
|
+
created_at?: string | undefined
|
|
4416
4868
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4417
4869
|
warning_code: 'schlage_detected_duplicate'
|
|
4418
4870
|
}
|
|
4419
4871
|
| {
|
|
4420
4872
|
message: string
|
|
4873
|
+
created_at?: string | undefined
|
|
4421
4874
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4422
4875
|
warning_code: 'schlage_creation_outage'
|
|
4423
4876
|
}
|
|
4424
4877
|
| {
|
|
4425
4878
|
message: string
|
|
4426
|
-
|
|
4427
|
-
warning_code: 'salto_office_mode'
|
|
4428
|
-
}
|
|
4429
|
-
| {
|
|
4430
|
-
message: string
|
|
4879
|
+
created_at?: string | undefined
|
|
4431
4880
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4432
4881
|
warning_code: 'code_modified_external_to_seam'
|
|
4433
4882
|
}
|
|
4434
4883
|
| {
|
|
4435
4884
|
message: string
|
|
4885
|
+
created_at?: string | undefined
|
|
4436
4886
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4437
4887
|
warning_code: 'delay_in_setting_on_device'
|
|
4438
4888
|
}
|
|
4439
4889
|
| {
|
|
4440
4890
|
message: string
|
|
4891
|
+
created_at?: string | undefined
|
|
4441
4892
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4442
4893
|
warning_code: 'delay_in_removing_from_device'
|
|
4443
4894
|
}
|
|
4444
4895
|
| {
|
|
4445
4896
|
message: string
|
|
4897
|
+
created_at?: string | undefined
|
|
4446
4898
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4447
4899
|
warning_code: 'third_party_integration_detected'
|
|
4448
4900
|
}
|
|
4449
4901
|
| {
|
|
4450
4902
|
message: string
|
|
4903
|
+
created_at?: string | undefined
|
|
4451
4904
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4452
4905
|
warning_code: 'august_device_programming_delay'
|
|
4453
4906
|
}
|
|
4454
4907
|
| {
|
|
4455
4908
|
message: string
|
|
4909
|
+
created_at?: string | undefined
|
|
4910
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4911
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
4912
|
+
}
|
|
4913
|
+
| {
|
|
4914
|
+
message: string
|
|
4915
|
+
created_at?: string | undefined
|
|
4456
4916
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4457
4917
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
4458
4918
|
}
|
|
4459
4919
|
| {
|
|
4460
4920
|
message: string
|
|
4921
|
+
created_at?: string | undefined
|
|
4461
4922
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4462
4923
|
warning_code: 'management_transferred'
|
|
4463
4924
|
}
|
|
4464
4925
|
| {
|
|
4465
4926
|
message: string
|
|
4927
|
+
created_at?: string | undefined
|
|
4466
4928
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4467
4929
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
4468
4930
|
}
|
|
@@ -5582,117 +6044,171 @@ export interface Routes {
|
|
|
5582
6044
|
| {
|
|
5583
6045
|
message: string
|
|
5584
6046
|
is_access_code_error: true
|
|
6047
|
+
created_at?: string | undefined
|
|
5585
6048
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5586
6049
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
5587
6050
|
}
|
|
5588
6051
|
| {
|
|
5589
6052
|
message: string
|
|
5590
6053
|
is_access_code_error: true
|
|
6054
|
+
created_at?: string | undefined
|
|
5591
6055
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5592
6056
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
5593
6057
|
}
|
|
5594
6058
|
| {
|
|
5595
6059
|
message: string
|
|
5596
6060
|
is_access_code_error: true
|
|
6061
|
+
created_at?: string | undefined
|
|
6062
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6063
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
6064
|
+
}
|
|
6065
|
+
| {
|
|
6066
|
+
message: string
|
|
6067
|
+
is_access_code_error: true
|
|
6068
|
+
created_at?: string | undefined
|
|
5597
6069
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5598
6070
|
error_code: 'failed_to_set_on_device'
|
|
5599
6071
|
}
|
|
5600
6072
|
| {
|
|
5601
6073
|
message: string
|
|
5602
6074
|
is_access_code_error: true
|
|
6075
|
+
created_at?: string | undefined
|
|
5603
6076
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5604
6077
|
error_code: 'failed_to_remove_from_device'
|
|
5605
6078
|
}
|
|
5606
6079
|
| {
|
|
5607
6080
|
message: string
|
|
5608
6081
|
is_access_code_error: true
|
|
6082
|
+
created_at?: string | undefined
|
|
5609
6083
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5610
6084
|
error_code: 'duplicate_code_on_device'
|
|
5611
6085
|
}
|
|
5612
6086
|
| {
|
|
5613
6087
|
message: string
|
|
5614
6088
|
is_access_code_error: true
|
|
6089
|
+
created_at?: string | undefined
|
|
5615
6090
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5616
6091
|
error_code: 'duplicate_code_attempt_prevented'
|
|
5617
6092
|
}
|
|
5618
6093
|
| {
|
|
5619
6094
|
message: string
|
|
5620
6095
|
is_access_code_error: true
|
|
6096
|
+
created_at?: string | undefined
|
|
5621
6097
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5622
6098
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
5623
6099
|
}
|
|
5624
6100
|
| {
|
|
5625
6101
|
message: string
|
|
5626
6102
|
is_access_code_error: true
|
|
6103
|
+
created_at?: string | undefined
|
|
5627
6104
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5628
6105
|
error_code: 'igloohome_bridge_offline'
|
|
5629
6106
|
}
|
|
5630
6107
|
| {
|
|
5631
6108
|
message: string
|
|
5632
6109
|
is_access_code_error: true
|
|
6110
|
+
created_at?: string | undefined
|
|
5633
6111
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5634
6112
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
5635
6113
|
}
|
|
5636
6114
|
| {
|
|
5637
6115
|
message: string
|
|
5638
6116
|
is_access_code_error: true
|
|
6117
|
+
created_at?: string | undefined
|
|
5639
6118
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5640
6119
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
5641
6120
|
}
|
|
5642
6121
|
| {
|
|
5643
6122
|
message: string
|
|
5644
6123
|
is_access_code_error: true
|
|
6124
|
+
created_at?: string | undefined
|
|
5645
6125
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5646
6126
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
5647
6127
|
}
|
|
5648
6128
|
| {
|
|
5649
6129
|
message: string
|
|
5650
6130
|
is_access_code_error: true
|
|
6131
|
+
created_at?: string | undefined
|
|
5651
6132
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5652
6133
|
error_code: 'code_modified_external_to_seam'
|
|
5653
6134
|
}
|
|
5654
6135
|
| {
|
|
5655
6136
|
message: string
|
|
5656
6137
|
is_access_code_error: true
|
|
6138
|
+
created_at?: string | undefined
|
|
5657
6139
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5658
6140
|
error_code: 'august_lock_invalid_code_length'
|
|
5659
6141
|
}
|
|
5660
6142
|
| {
|
|
5661
6143
|
message: string
|
|
5662
6144
|
is_access_code_error: true
|
|
6145
|
+
created_at?: string | undefined
|
|
5663
6146
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5664
6147
|
error_code: 'august_device_programming_delay'
|
|
5665
6148
|
}
|
|
5666
6149
|
| {
|
|
5667
6150
|
message: string
|
|
5668
6151
|
is_access_code_error: true
|
|
6152
|
+
created_at?: string | undefined
|
|
5669
6153
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5670
6154
|
error_code: 'august_device_slots_full'
|
|
5671
6155
|
}
|
|
5672
6156
|
| {
|
|
5673
6157
|
message: string
|
|
5674
6158
|
is_access_code_error: true
|
|
6159
|
+
created_at?: string | undefined
|
|
5675
6160
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5676
6161
|
error_code: 'august_lock_missing_keypad'
|
|
5677
6162
|
}
|
|
5678
6163
|
| {
|
|
5679
6164
|
message: string
|
|
5680
6165
|
is_access_code_error: true
|
|
6166
|
+
created_at?: string | undefined
|
|
5681
6167
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5682
|
-
error_code: '
|
|
6168
|
+
error_code: 'august_lock_temporarily_offline'
|
|
5683
6169
|
}
|
|
5684
6170
|
| {
|
|
5685
6171
|
message: string
|
|
5686
6172
|
is_access_code_error: true
|
|
6173
|
+
created_at?: string | undefined
|
|
6174
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6175
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
6176
|
+
}
|
|
6177
|
+
| {
|
|
6178
|
+
message: string
|
|
6179
|
+
is_access_code_error: true
|
|
6180
|
+
created_at?: string | undefined
|
|
5687
6181
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5688
6182
|
error_code: 'hubitat_device_programming_delay'
|
|
5689
6183
|
}
|
|
5690
6184
|
| {
|
|
5691
6185
|
message: string
|
|
5692
6186
|
is_access_code_error: true
|
|
6187
|
+
created_at?: string | undefined
|
|
5693
6188
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5694
6189
|
error_code: 'hubitat_no_free_positions_available'
|
|
5695
6190
|
}
|
|
6191
|
+
| {
|
|
6192
|
+
message: string
|
|
6193
|
+
is_access_code_error: true
|
|
6194
|
+
created_at?: string | undefined
|
|
6195
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6196
|
+
error_code: 'wyze_duplicate_code_name'
|
|
6197
|
+
}
|
|
6198
|
+
| {
|
|
6199
|
+
message: string
|
|
6200
|
+
is_access_code_error: true
|
|
6201
|
+
created_at?: string | undefined
|
|
6202
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6203
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
6204
|
+
}
|
|
6205
|
+
| {
|
|
6206
|
+
message: string
|
|
6207
|
+
is_access_code_error: true
|
|
6208
|
+
created_at?: string | undefined
|
|
6209
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6210
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
6211
|
+
}
|
|
5696
6212
|
| {
|
|
5697
6213
|
message: string
|
|
5698
6214
|
is_device_error: false
|
|
@@ -5799,61 +6315,73 @@ export interface Routes {
|
|
|
5799
6315
|
warnings: Array<
|
|
5800
6316
|
| {
|
|
5801
6317
|
message: string
|
|
6318
|
+
created_at?: string | undefined
|
|
5802
6319
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5803
6320
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
5804
6321
|
}
|
|
5805
6322
|
| {
|
|
5806
6323
|
message: string
|
|
6324
|
+
created_at?: string | undefined
|
|
5807
6325
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5808
6326
|
warning_code: 'schlage_detected_duplicate'
|
|
5809
6327
|
}
|
|
5810
6328
|
| {
|
|
5811
6329
|
message: string
|
|
6330
|
+
created_at?: string | undefined
|
|
5812
6331
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5813
6332
|
warning_code: 'schlage_creation_outage'
|
|
5814
6333
|
}
|
|
5815
6334
|
| {
|
|
5816
6335
|
message: string
|
|
5817
|
-
|
|
5818
|
-
warning_code: 'salto_office_mode'
|
|
5819
|
-
}
|
|
5820
|
-
| {
|
|
5821
|
-
message: string
|
|
6336
|
+
created_at?: string | undefined
|
|
5822
6337
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5823
6338
|
warning_code: 'code_modified_external_to_seam'
|
|
5824
6339
|
}
|
|
5825
6340
|
| {
|
|
5826
6341
|
message: string
|
|
6342
|
+
created_at?: string | undefined
|
|
5827
6343
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5828
6344
|
warning_code: 'delay_in_setting_on_device'
|
|
5829
6345
|
}
|
|
5830
6346
|
| {
|
|
5831
6347
|
message: string
|
|
6348
|
+
created_at?: string | undefined
|
|
5832
6349
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5833
6350
|
warning_code: 'delay_in_removing_from_device'
|
|
5834
6351
|
}
|
|
5835
6352
|
| {
|
|
5836
6353
|
message: string
|
|
6354
|
+
created_at?: string | undefined
|
|
5837
6355
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5838
6356
|
warning_code: 'third_party_integration_detected'
|
|
5839
6357
|
}
|
|
5840
6358
|
| {
|
|
5841
6359
|
message: string
|
|
6360
|
+
created_at?: string | undefined
|
|
5842
6361
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5843
6362
|
warning_code: 'august_device_programming_delay'
|
|
5844
6363
|
}
|
|
5845
6364
|
| {
|
|
5846
6365
|
message: string
|
|
6366
|
+
created_at?: string | undefined
|
|
6367
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6368
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
6369
|
+
}
|
|
6370
|
+
| {
|
|
6371
|
+
message: string
|
|
6372
|
+
created_at?: string | undefined
|
|
5847
6373
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5848
6374
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
5849
6375
|
}
|
|
5850
6376
|
| {
|
|
5851
6377
|
message: string
|
|
6378
|
+
created_at?: string | undefined
|
|
5852
6379
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5853
6380
|
warning_code: 'management_transferred'
|
|
5854
6381
|
}
|
|
5855
6382
|
| {
|
|
5856
6383
|
message: string
|
|
6384
|
+
created_at?: string | undefined
|
|
5857
6385
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5858
6386
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
5859
6387
|
}
|
|
@@ -5896,117 +6424,171 @@ export interface Routes {
|
|
|
5896
6424
|
| {
|
|
5897
6425
|
message: string
|
|
5898
6426
|
is_access_code_error: true
|
|
6427
|
+
created_at?: string | undefined
|
|
5899
6428
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5900
6429
|
error_code: 'smartthings_failed_to_set_access_code'
|
|
5901
6430
|
}
|
|
5902
6431
|
| {
|
|
5903
6432
|
message: string
|
|
5904
6433
|
is_access_code_error: true
|
|
6434
|
+
created_at?: string | undefined
|
|
5905
6435
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5906
6436
|
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
5907
6437
|
}
|
|
5908
6438
|
| {
|
|
5909
6439
|
message: string
|
|
5910
6440
|
is_access_code_error: true
|
|
6441
|
+
created_at?: string | undefined
|
|
6442
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6443
|
+
error_code: 'smartthings_no_free_slots_available'
|
|
6444
|
+
}
|
|
6445
|
+
| {
|
|
6446
|
+
message: string
|
|
6447
|
+
is_access_code_error: true
|
|
6448
|
+
created_at?: string | undefined
|
|
5911
6449
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5912
6450
|
error_code: 'failed_to_set_on_device'
|
|
5913
6451
|
}
|
|
5914
6452
|
| {
|
|
5915
6453
|
message: string
|
|
5916
6454
|
is_access_code_error: true
|
|
6455
|
+
created_at?: string | undefined
|
|
5917
6456
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5918
6457
|
error_code: 'failed_to_remove_from_device'
|
|
5919
6458
|
}
|
|
5920
6459
|
| {
|
|
5921
6460
|
message: string
|
|
5922
6461
|
is_access_code_error: true
|
|
6462
|
+
created_at?: string | undefined
|
|
5923
6463
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5924
6464
|
error_code: 'duplicate_code_on_device'
|
|
5925
6465
|
}
|
|
5926
6466
|
| {
|
|
5927
6467
|
message: string
|
|
5928
6468
|
is_access_code_error: true
|
|
6469
|
+
created_at?: string | undefined
|
|
5929
6470
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5930
6471
|
error_code: 'duplicate_code_attempt_prevented'
|
|
5931
6472
|
}
|
|
5932
6473
|
| {
|
|
5933
6474
|
message: string
|
|
5934
6475
|
is_access_code_error: true
|
|
6476
|
+
created_at?: string | undefined
|
|
5935
6477
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5936
6478
|
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
5937
6479
|
}
|
|
5938
6480
|
| {
|
|
5939
6481
|
message: string
|
|
5940
6482
|
is_access_code_error: true
|
|
6483
|
+
created_at?: string | undefined
|
|
5941
6484
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5942
6485
|
error_code: 'igloohome_bridge_offline'
|
|
5943
6486
|
}
|
|
5944
6487
|
| {
|
|
5945
6488
|
message: string
|
|
5946
6489
|
is_access_code_error: true
|
|
6490
|
+
created_at?: string | undefined
|
|
5947
6491
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5948
6492
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
5949
6493
|
}
|
|
5950
6494
|
| {
|
|
5951
6495
|
message: string
|
|
5952
6496
|
is_access_code_error: true
|
|
6497
|
+
created_at?: string | undefined
|
|
5953
6498
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5954
6499
|
error_code: 'kwikset_unable_to_confirm_code'
|
|
5955
6500
|
}
|
|
5956
6501
|
| {
|
|
5957
6502
|
message: string
|
|
5958
6503
|
is_access_code_error: true
|
|
6504
|
+
created_at?: string | undefined
|
|
5959
6505
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5960
6506
|
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
5961
6507
|
}
|
|
5962
6508
|
| {
|
|
5963
6509
|
message: string
|
|
5964
6510
|
is_access_code_error: true
|
|
6511
|
+
created_at?: string | undefined
|
|
5965
6512
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5966
6513
|
error_code: 'code_modified_external_to_seam'
|
|
5967
6514
|
}
|
|
5968
6515
|
| {
|
|
5969
6516
|
message: string
|
|
5970
6517
|
is_access_code_error: true
|
|
6518
|
+
created_at?: string | undefined
|
|
5971
6519
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5972
6520
|
error_code: 'august_lock_invalid_code_length'
|
|
5973
6521
|
}
|
|
5974
6522
|
| {
|
|
5975
6523
|
message: string
|
|
5976
6524
|
is_access_code_error: true
|
|
6525
|
+
created_at?: string | undefined
|
|
5977
6526
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5978
6527
|
error_code: 'august_device_programming_delay'
|
|
5979
6528
|
}
|
|
5980
6529
|
| {
|
|
5981
6530
|
message: string
|
|
5982
6531
|
is_access_code_error: true
|
|
6532
|
+
created_at?: string | undefined
|
|
5983
6533
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5984
6534
|
error_code: 'august_device_slots_full'
|
|
5985
6535
|
}
|
|
5986
6536
|
| {
|
|
5987
6537
|
message: string
|
|
5988
6538
|
is_access_code_error: true
|
|
6539
|
+
created_at?: string | undefined
|
|
5989
6540
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5990
6541
|
error_code: 'august_lock_missing_keypad'
|
|
5991
6542
|
}
|
|
5992
6543
|
| {
|
|
5993
6544
|
message: string
|
|
5994
6545
|
is_access_code_error: true
|
|
6546
|
+
created_at?: string | undefined
|
|
5995
6547
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5996
|
-
error_code: '
|
|
6548
|
+
error_code: 'august_lock_temporarily_offline'
|
|
5997
6549
|
}
|
|
5998
6550
|
| {
|
|
5999
6551
|
message: string
|
|
6000
6552
|
is_access_code_error: true
|
|
6553
|
+
created_at?: string | undefined
|
|
6554
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6555
|
+
error_code: 'salto_ks_user_not_subscribed'
|
|
6556
|
+
}
|
|
6557
|
+
| {
|
|
6558
|
+
message: string
|
|
6559
|
+
is_access_code_error: true
|
|
6560
|
+
created_at?: string | undefined
|
|
6001
6561
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6002
6562
|
error_code: 'hubitat_device_programming_delay'
|
|
6003
6563
|
}
|
|
6004
6564
|
| {
|
|
6005
6565
|
message: string
|
|
6006
6566
|
is_access_code_error: true
|
|
6567
|
+
created_at?: string | undefined
|
|
6007
6568
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6008
6569
|
error_code: 'hubitat_no_free_positions_available'
|
|
6009
6570
|
}
|
|
6571
|
+
| {
|
|
6572
|
+
message: string
|
|
6573
|
+
is_access_code_error: true
|
|
6574
|
+
created_at?: string | undefined
|
|
6575
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6576
|
+
error_code: 'wyze_duplicate_code_name'
|
|
6577
|
+
}
|
|
6578
|
+
| {
|
|
6579
|
+
message: string
|
|
6580
|
+
is_access_code_error: true
|
|
6581
|
+
created_at?: string | undefined
|
|
6582
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6583
|
+
error_code: 'wyze_potential_duplicate_code'
|
|
6584
|
+
}
|
|
6585
|
+
| {
|
|
6586
|
+
message: string
|
|
6587
|
+
is_access_code_error: true
|
|
6588
|
+
created_at?: string | undefined
|
|
6589
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6590
|
+
error_code: 'dormakaba_oracode_no_valid_user_level'
|
|
6591
|
+
}
|
|
6010
6592
|
| {
|
|
6011
6593
|
message: string
|
|
6012
6594
|
is_device_error: false
|
|
@@ -6113,61 +6695,73 @@ export interface Routes {
|
|
|
6113
6695
|
warnings: Array<
|
|
6114
6696
|
| {
|
|
6115
6697
|
message: string
|
|
6698
|
+
created_at?: string | undefined
|
|
6116
6699
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6117
6700
|
warning_code: 'smartthings_failed_to_set_access_code'
|
|
6118
6701
|
}
|
|
6119
6702
|
| {
|
|
6120
6703
|
message: string
|
|
6704
|
+
created_at?: string | undefined
|
|
6121
6705
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6122
6706
|
warning_code: 'schlage_detected_duplicate'
|
|
6123
6707
|
}
|
|
6124
6708
|
| {
|
|
6125
6709
|
message: string
|
|
6710
|
+
created_at?: string | undefined
|
|
6126
6711
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6127
6712
|
warning_code: 'schlage_creation_outage'
|
|
6128
6713
|
}
|
|
6129
6714
|
| {
|
|
6130
6715
|
message: string
|
|
6131
|
-
|
|
6132
|
-
warning_code: 'salto_office_mode'
|
|
6133
|
-
}
|
|
6134
|
-
| {
|
|
6135
|
-
message: string
|
|
6716
|
+
created_at?: string | undefined
|
|
6136
6717
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6137
6718
|
warning_code: 'code_modified_external_to_seam'
|
|
6138
6719
|
}
|
|
6139
6720
|
| {
|
|
6140
6721
|
message: string
|
|
6722
|
+
created_at?: string | undefined
|
|
6141
6723
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6142
6724
|
warning_code: 'delay_in_setting_on_device'
|
|
6143
6725
|
}
|
|
6144
6726
|
| {
|
|
6145
6727
|
message: string
|
|
6728
|
+
created_at?: string | undefined
|
|
6146
6729
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6147
6730
|
warning_code: 'delay_in_removing_from_device'
|
|
6148
6731
|
}
|
|
6149
6732
|
| {
|
|
6150
6733
|
message: string
|
|
6734
|
+
created_at?: string | undefined
|
|
6151
6735
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6152
6736
|
warning_code: 'third_party_integration_detected'
|
|
6153
6737
|
}
|
|
6154
6738
|
| {
|
|
6155
6739
|
message: string
|
|
6740
|
+
created_at?: string | undefined
|
|
6156
6741
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6157
6742
|
warning_code: 'august_device_programming_delay'
|
|
6158
6743
|
}
|
|
6159
6744
|
| {
|
|
6160
6745
|
message: string
|
|
6746
|
+
created_at?: string | undefined
|
|
6747
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6748
|
+
warning_code: 'august_lock_temporarily_offline'
|
|
6749
|
+
}
|
|
6750
|
+
| {
|
|
6751
|
+
message: string
|
|
6752
|
+
created_at?: string | undefined
|
|
6161
6753
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6162
6754
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
6163
6755
|
}
|
|
6164
6756
|
| {
|
|
6165
6757
|
message: string
|
|
6758
|
+
created_at?: string | undefined
|
|
6166
6759
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6167
6760
|
warning_code: 'management_transferred'
|
|
6168
6761
|
}
|
|
6169
6762
|
| {
|
|
6170
6763
|
message: string
|
|
6764
|
+
created_at?: string | undefined
|
|
6171
6765
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6172
6766
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
6173
6767
|
}
|