@seamapi/types 1.332.1 → 1.333.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 +1532 -276
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3295 -470
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +902 -35
- package/lib/seam/connect/models/access-codes/managed-access-code.js +238 -6
- 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 +568 -25
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +85 -23
- package/lib/seam/connect/models/connected-accounts/connected-account.js +27 -9
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +28 -7
- package/lib/seam/connect/models/devices/phone.d.ts +28 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +28 -7
- package/lib/seam/connect/openapi.d.ts +174 -164
- package/lib/seam/connect/openapi.js +1220 -94
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1537 -208
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +282 -7
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +32 -9
- package/src/lib/seam/connect/openapi.ts +1407 -184
- package/src/lib/seam/connect/route-types.ts +1906 -211
|
@@ -1023,11 +1023,122 @@ export interface Routes {
|
|
|
1023
1023
|
created_at: string
|
|
1024
1024
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
1025
1025
|
errors: Array<
|
|
1026
|
-
|
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1026
|
+
| (
|
|
1027
|
+
| {
|
|
1028
|
+
message: string
|
|
1029
|
+
is_access_code_error: true
|
|
1030
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1031
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
1032
|
+
}
|
|
1033
|
+
| {
|
|
1034
|
+
message: string
|
|
1035
|
+
is_access_code_error: true
|
|
1036
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1037
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
1038
|
+
}
|
|
1039
|
+
| {
|
|
1040
|
+
message: string
|
|
1041
|
+
is_access_code_error: true
|
|
1042
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1043
|
+
error_code: 'failed_to_set_on_device'
|
|
1044
|
+
}
|
|
1045
|
+
| {
|
|
1046
|
+
message: string
|
|
1047
|
+
is_access_code_error: true
|
|
1048
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1049
|
+
error_code: 'failed_to_remove_from_device'
|
|
1050
|
+
}
|
|
1051
|
+
| {
|
|
1052
|
+
message: string
|
|
1053
|
+
is_access_code_error: true
|
|
1054
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1055
|
+
error_code: 'duplicate_code_on_device'
|
|
1056
|
+
}
|
|
1057
|
+
| {
|
|
1058
|
+
message: string
|
|
1059
|
+
is_access_code_error: true
|
|
1060
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1061
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
1062
|
+
}
|
|
1063
|
+
| {
|
|
1064
|
+
message: string
|
|
1065
|
+
is_access_code_error: true
|
|
1066
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1067
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
1068
|
+
}
|
|
1069
|
+
| {
|
|
1070
|
+
message: string
|
|
1071
|
+
is_access_code_error: true
|
|
1072
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1073
|
+
error_code: 'igloohome_bridge_offline'
|
|
1074
|
+
}
|
|
1075
|
+
| {
|
|
1076
|
+
message: string
|
|
1077
|
+
is_access_code_error: true
|
|
1078
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1079
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
1080
|
+
}
|
|
1081
|
+
| {
|
|
1082
|
+
message: string
|
|
1083
|
+
is_access_code_error: true
|
|
1084
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1085
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
1086
|
+
}
|
|
1087
|
+
| {
|
|
1088
|
+
message: string
|
|
1089
|
+
is_access_code_error: true
|
|
1090
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1091
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
1092
|
+
}
|
|
1093
|
+
| {
|
|
1094
|
+
message: string
|
|
1095
|
+
is_access_code_error: true
|
|
1096
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1097
|
+
error_code: 'code_modified_external_to_seam'
|
|
1098
|
+
}
|
|
1099
|
+
| {
|
|
1100
|
+
message: string
|
|
1101
|
+
is_access_code_error: true
|
|
1102
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1103
|
+
error_code: 'august_lock_invalid_code_length'
|
|
1104
|
+
}
|
|
1105
|
+
| {
|
|
1106
|
+
message: string
|
|
1107
|
+
is_access_code_error: true
|
|
1108
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1109
|
+
error_code: 'august_device_programming_delay'
|
|
1110
|
+
}
|
|
1111
|
+
| {
|
|
1112
|
+
message: string
|
|
1113
|
+
is_access_code_error: true
|
|
1114
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1115
|
+
error_code: 'august_device_slots_full'
|
|
1116
|
+
}
|
|
1117
|
+
| {
|
|
1118
|
+
message: string
|
|
1119
|
+
is_access_code_error: true
|
|
1120
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1121
|
+
error_code: 'august_lock_missing_keypad'
|
|
1122
|
+
}
|
|
1123
|
+
| {
|
|
1124
|
+
message: string
|
|
1125
|
+
is_access_code_error: true
|
|
1126
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1127
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
1128
|
+
}
|
|
1129
|
+
| {
|
|
1130
|
+
message: string
|
|
1131
|
+
is_access_code_error: true
|
|
1132
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1133
|
+
error_code: 'hubitat_device_programming_delay'
|
|
1134
|
+
}
|
|
1135
|
+
| {
|
|
1136
|
+
message: string
|
|
1137
|
+
is_access_code_error: true
|
|
1138
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1139
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
1140
|
+
}
|
|
1141
|
+
)
|
|
1031
1142
|
| (
|
|
1032
1143
|
| {
|
|
1033
1144
|
message: string
|
|
@@ -1108,17 +1219,74 @@ export interface Routes {
|
|
|
1108
1219
|
error_code: 'subscription_required'
|
|
1109
1220
|
}
|
|
1110
1221
|
)
|
|
1222
|
+
| (
|
|
1223
|
+
| {
|
|
1224
|
+
message: string
|
|
1225
|
+
is_connected_account_error: true
|
|
1226
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1227
|
+
error_code: 'account_disconnected'
|
|
1228
|
+
}
|
|
1229
|
+
| {
|
|
1230
|
+
message: string
|
|
1231
|
+
is_connected_account_error: true
|
|
1232
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1233
|
+
error_code: 'invalid_credentials'
|
|
1234
|
+
}
|
|
1235
|
+
)
|
|
1236
|
+
>
|
|
1237
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1238
|
+
warnings: Array<
|
|
1111
1239
|
| {
|
|
1112
1240
|
message: string
|
|
1113
|
-
|
|
1114
|
-
|
|
1241
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1242
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
1243
|
+
}
|
|
1244
|
+
| {
|
|
1245
|
+
message: string
|
|
1246
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1247
|
+
warning_code: 'schlage_detected_duplicate'
|
|
1248
|
+
}
|
|
1249
|
+
| {
|
|
1250
|
+
message: string
|
|
1251
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1252
|
+
warning_code: 'schlage_creation_outage'
|
|
1253
|
+
}
|
|
1254
|
+
| {
|
|
1255
|
+
message: string
|
|
1256
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1257
|
+
warning_code: 'code_modified_external_to_seam'
|
|
1258
|
+
}
|
|
1259
|
+
| {
|
|
1260
|
+
message: string
|
|
1261
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1262
|
+
warning_code: 'delay_in_setting_on_device'
|
|
1263
|
+
}
|
|
1264
|
+
| {
|
|
1265
|
+
message: string
|
|
1266
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1267
|
+
warning_code: 'delay_in_removing_from_device'
|
|
1268
|
+
}
|
|
1269
|
+
| {
|
|
1270
|
+
message: string
|
|
1271
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1272
|
+
warning_code: 'third_party_integration_detected'
|
|
1273
|
+
}
|
|
1274
|
+
| {
|
|
1275
|
+
message: string
|
|
1276
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1277
|
+
warning_code: 'august_device_programming_delay'
|
|
1278
|
+
}
|
|
1279
|
+
| {
|
|
1280
|
+
message: string
|
|
1281
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1282
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
1283
|
+
}
|
|
1284
|
+
| {
|
|
1285
|
+
message: string
|
|
1286
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1287
|
+
warning_code: 'management_transferred'
|
|
1115
1288
|
}
|
|
1116
1289
|
>
|
|
1117
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1118
|
-
warnings: Array<{
|
|
1119
|
-
message: string
|
|
1120
|
-
warning_code: string
|
|
1121
|
-
}>
|
|
1122
1290
|
/** Indicates whether Seam manages the access code. */
|
|
1123
1291
|
is_managed: true
|
|
1124
1292
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -1190,11 +1358,122 @@ export interface Routes {
|
|
|
1190
1358
|
created_at: string
|
|
1191
1359
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
1192
1360
|
errors: Array<
|
|
1193
|
-
|
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1361
|
+
| (
|
|
1362
|
+
| {
|
|
1363
|
+
message: string
|
|
1364
|
+
is_access_code_error: true
|
|
1365
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1366
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
1367
|
+
}
|
|
1368
|
+
| {
|
|
1369
|
+
message: string
|
|
1370
|
+
is_access_code_error: true
|
|
1371
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1372
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
1373
|
+
}
|
|
1374
|
+
| {
|
|
1375
|
+
message: string
|
|
1376
|
+
is_access_code_error: true
|
|
1377
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1378
|
+
error_code: 'failed_to_set_on_device'
|
|
1379
|
+
}
|
|
1380
|
+
| {
|
|
1381
|
+
message: string
|
|
1382
|
+
is_access_code_error: true
|
|
1383
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1384
|
+
error_code: 'failed_to_remove_from_device'
|
|
1385
|
+
}
|
|
1386
|
+
| {
|
|
1387
|
+
message: string
|
|
1388
|
+
is_access_code_error: true
|
|
1389
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1390
|
+
error_code: 'duplicate_code_on_device'
|
|
1391
|
+
}
|
|
1392
|
+
| {
|
|
1393
|
+
message: string
|
|
1394
|
+
is_access_code_error: true
|
|
1395
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1396
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
1397
|
+
}
|
|
1398
|
+
| {
|
|
1399
|
+
message: string
|
|
1400
|
+
is_access_code_error: true
|
|
1401
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1402
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
1403
|
+
}
|
|
1404
|
+
| {
|
|
1405
|
+
message: string
|
|
1406
|
+
is_access_code_error: true
|
|
1407
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1408
|
+
error_code: 'igloohome_bridge_offline'
|
|
1409
|
+
}
|
|
1410
|
+
| {
|
|
1411
|
+
message: string
|
|
1412
|
+
is_access_code_error: true
|
|
1413
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1414
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
1415
|
+
}
|
|
1416
|
+
| {
|
|
1417
|
+
message: string
|
|
1418
|
+
is_access_code_error: true
|
|
1419
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1420
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
1421
|
+
}
|
|
1422
|
+
| {
|
|
1423
|
+
message: string
|
|
1424
|
+
is_access_code_error: true
|
|
1425
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1426
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
1427
|
+
}
|
|
1428
|
+
| {
|
|
1429
|
+
message: string
|
|
1430
|
+
is_access_code_error: true
|
|
1431
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1432
|
+
error_code: 'code_modified_external_to_seam'
|
|
1433
|
+
}
|
|
1434
|
+
| {
|
|
1435
|
+
message: string
|
|
1436
|
+
is_access_code_error: true
|
|
1437
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1438
|
+
error_code: 'august_lock_invalid_code_length'
|
|
1439
|
+
}
|
|
1440
|
+
| {
|
|
1441
|
+
message: string
|
|
1442
|
+
is_access_code_error: true
|
|
1443
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1444
|
+
error_code: 'august_device_programming_delay'
|
|
1445
|
+
}
|
|
1446
|
+
| {
|
|
1447
|
+
message: string
|
|
1448
|
+
is_access_code_error: true
|
|
1449
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1450
|
+
error_code: 'august_device_slots_full'
|
|
1451
|
+
}
|
|
1452
|
+
| {
|
|
1453
|
+
message: string
|
|
1454
|
+
is_access_code_error: true
|
|
1455
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1456
|
+
error_code: 'august_lock_missing_keypad'
|
|
1457
|
+
}
|
|
1458
|
+
| {
|
|
1459
|
+
message: string
|
|
1460
|
+
is_access_code_error: true
|
|
1461
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1462
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
1463
|
+
}
|
|
1464
|
+
| {
|
|
1465
|
+
message: string
|
|
1466
|
+
is_access_code_error: true
|
|
1467
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1468
|
+
error_code: 'hubitat_device_programming_delay'
|
|
1469
|
+
}
|
|
1470
|
+
| {
|
|
1471
|
+
message: string
|
|
1472
|
+
is_access_code_error: true
|
|
1473
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1474
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
1475
|
+
}
|
|
1476
|
+
)
|
|
1198
1477
|
| (
|
|
1199
1478
|
| {
|
|
1200
1479
|
message: string
|
|
@@ -1275,17 +1554,74 @@ export interface Routes {
|
|
|
1275
1554
|
error_code: 'subscription_required'
|
|
1276
1555
|
}
|
|
1277
1556
|
)
|
|
1557
|
+
| (
|
|
1558
|
+
| {
|
|
1559
|
+
message: string
|
|
1560
|
+
is_connected_account_error: true
|
|
1561
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1562
|
+
error_code: 'account_disconnected'
|
|
1563
|
+
}
|
|
1564
|
+
| {
|
|
1565
|
+
message: string
|
|
1566
|
+
is_connected_account_error: true
|
|
1567
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1568
|
+
error_code: 'invalid_credentials'
|
|
1569
|
+
}
|
|
1570
|
+
)
|
|
1571
|
+
>
|
|
1572
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1573
|
+
warnings: Array<
|
|
1278
1574
|
| {
|
|
1279
1575
|
message: string
|
|
1280
|
-
|
|
1281
|
-
|
|
1576
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1577
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
1578
|
+
}
|
|
1579
|
+
| {
|
|
1580
|
+
message: string
|
|
1581
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1582
|
+
warning_code: 'schlage_detected_duplicate'
|
|
1583
|
+
}
|
|
1584
|
+
| {
|
|
1585
|
+
message: string
|
|
1586
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1587
|
+
warning_code: 'schlage_creation_outage'
|
|
1588
|
+
}
|
|
1589
|
+
| {
|
|
1590
|
+
message: string
|
|
1591
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1592
|
+
warning_code: 'code_modified_external_to_seam'
|
|
1593
|
+
}
|
|
1594
|
+
| {
|
|
1595
|
+
message: string
|
|
1596
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1597
|
+
warning_code: 'delay_in_setting_on_device'
|
|
1598
|
+
}
|
|
1599
|
+
| {
|
|
1600
|
+
message: string
|
|
1601
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1602
|
+
warning_code: 'delay_in_removing_from_device'
|
|
1603
|
+
}
|
|
1604
|
+
| {
|
|
1605
|
+
message: string
|
|
1606
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1607
|
+
warning_code: 'third_party_integration_detected'
|
|
1608
|
+
}
|
|
1609
|
+
| {
|
|
1610
|
+
message: string
|
|
1611
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1612
|
+
warning_code: 'august_device_programming_delay'
|
|
1613
|
+
}
|
|
1614
|
+
| {
|
|
1615
|
+
message: string
|
|
1616
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1617
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
1618
|
+
}
|
|
1619
|
+
| {
|
|
1620
|
+
message: string
|
|
1621
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1622
|
+
warning_code: 'management_transferred'
|
|
1282
1623
|
}
|
|
1283
1624
|
>
|
|
1284
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1285
|
-
warnings: Array<{
|
|
1286
|
-
message: string
|
|
1287
|
-
warning_code: string
|
|
1288
|
-
}>
|
|
1289
1625
|
/** Indicates whether Seam manages the access code. */
|
|
1290
1626
|
is_managed: true
|
|
1291
1627
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -2351,11 +2687,122 @@ export interface Routes {
|
|
|
2351
2687
|
created_at: string
|
|
2352
2688
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2353
2689
|
errors: Array<
|
|
2354
|
-
|
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2690
|
+
| (
|
|
2691
|
+
| {
|
|
2692
|
+
message: string
|
|
2693
|
+
is_access_code_error: true
|
|
2694
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2695
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
2696
|
+
}
|
|
2697
|
+
| {
|
|
2698
|
+
message: string
|
|
2699
|
+
is_access_code_error: true
|
|
2700
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2701
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
2702
|
+
}
|
|
2703
|
+
| {
|
|
2704
|
+
message: string
|
|
2705
|
+
is_access_code_error: true
|
|
2706
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2707
|
+
error_code: 'failed_to_set_on_device'
|
|
2708
|
+
}
|
|
2709
|
+
| {
|
|
2710
|
+
message: string
|
|
2711
|
+
is_access_code_error: true
|
|
2712
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2713
|
+
error_code: 'failed_to_remove_from_device'
|
|
2714
|
+
}
|
|
2715
|
+
| {
|
|
2716
|
+
message: string
|
|
2717
|
+
is_access_code_error: true
|
|
2718
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2719
|
+
error_code: 'duplicate_code_on_device'
|
|
2720
|
+
}
|
|
2721
|
+
| {
|
|
2722
|
+
message: string
|
|
2723
|
+
is_access_code_error: true
|
|
2724
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2725
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
2726
|
+
}
|
|
2727
|
+
| {
|
|
2728
|
+
message: string
|
|
2729
|
+
is_access_code_error: true
|
|
2730
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2731
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
2732
|
+
}
|
|
2733
|
+
| {
|
|
2734
|
+
message: string
|
|
2735
|
+
is_access_code_error: true
|
|
2736
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2737
|
+
error_code: 'igloohome_bridge_offline'
|
|
2738
|
+
}
|
|
2739
|
+
| {
|
|
2740
|
+
message: string
|
|
2741
|
+
is_access_code_error: true
|
|
2742
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2743
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
2744
|
+
}
|
|
2745
|
+
| {
|
|
2746
|
+
message: string
|
|
2747
|
+
is_access_code_error: true
|
|
2748
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2749
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
2750
|
+
}
|
|
2751
|
+
| {
|
|
2752
|
+
message: string
|
|
2753
|
+
is_access_code_error: true
|
|
2754
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2755
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
2756
|
+
}
|
|
2757
|
+
| {
|
|
2758
|
+
message: string
|
|
2759
|
+
is_access_code_error: true
|
|
2760
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2761
|
+
error_code: 'code_modified_external_to_seam'
|
|
2762
|
+
}
|
|
2763
|
+
| {
|
|
2764
|
+
message: string
|
|
2765
|
+
is_access_code_error: true
|
|
2766
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2767
|
+
error_code: 'august_lock_invalid_code_length'
|
|
2768
|
+
}
|
|
2769
|
+
| {
|
|
2770
|
+
message: string
|
|
2771
|
+
is_access_code_error: true
|
|
2772
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2773
|
+
error_code: 'august_device_programming_delay'
|
|
2774
|
+
}
|
|
2775
|
+
| {
|
|
2776
|
+
message: string
|
|
2777
|
+
is_access_code_error: true
|
|
2778
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2779
|
+
error_code: 'august_device_slots_full'
|
|
2780
|
+
}
|
|
2781
|
+
| {
|
|
2782
|
+
message: string
|
|
2783
|
+
is_access_code_error: true
|
|
2784
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2785
|
+
error_code: 'august_lock_missing_keypad'
|
|
2786
|
+
}
|
|
2787
|
+
| {
|
|
2788
|
+
message: string
|
|
2789
|
+
is_access_code_error: true
|
|
2790
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2791
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
2792
|
+
}
|
|
2793
|
+
| {
|
|
2794
|
+
message: string
|
|
2795
|
+
is_access_code_error: true
|
|
2796
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2797
|
+
error_code: 'hubitat_device_programming_delay'
|
|
2798
|
+
}
|
|
2799
|
+
| {
|
|
2800
|
+
message: string
|
|
2801
|
+
is_access_code_error: true
|
|
2802
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2803
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
2804
|
+
}
|
|
2805
|
+
)
|
|
2359
2806
|
| (
|
|
2360
2807
|
| {
|
|
2361
2808
|
message: string
|
|
@@ -2436,17 +2883,74 @@ export interface Routes {
|
|
|
2436
2883
|
error_code: 'subscription_required'
|
|
2437
2884
|
}
|
|
2438
2885
|
)
|
|
2886
|
+
| (
|
|
2887
|
+
| {
|
|
2888
|
+
message: string
|
|
2889
|
+
is_connected_account_error: true
|
|
2890
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2891
|
+
error_code: 'account_disconnected'
|
|
2892
|
+
}
|
|
2893
|
+
| {
|
|
2894
|
+
message: string
|
|
2895
|
+
is_connected_account_error: true
|
|
2896
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2897
|
+
error_code: 'invalid_credentials'
|
|
2898
|
+
}
|
|
2899
|
+
)
|
|
2900
|
+
>
|
|
2901
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2902
|
+
warnings: Array<
|
|
2439
2903
|
| {
|
|
2440
2904
|
message: string
|
|
2441
|
-
|
|
2442
|
-
|
|
2905
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2906
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
2907
|
+
}
|
|
2908
|
+
| {
|
|
2909
|
+
message: string
|
|
2910
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2911
|
+
warning_code: 'schlage_detected_duplicate'
|
|
2912
|
+
}
|
|
2913
|
+
| {
|
|
2914
|
+
message: string
|
|
2915
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2916
|
+
warning_code: 'schlage_creation_outage'
|
|
2917
|
+
}
|
|
2918
|
+
| {
|
|
2919
|
+
message: string
|
|
2920
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2921
|
+
warning_code: 'code_modified_external_to_seam'
|
|
2922
|
+
}
|
|
2923
|
+
| {
|
|
2924
|
+
message: string
|
|
2925
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2926
|
+
warning_code: 'delay_in_setting_on_device'
|
|
2927
|
+
}
|
|
2928
|
+
| {
|
|
2929
|
+
message: string
|
|
2930
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2931
|
+
warning_code: 'delay_in_removing_from_device'
|
|
2932
|
+
}
|
|
2933
|
+
| {
|
|
2934
|
+
message: string
|
|
2935
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2936
|
+
warning_code: 'third_party_integration_detected'
|
|
2937
|
+
}
|
|
2938
|
+
| {
|
|
2939
|
+
message: string
|
|
2940
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2941
|
+
warning_code: 'august_device_programming_delay'
|
|
2942
|
+
}
|
|
2943
|
+
| {
|
|
2944
|
+
message: string
|
|
2945
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2946
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
2947
|
+
}
|
|
2948
|
+
| {
|
|
2949
|
+
message: string
|
|
2950
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2951
|
+
warning_code: 'management_transferred'
|
|
2443
2952
|
}
|
|
2444
2953
|
>
|
|
2445
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2446
|
-
warnings: Array<{
|
|
2447
|
-
message: string
|
|
2448
|
-
warning_code: string
|
|
2449
|
-
}>
|
|
2450
2954
|
/** Indicates whether Seam manages the access code. */
|
|
2451
2955
|
is_managed: true
|
|
2452
2956
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -2505,11 +3009,122 @@ export interface Routes {
|
|
|
2505
3009
|
created_at: string
|
|
2506
3010
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2507
3011
|
errors: Array<
|
|
2508
|
-
|
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
3012
|
+
| (
|
|
3013
|
+
| {
|
|
3014
|
+
message: string
|
|
3015
|
+
is_access_code_error: true
|
|
3016
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3017
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
3018
|
+
}
|
|
3019
|
+
| {
|
|
3020
|
+
message: string
|
|
3021
|
+
is_access_code_error: true
|
|
3022
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3023
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3024
|
+
}
|
|
3025
|
+
| {
|
|
3026
|
+
message: string
|
|
3027
|
+
is_access_code_error: true
|
|
3028
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3029
|
+
error_code: 'failed_to_set_on_device'
|
|
3030
|
+
}
|
|
3031
|
+
| {
|
|
3032
|
+
message: string
|
|
3033
|
+
is_access_code_error: true
|
|
3034
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3035
|
+
error_code: 'failed_to_remove_from_device'
|
|
3036
|
+
}
|
|
3037
|
+
| {
|
|
3038
|
+
message: string
|
|
3039
|
+
is_access_code_error: true
|
|
3040
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3041
|
+
error_code: 'duplicate_code_on_device'
|
|
3042
|
+
}
|
|
3043
|
+
| {
|
|
3044
|
+
message: string
|
|
3045
|
+
is_access_code_error: true
|
|
3046
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3047
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
3048
|
+
}
|
|
3049
|
+
| {
|
|
3050
|
+
message: string
|
|
3051
|
+
is_access_code_error: true
|
|
3052
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3053
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
3054
|
+
}
|
|
3055
|
+
| {
|
|
3056
|
+
message: string
|
|
3057
|
+
is_access_code_error: true
|
|
3058
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3059
|
+
error_code: 'igloohome_bridge_offline'
|
|
3060
|
+
}
|
|
3061
|
+
| {
|
|
3062
|
+
message: string
|
|
3063
|
+
is_access_code_error: true
|
|
3064
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3065
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3066
|
+
}
|
|
3067
|
+
| {
|
|
3068
|
+
message: string
|
|
3069
|
+
is_access_code_error: true
|
|
3070
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3071
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
3072
|
+
}
|
|
3073
|
+
| {
|
|
3074
|
+
message: string
|
|
3075
|
+
is_access_code_error: true
|
|
3076
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3077
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
3078
|
+
}
|
|
3079
|
+
| {
|
|
3080
|
+
message: string
|
|
3081
|
+
is_access_code_error: true
|
|
3082
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3083
|
+
error_code: 'code_modified_external_to_seam'
|
|
3084
|
+
}
|
|
3085
|
+
| {
|
|
3086
|
+
message: string
|
|
3087
|
+
is_access_code_error: true
|
|
3088
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3089
|
+
error_code: 'august_lock_invalid_code_length'
|
|
3090
|
+
}
|
|
3091
|
+
| {
|
|
3092
|
+
message: string
|
|
3093
|
+
is_access_code_error: true
|
|
3094
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3095
|
+
error_code: 'august_device_programming_delay'
|
|
3096
|
+
}
|
|
3097
|
+
| {
|
|
3098
|
+
message: string
|
|
3099
|
+
is_access_code_error: true
|
|
3100
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3101
|
+
error_code: 'august_device_slots_full'
|
|
3102
|
+
}
|
|
3103
|
+
| {
|
|
3104
|
+
message: string
|
|
3105
|
+
is_access_code_error: true
|
|
3106
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3107
|
+
error_code: 'august_lock_missing_keypad'
|
|
3108
|
+
}
|
|
3109
|
+
| {
|
|
3110
|
+
message: string
|
|
3111
|
+
is_access_code_error: true
|
|
3112
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3113
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
3114
|
+
}
|
|
3115
|
+
| {
|
|
3116
|
+
message: string
|
|
3117
|
+
is_access_code_error: true
|
|
3118
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3119
|
+
error_code: 'hubitat_device_programming_delay'
|
|
3120
|
+
}
|
|
3121
|
+
| {
|
|
3122
|
+
message: string
|
|
3123
|
+
is_access_code_error: true
|
|
3124
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3125
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
3126
|
+
}
|
|
3127
|
+
)
|
|
2513
3128
|
| (
|
|
2514
3129
|
| {
|
|
2515
3130
|
message: string
|
|
@@ -2590,17 +3205,74 @@ export interface Routes {
|
|
|
2590
3205
|
error_code: 'subscription_required'
|
|
2591
3206
|
}
|
|
2592
3207
|
)
|
|
3208
|
+
| (
|
|
3209
|
+
| {
|
|
3210
|
+
message: string
|
|
3211
|
+
is_connected_account_error: true
|
|
3212
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3213
|
+
error_code: 'account_disconnected'
|
|
3214
|
+
}
|
|
3215
|
+
| {
|
|
3216
|
+
message: string
|
|
3217
|
+
is_connected_account_error: true
|
|
3218
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3219
|
+
error_code: 'invalid_credentials'
|
|
3220
|
+
}
|
|
3221
|
+
)
|
|
3222
|
+
>
|
|
3223
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3224
|
+
warnings: Array<
|
|
2593
3225
|
| {
|
|
2594
3226
|
message: string
|
|
2595
|
-
|
|
2596
|
-
|
|
3227
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3228
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3229
|
+
}
|
|
3230
|
+
| {
|
|
3231
|
+
message: string
|
|
3232
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3233
|
+
warning_code: 'schlage_detected_duplicate'
|
|
3234
|
+
}
|
|
3235
|
+
| {
|
|
3236
|
+
message: string
|
|
3237
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3238
|
+
warning_code: 'schlage_creation_outage'
|
|
3239
|
+
}
|
|
3240
|
+
| {
|
|
3241
|
+
message: string
|
|
3242
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3243
|
+
warning_code: 'code_modified_external_to_seam'
|
|
3244
|
+
}
|
|
3245
|
+
| {
|
|
3246
|
+
message: string
|
|
3247
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3248
|
+
warning_code: 'delay_in_setting_on_device'
|
|
3249
|
+
}
|
|
3250
|
+
| {
|
|
3251
|
+
message: string
|
|
3252
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3253
|
+
warning_code: 'delay_in_removing_from_device'
|
|
3254
|
+
}
|
|
3255
|
+
| {
|
|
3256
|
+
message: string
|
|
3257
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3258
|
+
warning_code: 'third_party_integration_detected'
|
|
3259
|
+
}
|
|
3260
|
+
| {
|
|
3261
|
+
message: string
|
|
3262
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3263
|
+
warning_code: 'august_device_programming_delay'
|
|
3264
|
+
}
|
|
3265
|
+
| {
|
|
3266
|
+
message: string
|
|
3267
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3268
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3269
|
+
}
|
|
3270
|
+
| {
|
|
3271
|
+
message: string
|
|
3272
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3273
|
+
warning_code: 'management_transferred'
|
|
2597
3274
|
}
|
|
2598
3275
|
>
|
|
2599
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2600
|
-
warnings: Array<{
|
|
2601
|
-
message: string
|
|
2602
|
-
warning_code: string
|
|
2603
|
-
}>
|
|
2604
3276
|
/** Indicates whether Seam manages the access code. */
|
|
2605
3277
|
is_managed: true
|
|
2606
3278
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -2658,11 +3330,122 @@ export interface Routes {
|
|
|
2658
3330
|
created_at: string
|
|
2659
3331
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2660
3332
|
errors: Array<
|
|
2661
|
-
|
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
3333
|
+
| (
|
|
3334
|
+
| {
|
|
3335
|
+
message: string
|
|
3336
|
+
is_access_code_error: true
|
|
3337
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3338
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
3339
|
+
}
|
|
3340
|
+
| {
|
|
3341
|
+
message: string
|
|
3342
|
+
is_access_code_error: true
|
|
3343
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3344
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3345
|
+
}
|
|
3346
|
+
| {
|
|
3347
|
+
message: string
|
|
3348
|
+
is_access_code_error: true
|
|
3349
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3350
|
+
error_code: 'failed_to_set_on_device'
|
|
3351
|
+
}
|
|
3352
|
+
| {
|
|
3353
|
+
message: string
|
|
3354
|
+
is_access_code_error: true
|
|
3355
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3356
|
+
error_code: 'failed_to_remove_from_device'
|
|
3357
|
+
}
|
|
3358
|
+
| {
|
|
3359
|
+
message: string
|
|
3360
|
+
is_access_code_error: true
|
|
3361
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3362
|
+
error_code: 'duplicate_code_on_device'
|
|
3363
|
+
}
|
|
3364
|
+
| {
|
|
3365
|
+
message: string
|
|
3366
|
+
is_access_code_error: true
|
|
3367
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3368
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
3369
|
+
}
|
|
3370
|
+
| {
|
|
3371
|
+
message: string
|
|
3372
|
+
is_access_code_error: true
|
|
3373
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3374
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
3375
|
+
}
|
|
3376
|
+
| {
|
|
3377
|
+
message: string
|
|
3378
|
+
is_access_code_error: true
|
|
3379
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3380
|
+
error_code: 'igloohome_bridge_offline'
|
|
3381
|
+
}
|
|
3382
|
+
| {
|
|
3383
|
+
message: string
|
|
3384
|
+
is_access_code_error: true
|
|
3385
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3386
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3387
|
+
}
|
|
3388
|
+
| {
|
|
3389
|
+
message: string
|
|
3390
|
+
is_access_code_error: true
|
|
3391
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3392
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
3393
|
+
}
|
|
3394
|
+
| {
|
|
3395
|
+
message: string
|
|
3396
|
+
is_access_code_error: true
|
|
3397
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3398
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
3399
|
+
}
|
|
3400
|
+
| {
|
|
3401
|
+
message: string
|
|
3402
|
+
is_access_code_error: true
|
|
3403
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3404
|
+
error_code: 'code_modified_external_to_seam'
|
|
3405
|
+
}
|
|
3406
|
+
| {
|
|
3407
|
+
message: string
|
|
3408
|
+
is_access_code_error: true
|
|
3409
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3410
|
+
error_code: 'august_lock_invalid_code_length'
|
|
3411
|
+
}
|
|
3412
|
+
| {
|
|
3413
|
+
message: string
|
|
3414
|
+
is_access_code_error: true
|
|
3415
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3416
|
+
error_code: 'august_device_programming_delay'
|
|
3417
|
+
}
|
|
3418
|
+
| {
|
|
3419
|
+
message: string
|
|
3420
|
+
is_access_code_error: true
|
|
3421
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3422
|
+
error_code: 'august_device_slots_full'
|
|
3423
|
+
}
|
|
3424
|
+
| {
|
|
3425
|
+
message: string
|
|
3426
|
+
is_access_code_error: true
|
|
3427
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3428
|
+
error_code: 'august_lock_missing_keypad'
|
|
3429
|
+
}
|
|
3430
|
+
| {
|
|
3431
|
+
message: string
|
|
3432
|
+
is_access_code_error: true
|
|
3433
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3434
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
3435
|
+
}
|
|
3436
|
+
| {
|
|
3437
|
+
message: string
|
|
3438
|
+
is_access_code_error: true
|
|
3439
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3440
|
+
error_code: 'hubitat_device_programming_delay'
|
|
3441
|
+
}
|
|
3442
|
+
| {
|
|
3443
|
+
message: string
|
|
3444
|
+
is_access_code_error: true
|
|
3445
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3446
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
3447
|
+
}
|
|
3448
|
+
)
|
|
2666
3449
|
| (
|
|
2667
3450
|
| {
|
|
2668
3451
|
message: string
|
|
@@ -2743,17 +3526,74 @@ export interface Routes {
|
|
|
2743
3526
|
error_code: 'subscription_required'
|
|
2744
3527
|
}
|
|
2745
3528
|
)
|
|
3529
|
+
| (
|
|
3530
|
+
| {
|
|
3531
|
+
message: string
|
|
3532
|
+
is_connected_account_error: true
|
|
3533
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3534
|
+
error_code: 'account_disconnected'
|
|
3535
|
+
}
|
|
3536
|
+
| {
|
|
3537
|
+
message: string
|
|
3538
|
+
is_connected_account_error: true
|
|
3539
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3540
|
+
error_code: 'invalid_credentials'
|
|
3541
|
+
}
|
|
3542
|
+
)
|
|
3543
|
+
>
|
|
3544
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3545
|
+
warnings: Array<
|
|
2746
3546
|
| {
|
|
2747
3547
|
message: string
|
|
2748
|
-
|
|
2749
|
-
|
|
3548
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3549
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3550
|
+
}
|
|
3551
|
+
| {
|
|
3552
|
+
message: string
|
|
3553
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3554
|
+
warning_code: 'schlage_detected_duplicate'
|
|
3555
|
+
}
|
|
3556
|
+
| {
|
|
3557
|
+
message: string
|
|
3558
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3559
|
+
warning_code: 'schlage_creation_outage'
|
|
3560
|
+
}
|
|
3561
|
+
| {
|
|
3562
|
+
message: string
|
|
3563
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3564
|
+
warning_code: 'code_modified_external_to_seam'
|
|
3565
|
+
}
|
|
3566
|
+
| {
|
|
3567
|
+
message: string
|
|
3568
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3569
|
+
warning_code: 'delay_in_setting_on_device'
|
|
3570
|
+
}
|
|
3571
|
+
| {
|
|
3572
|
+
message: string
|
|
3573
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3574
|
+
warning_code: 'delay_in_removing_from_device'
|
|
3575
|
+
}
|
|
3576
|
+
| {
|
|
3577
|
+
message: string
|
|
3578
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3579
|
+
warning_code: 'third_party_integration_detected'
|
|
3580
|
+
}
|
|
3581
|
+
| {
|
|
3582
|
+
message: string
|
|
3583
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3584
|
+
warning_code: 'august_device_programming_delay'
|
|
3585
|
+
}
|
|
3586
|
+
| {
|
|
3587
|
+
message: string
|
|
3588
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3589
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3590
|
+
}
|
|
3591
|
+
| {
|
|
3592
|
+
message: string
|
|
3593
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3594
|
+
warning_code: 'management_transferred'
|
|
2750
3595
|
}
|
|
2751
3596
|
>
|
|
2752
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2753
|
-
warnings: Array<{
|
|
2754
|
-
message: string
|
|
2755
|
-
warning_code: string
|
|
2756
|
-
}>
|
|
2757
3597
|
/** Indicates whether Seam manages the access code. */
|
|
2758
3598
|
is_managed: true
|
|
2759
3599
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -2799,11 +3639,122 @@ export interface Routes {
|
|
|
2799
3639
|
created_at: string
|
|
2800
3640
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2801
3641
|
errors: Array<
|
|
2802
|
-
|
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
3642
|
+
| (
|
|
3643
|
+
| {
|
|
3644
|
+
message: string
|
|
3645
|
+
is_access_code_error: true
|
|
3646
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3647
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
3648
|
+
}
|
|
3649
|
+
| {
|
|
3650
|
+
message: string
|
|
3651
|
+
is_access_code_error: true
|
|
3652
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3653
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3654
|
+
}
|
|
3655
|
+
| {
|
|
3656
|
+
message: string
|
|
3657
|
+
is_access_code_error: true
|
|
3658
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3659
|
+
error_code: 'failed_to_set_on_device'
|
|
3660
|
+
}
|
|
3661
|
+
| {
|
|
3662
|
+
message: string
|
|
3663
|
+
is_access_code_error: true
|
|
3664
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3665
|
+
error_code: 'failed_to_remove_from_device'
|
|
3666
|
+
}
|
|
3667
|
+
| {
|
|
3668
|
+
message: string
|
|
3669
|
+
is_access_code_error: true
|
|
3670
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3671
|
+
error_code: 'duplicate_code_on_device'
|
|
3672
|
+
}
|
|
3673
|
+
| {
|
|
3674
|
+
message: string
|
|
3675
|
+
is_access_code_error: true
|
|
3676
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3677
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
3678
|
+
}
|
|
3679
|
+
| {
|
|
3680
|
+
message: string
|
|
3681
|
+
is_access_code_error: true
|
|
3682
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3683
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
3684
|
+
}
|
|
3685
|
+
| {
|
|
3686
|
+
message: string
|
|
3687
|
+
is_access_code_error: true
|
|
3688
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3689
|
+
error_code: 'igloohome_bridge_offline'
|
|
3690
|
+
}
|
|
3691
|
+
| {
|
|
3692
|
+
message: string
|
|
3693
|
+
is_access_code_error: true
|
|
3694
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3695
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3696
|
+
}
|
|
3697
|
+
| {
|
|
3698
|
+
message: string
|
|
3699
|
+
is_access_code_error: true
|
|
3700
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3701
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
3702
|
+
}
|
|
3703
|
+
| {
|
|
3704
|
+
message: string
|
|
3705
|
+
is_access_code_error: true
|
|
3706
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3707
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
3708
|
+
}
|
|
3709
|
+
| {
|
|
3710
|
+
message: string
|
|
3711
|
+
is_access_code_error: true
|
|
3712
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3713
|
+
error_code: 'code_modified_external_to_seam'
|
|
3714
|
+
}
|
|
3715
|
+
| {
|
|
3716
|
+
message: string
|
|
3717
|
+
is_access_code_error: true
|
|
3718
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3719
|
+
error_code: 'august_lock_invalid_code_length'
|
|
3720
|
+
}
|
|
3721
|
+
| {
|
|
3722
|
+
message: string
|
|
3723
|
+
is_access_code_error: true
|
|
3724
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3725
|
+
error_code: 'august_device_programming_delay'
|
|
3726
|
+
}
|
|
3727
|
+
| {
|
|
3728
|
+
message: string
|
|
3729
|
+
is_access_code_error: true
|
|
3730
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3731
|
+
error_code: 'august_device_slots_full'
|
|
3732
|
+
}
|
|
3733
|
+
| {
|
|
3734
|
+
message: string
|
|
3735
|
+
is_access_code_error: true
|
|
3736
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3737
|
+
error_code: 'august_lock_missing_keypad'
|
|
3738
|
+
}
|
|
3739
|
+
| {
|
|
3740
|
+
message: string
|
|
3741
|
+
is_access_code_error: true
|
|
3742
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3743
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
3744
|
+
}
|
|
3745
|
+
| {
|
|
3746
|
+
message: string
|
|
3747
|
+
is_access_code_error: true
|
|
3748
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3749
|
+
error_code: 'hubitat_device_programming_delay'
|
|
3750
|
+
}
|
|
3751
|
+
| {
|
|
3752
|
+
message: string
|
|
3753
|
+
is_access_code_error: true
|
|
3754
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3755
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
3756
|
+
}
|
|
3757
|
+
)
|
|
2807
3758
|
| (
|
|
2808
3759
|
| {
|
|
2809
3760
|
message: string
|
|
@@ -2884,17 +3835,74 @@ export interface Routes {
|
|
|
2884
3835
|
error_code: 'subscription_required'
|
|
2885
3836
|
}
|
|
2886
3837
|
)
|
|
3838
|
+
| (
|
|
3839
|
+
| {
|
|
3840
|
+
message: string
|
|
3841
|
+
is_connected_account_error: true
|
|
3842
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3843
|
+
error_code: 'account_disconnected'
|
|
3844
|
+
}
|
|
3845
|
+
| {
|
|
3846
|
+
message: string
|
|
3847
|
+
is_connected_account_error: true
|
|
3848
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3849
|
+
error_code: 'invalid_credentials'
|
|
3850
|
+
}
|
|
3851
|
+
)
|
|
3852
|
+
>
|
|
3853
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3854
|
+
warnings: Array<
|
|
2887
3855
|
| {
|
|
2888
3856
|
message: string
|
|
2889
|
-
|
|
2890
|
-
|
|
3857
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3858
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3859
|
+
}
|
|
3860
|
+
| {
|
|
3861
|
+
message: string
|
|
3862
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3863
|
+
warning_code: 'schlage_detected_duplicate'
|
|
3864
|
+
}
|
|
3865
|
+
| {
|
|
3866
|
+
message: string
|
|
3867
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3868
|
+
warning_code: 'schlage_creation_outage'
|
|
3869
|
+
}
|
|
3870
|
+
| {
|
|
3871
|
+
message: string
|
|
3872
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3873
|
+
warning_code: 'code_modified_external_to_seam'
|
|
3874
|
+
}
|
|
3875
|
+
| {
|
|
3876
|
+
message: string
|
|
3877
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3878
|
+
warning_code: 'delay_in_setting_on_device'
|
|
3879
|
+
}
|
|
3880
|
+
| {
|
|
3881
|
+
message: string
|
|
3882
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3883
|
+
warning_code: 'delay_in_removing_from_device'
|
|
3884
|
+
}
|
|
3885
|
+
| {
|
|
3886
|
+
message: string
|
|
3887
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3888
|
+
warning_code: 'third_party_integration_detected'
|
|
3889
|
+
}
|
|
3890
|
+
| {
|
|
3891
|
+
message: string
|
|
3892
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3893
|
+
warning_code: 'august_device_programming_delay'
|
|
3894
|
+
}
|
|
3895
|
+
| {
|
|
3896
|
+
message: string
|
|
3897
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3898
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3899
|
+
}
|
|
3900
|
+
| {
|
|
3901
|
+
message: string
|
|
3902
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3903
|
+
warning_code: 'management_transferred'
|
|
2891
3904
|
}
|
|
2892
3905
|
>
|
|
2893
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2894
|
-
warnings: Array<{
|
|
2895
|
-
message: string
|
|
2896
|
-
warning_code: string
|
|
2897
|
-
}>
|
|
2898
3906
|
/** Indicates whether Seam manages the access code. */
|
|
2899
3907
|
is_managed: true
|
|
2900
3908
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -2948,11 +3956,122 @@ export interface Routes {
|
|
|
2948
3956
|
created_at: string
|
|
2949
3957
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2950
3958
|
errors: Array<
|
|
2951
|
-
|
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
3959
|
+
| (
|
|
3960
|
+
| {
|
|
3961
|
+
message: string
|
|
3962
|
+
is_access_code_error: true
|
|
3963
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3964
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
3965
|
+
}
|
|
3966
|
+
| {
|
|
3967
|
+
message: string
|
|
3968
|
+
is_access_code_error: true
|
|
3969
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3970
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3971
|
+
}
|
|
3972
|
+
| {
|
|
3973
|
+
message: string
|
|
3974
|
+
is_access_code_error: true
|
|
3975
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3976
|
+
error_code: 'failed_to_set_on_device'
|
|
3977
|
+
}
|
|
3978
|
+
| {
|
|
3979
|
+
message: string
|
|
3980
|
+
is_access_code_error: true
|
|
3981
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3982
|
+
error_code: 'failed_to_remove_from_device'
|
|
3983
|
+
}
|
|
3984
|
+
| {
|
|
3985
|
+
message: string
|
|
3986
|
+
is_access_code_error: true
|
|
3987
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3988
|
+
error_code: 'duplicate_code_on_device'
|
|
3989
|
+
}
|
|
3990
|
+
| {
|
|
3991
|
+
message: string
|
|
3992
|
+
is_access_code_error: true
|
|
3993
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3994
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
3995
|
+
}
|
|
3996
|
+
| {
|
|
3997
|
+
message: string
|
|
3998
|
+
is_access_code_error: true
|
|
3999
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4000
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
4001
|
+
}
|
|
4002
|
+
| {
|
|
4003
|
+
message: string
|
|
4004
|
+
is_access_code_error: true
|
|
4005
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4006
|
+
error_code: 'igloohome_bridge_offline'
|
|
4007
|
+
}
|
|
4008
|
+
| {
|
|
4009
|
+
message: string
|
|
4010
|
+
is_access_code_error: true
|
|
4011
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4012
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
4013
|
+
}
|
|
4014
|
+
| {
|
|
4015
|
+
message: string
|
|
4016
|
+
is_access_code_error: true
|
|
4017
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4018
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
4019
|
+
}
|
|
4020
|
+
| {
|
|
4021
|
+
message: string
|
|
4022
|
+
is_access_code_error: true
|
|
4023
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4024
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
4025
|
+
}
|
|
4026
|
+
| {
|
|
4027
|
+
message: string
|
|
4028
|
+
is_access_code_error: true
|
|
4029
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4030
|
+
error_code: 'code_modified_external_to_seam'
|
|
4031
|
+
}
|
|
4032
|
+
| {
|
|
4033
|
+
message: string
|
|
4034
|
+
is_access_code_error: true
|
|
4035
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4036
|
+
error_code: 'august_lock_invalid_code_length'
|
|
4037
|
+
}
|
|
4038
|
+
| {
|
|
4039
|
+
message: string
|
|
4040
|
+
is_access_code_error: true
|
|
4041
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4042
|
+
error_code: 'august_device_programming_delay'
|
|
4043
|
+
}
|
|
4044
|
+
| {
|
|
4045
|
+
message: string
|
|
4046
|
+
is_access_code_error: true
|
|
4047
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4048
|
+
error_code: 'august_device_slots_full'
|
|
4049
|
+
}
|
|
4050
|
+
| {
|
|
4051
|
+
message: string
|
|
4052
|
+
is_access_code_error: true
|
|
4053
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4054
|
+
error_code: 'august_lock_missing_keypad'
|
|
4055
|
+
}
|
|
4056
|
+
| {
|
|
4057
|
+
message: string
|
|
4058
|
+
is_access_code_error: true
|
|
4059
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4060
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
4061
|
+
}
|
|
4062
|
+
| {
|
|
4063
|
+
message: string
|
|
4064
|
+
is_access_code_error: true
|
|
4065
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4066
|
+
error_code: 'hubitat_device_programming_delay'
|
|
4067
|
+
}
|
|
4068
|
+
| {
|
|
4069
|
+
message: string
|
|
4070
|
+
is_access_code_error: true
|
|
4071
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4072
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
4073
|
+
}
|
|
4074
|
+
)
|
|
2956
4075
|
| (
|
|
2957
4076
|
| {
|
|
2958
4077
|
message: string
|
|
@@ -3033,17 +4152,74 @@ export interface Routes {
|
|
|
3033
4152
|
error_code: 'subscription_required'
|
|
3034
4153
|
}
|
|
3035
4154
|
)
|
|
4155
|
+
| (
|
|
4156
|
+
| {
|
|
4157
|
+
message: string
|
|
4158
|
+
is_connected_account_error: true
|
|
4159
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4160
|
+
error_code: 'account_disconnected'
|
|
4161
|
+
}
|
|
4162
|
+
| {
|
|
4163
|
+
message: string
|
|
4164
|
+
is_connected_account_error: true
|
|
4165
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4166
|
+
error_code: 'invalid_credentials'
|
|
4167
|
+
}
|
|
4168
|
+
)
|
|
4169
|
+
>
|
|
4170
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
4171
|
+
warnings: Array<
|
|
3036
4172
|
| {
|
|
3037
4173
|
message: string
|
|
3038
|
-
|
|
3039
|
-
|
|
4174
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4175
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
4176
|
+
}
|
|
4177
|
+
| {
|
|
4178
|
+
message: string
|
|
4179
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4180
|
+
warning_code: 'schlage_detected_duplicate'
|
|
4181
|
+
}
|
|
4182
|
+
| {
|
|
4183
|
+
message: string
|
|
4184
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4185
|
+
warning_code: 'schlage_creation_outage'
|
|
4186
|
+
}
|
|
4187
|
+
| {
|
|
4188
|
+
message: string
|
|
4189
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4190
|
+
warning_code: 'code_modified_external_to_seam'
|
|
4191
|
+
}
|
|
4192
|
+
| {
|
|
4193
|
+
message: string
|
|
4194
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4195
|
+
warning_code: 'delay_in_setting_on_device'
|
|
4196
|
+
}
|
|
4197
|
+
| {
|
|
4198
|
+
message: string
|
|
4199
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4200
|
+
warning_code: 'delay_in_removing_from_device'
|
|
4201
|
+
}
|
|
4202
|
+
| {
|
|
4203
|
+
message: string
|
|
4204
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4205
|
+
warning_code: 'third_party_integration_detected'
|
|
4206
|
+
}
|
|
4207
|
+
| {
|
|
4208
|
+
message: string
|
|
4209
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4210
|
+
warning_code: 'august_device_programming_delay'
|
|
4211
|
+
}
|
|
4212
|
+
| {
|
|
4213
|
+
message: string
|
|
4214
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4215
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
4216
|
+
}
|
|
4217
|
+
| {
|
|
4218
|
+
message: string
|
|
4219
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4220
|
+
warning_code: 'management_transferred'
|
|
3040
4221
|
}
|
|
3041
4222
|
>
|
|
3042
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3043
|
-
warnings: Array<{
|
|
3044
|
-
message: string
|
|
3045
|
-
warning_code: string
|
|
3046
|
-
}>
|
|
3047
4223
|
is_managed: false
|
|
3048
4224
|
/** Date and time at which the time-bound access code becomes active. */
|
|
3049
4225
|
starts_at?: (string | null) | undefined
|
|
@@ -4085,11 +5261,122 @@ export interface Routes {
|
|
|
4085
5261
|
created_at: string
|
|
4086
5262
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4087
5263
|
errors: Array<
|
|
4088
|
-
|
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
5264
|
+
| (
|
|
5265
|
+
| {
|
|
5266
|
+
message: string
|
|
5267
|
+
is_access_code_error: true
|
|
5268
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5269
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
5270
|
+
}
|
|
5271
|
+
| {
|
|
5272
|
+
message: string
|
|
5273
|
+
is_access_code_error: true
|
|
5274
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5275
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
5276
|
+
}
|
|
5277
|
+
| {
|
|
5278
|
+
message: string
|
|
5279
|
+
is_access_code_error: true
|
|
5280
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5281
|
+
error_code: 'failed_to_set_on_device'
|
|
5282
|
+
}
|
|
5283
|
+
| {
|
|
5284
|
+
message: string
|
|
5285
|
+
is_access_code_error: true
|
|
5286
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5287
|
+
error_code: 'failed_to_remove_from_device'
|
|
5288
|
+
}
|
|
5289
|
+
| {
|
|
5290
|
+
message: string
|
|
5291
|
+
is_access_code_error: true
|
|
5292
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5293
|
+
error_code: 'duplicate_code_on_device'
|
|
5294
|
+
}
|
|
5295
|
+
| {
|
|
5296
|
+
message: string
|
|
5297
|
+
is_access_code_error: true
|
|
5298
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5299
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
5300
|
+
}
|
|
5301
|
+
| {
|
|
5302
|
+
message: string
|
|
5303
|
+
is_access_code_error: true
|
|
5304
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5305
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
5306
|
+
}
|
|
5307
|
+
| {
|
|
5308
|
+
message: string
|
|
5309
|
+
is_access_code_error: true
|
|
5310
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5311
|
+
error_code: 'igloohome_bridge_offline'
|
|
5312
|
+
}
|
|
5313
|
+
| {
|
|
5314
|
+
message: string
|
|
5315
|
+
is_access_code_error: true
|
|
5316
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5317
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
5318
|
+
}
|
|
5319
|
+
| {
|
|
5320
|
+
message: string
|
|
5321
|
+
is_access_code_error: true
|
|
5322
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5323
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
5324
|
+
}
|
|
5325
|
+
| {
|
|
5326
|
+
message: string
|
|
5327
|
+
is_access_code_error: true
|
|
5328
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5329
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
5330
|
+
}
|
|
5331
|
+
| {
|
|
5332
|
+
message: string
|
|
5333
|
+
is_access_code_error: true
|
|
5334
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5335
|
+
error_code: 'code_modified_external_to_seam'
|
|
5336
|
+
}
|
|
5337
|
+
| {
|
|
5338
|
+
message: string
|
|
5339
|
+
is_access_code_error: true
|
|
5340
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5341
|
+
error_code: 'august_lock_invalid_code_length'
|
|
5342
|
+
}
|
|
5343
|
+
| {
|
|
5344
|
+
message: string
|
|
5345
|
+
is_access_code_error: true
|
|
5346
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5347
|
+
error_code: 'august_device_programming_delay'
|
|
5348
|
+
}
|
|
5349
|
+
| {
|
|
5350
|
+
message: string
|
|
5351
|
+
is_access_code_error: true
|
|
5352
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5353
|
+
error_code: 'august_device_slots_full'
|
|
5354
|
+
}
|
|
5355
|
+
| {
|
|
5356
|
+
message: string
|
|
5357
|
+
is_access_code_error: true
|
|
5358
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5359
|
+
error_code: 'august_lock_missing_keypad'
|
|
5360
|
+
}
|
|
5361
|
+
| {
|
|
5362
|
+
message: string
|
|
5363
|
+
is_access_code_error: true
|
|
5364
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5365
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
5366
|
+
}
|
|
5367
|
+
| {
|
|
5368
|
+
message: string
|
|
5369
|
+
is_access_code_error: true
|
|
5370
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5371
|
+
error_code: 'hubitat_device_programming_delay'
|
|
5372
|
+
}
|
|
5373
|
+
| {
|
|
5374
|
+
message: string
|
|
5375
|
+
is_access_code_error: true
|
|
5376
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5377
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
5378
|
+
}
|
|
5379
|
+
)
|
|
4093
5380
|
| (
|
|
4094
5381
|
| {
|
|
4095
5382
|
message: string
|
|
@@ -4170,17 +5457,74 @@ export interface Routes {
|
|
|
4170
5457
|
error_code: 'subscription_required'
|
|
4171
5458
|
}
|
|
4172
5459
|
)
|
|
5460
|
+
| (
|
|
5461
|
+
| {
|
|
5462
|
+
message: string
|
|
5463
|
+
is_connected_account_error: true
|
|
5464
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5465
|
+
error_code: 'account_disconnected'
|
|
5466
|
+
}
|
|
5467
|
+
| {
|
|
5468
|
+
message: string
|
|
5469
|
+
is_connected_account_error: true
|
|
5470
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5471
|
+
error_code: 'invalid_credentials'
|
|
5472
|
+
}
|
|
5473
|
+
)
|
|
5474
|
+
>
|
|
5475
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
5476
|
+
warnings: Array<
|
|
4173
5477
|
| {
|
|
4174
5478
|
message: string
|
|
4175
|
-
|
|
4176
|
-
|
|
5479
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5480
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
5481
|
+
}
|
|
5482
|
+
| {
|
|
5483
|
+
message: string
|
|
5484
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5485
|
+
warning_code: 'schlage_detected_duplicate'
|
|
5486
|
+
}
|
|
5487
|
+
| {
|
|
5488
|
+
message: string
|
|
5489
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5490
|
+
warning_code: 'schlage_creation_outage'
|
|
5491
|
+
}
|
|
5492
|
+
| {
|
|
5493
|
+
message: string
|
|
5494
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5495
|
+
warning_code: 'code_modified_external_to_seam'
|
|
5496
|
+
}
|
|
5497
|
+
| {
|
|
5498
|
+
message: string
|
|
5499
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5500
|
+
warning_code: 'delay_in_setting_on_device'
|
|
5501
|
+
}
|
|
5502
|
+
| {
|
|
5503
|
+
message: string
|
|
5504
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5505
|
+
warning_code: 'delay_in_removing_from_device'
|
|
5506
|
+
}
|
|
5507
|
+
| {
|
|
5508
|
+
message: string
|
|
5509
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5510
|
+
warning_code: 'third_party_integration_detected'
|
|
5511
|
+
}
|
|
5512
|
+
| {
|
|
5513
|
+
message: string
|
|
5514
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5515
|
+
warning_code: 'august_device_programming_delay'
|
|
5516
|
+
}
|
|
5517
|
+
| {
|
|
5518
|
+
message: string
|
|
5519
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5520
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
5521
|
+
}
|
|
5522
|
+
| {
|
|
5523
|
+
message: string
|
|
5524
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5525
|
+
warning_code: 'management_transferred'
|
|
4177
5526
|
}
|
|
4178
5527
|
>
|
|
4179
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
4180
|
-
warnings: Array<{
|
|
4181
|
-
message: string
|
|
4182
|
-
warning_code: string
|
|
4183
|
-
}>
|
|
4184
5528
|
is_managed: false
|
|
4185
5529
|
/** Date and time at which the time-bound access code becomes active. */
|
|
4186
5530
|
starts_at?: (string | null) | undefined
|
|
@@ -4216,11 +5560,122 @@ export interface Routes {
|
|
|
4216
5560
|
created_at: string
|
|
4217
5561
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4218
5562
|
errors: Array<
|
|
4219
|
-
|
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
5563
|
+
| (
|
|
5564
|
+
| {
|
|
5565
|
+
message: string
|
|
5566
|
+
is_access_code_error: true
|
|
5567
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5568
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
5569
|
+
}
|
|
5570
|
+
| {
|
|
5571
|
+
message: string
|
|
5572
|
+
is_access_code_error: true
|
|
5573
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5574
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
5575
|
+
}
|
|
5576
|
+
| {
|
|
5577
|
+
message: string
|
|
5578
|
+
is_access_code_error: true
|
|
5579
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5580
|
+
error_code: 'failed_to_set_on_device'
|
|
5581
|
+
}
|
|
5582
|
+
| {
|
|
5583
|
+
message: string
|
|
5584
|
+
is_access_code_error: true
|
|
5585
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5586
|
+
error_code: 'failed_to_remove_from_device'
|
|
5587
|
+
}
|
|
5588
|
+
| {
|
|
5589
|
+
message: string
|
|
5590
|
+
is_access_code_error: true
|
|
5591
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5592
|
+
error_code: 'duplicate_code_on_device'
|
|
5593
|
+
}
|
|
5594
|
+
| {
|
|
5595
|
+
message: string
|
|
5596
|
+
is_access_code_error: true
|
|
5597
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5598
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
5599
|
+
}
|
|
5600
|
+
| {
|
|
5601
|
+
message: string
|
|
5602
|
+
is_access_code_error: true
|
|
5603
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5604
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
5605
|
+
}
|
|
5606
|
+
| {
|
|
5607
|
+
message: string
|
|
5608
|
+
is_access_code_error: true
|
|
5609
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5610
|
+
error_code: 'igloohome_bridge_offline'
|
|
5611
|
+
}
|
|
5612
|
+
| {
|
|
5613
|
+
message: string
|
|
5614
|
+
is_access_code_error: true
|
|
5615
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5616
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
5617
|
+
}
|
|
5618
|
+
| {
|
|
5619
|
+
message: string
|
|
5620
|
+
is_access_code_error: true
|
|
5621
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5622
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
5623
|
+
}
|
|
5624
|
+
| {
|
|
5625
|
+
message: string
|
|
5626
|
+
is_access_code_error: true
|
|
5627
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5628
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
5629
|
+
}
|
|
5630
|
+
| {
|
|
5631
|
+
message: string
|
|
5632
|
+
is_access_code_error: true
|
|
5633
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5634
|
+
error_code: 'code_modified_external_to_seam'
|
|
5635
|
+
}
|
|
5636
|
+
| {
|
|
5637
|
+
message: string
|
|
5638
|
+
is_access_code_error: true
|
|
5639
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5640
|
+
error_code: 'august_lock_invalid_code_length'
|
|
5641
|
+
}
|
|
5642
|
+
| {
|
|
5643
|
+
message: string
|
|
5644
|
+
is_access_code_error: true
|
|
5645
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5646
|
+
error_code: 'august_device_programming_delay'
|
|
5647
|
+
}
|
|
5648
|
+
| {
|
|
5649
|
+
message: string
|
|
5650
|
+
is_access_code_error: true
|
|
5651
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5652
|
+
error_code: 'august_device_slots_full'
|
|
5653
|
+
}
|
|
5654
|
+
| {
|
|
5655
|
+
message: string
|
|
5656
|
+
is_access_code_error: true
|
|
5657
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5658
|
+
error_code: 'august_lock_missing_keypad'
|
|
5659
|
+
}
|
|
5660
|
+
| {
|
|
5661
|
+
message: string
|
|
5662
|
+
is_access_code_error: true
|
|
5663
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5664
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
5665
|
+
}
|
|
5666
|
+
| {
|
|
5667
|
+
message: string
|
|
5668
|
+
is_access_code_error: true
|
|
5669
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5670
|
+
error_code: 'hubitat_device_programming_delay'
|
|
5671
|
+
}
|
|
5672
|
+
| {
|
|
5673
|
+
message: string
|
|
5674
|
+
is_access_code_error: true
|
|
5675
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5676
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
5677
|
+
}
|
|
5678
|
+
)
|
|
4224
5679
|
| (
|
|
4225
5680
|
| {
|
|
4226
5681
|
message: string
|
|
@@ -4301,17 +5756,74 @@ export interface Routes {
|
|
|
4301
5756
|
error_code: 'subscription_required'
|
|
4302
5757
|
}
|
|
4303
5758
|
)
|
|
5759
|
+
| (
|
|
5760
|
+
| {
|
|
5761
|
+
message: string
|
|
5762
|
+
is_connected_account_error: true
|
|
5763
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5764
|
+
error_code: 'account_disconnected'
|
|
5765
|
+
}
|
|
5766
|
+
| {
|
|
5767
|
+
message: string
|
|
5768
|
+
is_connected_account_error: true
|
|
5769
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5770
|
+
error_code: 'invalid_credentials'
|
|
5771
|
+
}
|
|
5772
|
+
)
|
|
5773
|
+
>
|
|
5774
|
+
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
5775
|
+
warnings: Array<
|
|
4304
5776
|
| {
|
|
4305
5777
|
message: string
|
|
4306
|
-
|
|
4307
|
-
|
|
5778
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5779
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
5780
|
+
}
|
|
5781
|
+
| {
|
|
5782
|
+
message: string
|
|
5783
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5784
|
+
warning_code: 'schlage_detected_duplicate'
|
|
5785
|
+
}
|
|
5786
|
+
| {
|
|
5787
|
+
message: string
|
|
5788
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5789
|
+
warning_code: 'schlage_creation_outage'
|
|
5790
|
+
}
|
|
5791
|
+
| {
|
|
5792
|
+
message: string
|
|
5793
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5794
|
+
warning_code: 'code_modified_external_to_seam'
|
|
5795
|
+
}
|
|
5796
|
+
| {
|
|
5797
|
+
message: string
|
|
5798
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5799
|
+
warning_code: 'delay_in_setting_on_device'
|
|
5800
|
+
}
|
|
5801
|
+
| {
|
|
5802
|
+
message: string
|
|
5803
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5804
|
+
warning_code: 'delay_in_removing_from_device'
|
|
5805
|
+
}
|
|
5806
|
+
| {
|
|
5807
|
+
message: string
|
|
5808
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5809
|
+
warning_code: 'third_party_integration_detected'
|
|
5810
|
+
}
|
|
5811
|
+
| {
|
|
5812
|
+
message: string
|
|
5813
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5814
|
+
warning_code: 'august_device_programming_delay'
|
|
5815
|
+
}
|
|
5816
|
+
| {
|
|
5817
|
+
message: string
|
|
5818
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5819
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
5820
|
+
}
|
|
5821
|
+
| {
|
|
5822
|
+
message: string
|
|
5823
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5824
|
+
warning_code: 'management_transferred'
|
|
4308
5825
|
}
|
|
4309
5826
|
>
|
|
4310
|
-
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
4311
|
-
warnings: Array<{
|
|
4312
|
-
message: string
|
|
4313
|
-
warning_code: string
|
|
4314
|
-
}>
|
|
4315
5827
|
is_managed: false
|
|
4316
5828
|
/** Date and time at which the time-bound access code becomes active. */
|
|
4317
5829
|
starts_at?: (string | null) | undefined
|
|
@@ -13557,15 +15069,25 @@ export interface Routes {
|
|
|
13557
15069
|
| undefined
|
|
13558
15070
|
account_type?: string | undefined
|
|
13559
15071
|
account_type_display_name: string
|
|
13560
|
-
errors: Array<
|
|
13561
|
-
|
|
13562
|
-
|
|
13563
|
-
|
|
13564
|
-
|
|
15072
|
+
errors: Array<
|
|
15073
|
+
| {
|
|
15074
|
+
message: string
|
|
15075
|
+
is_connected_account_error: true
|
|
15076
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15077
|
+
error_code: 'account_disconnected'
|
|
15078
|
+
}
|
|
15079
|
+
| {
|
|
15080
|
+
message: string
|
|
15081
|
+
is_connected_account_error: true
|
|
15082
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15083
|
+
error_code: 'invalid_credentials'
|
|
15084
|
+
}
|
|
15085
|
+
>
|
|
13565
15086
|
warnings: Array<
|
|
13566
15087
|
| {
|
|
13567
15088
|
message: string
|
|
13568
|
-
|
|
15089
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15090
|
+
warning_code: 'scheduled_maintenance_window'
|
|
13569
15091
|
}
|
|
13570
15092
|
| {
|
|
13571
15093
|
message: string
|
|
@@ -13605,15 +15127,25 @@ export interface Routes {
|
|
|
13605
15127
|
| undefined
|
|
13606
15128
|
account_type?: string | undefined
|
|
13607
15129
|
account_type_display_name: string
|
|
13608
|
-
errors: Array<
|
|
13609
|
-
|
|
13610
|
-
|
|
13611
|
-
|
|
13612
|
-
|
|
15130
|
+
errors: Array<
|
|
15131
|
+
| {
|
|
15132
|
+
message: string
|
|
15133
|
+
is_connected_account_error: true
|
|
15134
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15135
|
+
error_code: 'account_disconnected'
|
|
15136
|
+
}
|
|
15137
|
+
| {
|
|
15138
|
+
message: string
|
|
15139
|
+
is_connected_account_error: true
|
|
15140
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15141
|
+
error_code: 'invalid_credentials'
|
|
15142
|
+
}
|
|
15143
|
+
>
|
|
13613
15144
|
warnings: Array<
|
|
13614
15145
|
| {
|
|
13615
15146
|
message: string
|
|
13616
|
-
|
|
15147
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15148
|
+
warning_code: 'scheduled_maintenance_window'
|
|
13617
15149
|
}
|
|
13618
15150
|
| {
|
|
13619
15151
|
message: string
|
|
@@ -13653,15 +15185,25 @@ export interface Routes {
|
|
|
13653
15185
|
| undefined
|
|
13654
15186
|
account_type?: string | undefined
|
|
13655
15187
|
account_type_display_name: string
|
|
13656
|
-
errors: Array<
|
|
13657
|
-
|
|
13658
|
-
|
|
13659
|
-
|
|
13660
|
-
|
|
15188
|
+
errors: Array<
|
|
15189
|
+
| {
|
|
15190
|
+
message: string
|
|
15191
|
+
is_connected_account_error: true
|
|
15192
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15193
|
+
error_code: 'account_disconnected'
|
|
15194
|
+
}
|
|
15195
|
+
| {
|
|
15196
|
+
message: string
|
|
15197
|
+
is_connected_account_error: true
|
|
15198
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15199
|
+
error_code: 'invalid_credentials'
|
|
15200
|
+
}
|
|
15201
|
+
>
|
|
13661
15202
|
warnings: Array<
|
|
13662
15203
|
| {
|
|
13663
15204
|
message: string
|
|
13664
|
-
|
|
15205
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15206
|
+
warning_code: 'scheduled_maintenance_window'
|
|
13665
15207
|
}
|
|
13666
15208
|
| {
|
|
13667
15209
|
message: string
|
|
@@ -14449,11 +15991,20 @@ export interface Routes {
|
|
|
14449
15991
|
error_code: 'subscription_required'
|
|
14450
15992
|
}
|
|
14451
15993
|
)
|
|
14452
|
-
|
|
|
14453
|
-
|
|
14454
|
-
|
|
14455
|
-
|
|
14456
|
-
|
|
15994
|
+
| (
|
|
15995
|
+
| {
|
|
15996
|
+
message: string
|
|
15997
|
+
is_connected_account_error: true
|
|
15998
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15999
|
+
error_code: 'account_disconnected'
|
|
16000
|
+
}
|
|
16001
|
+
| {
|
|
16002
|
+
message: string
|
|
16003
|
+
is_connected_account_error: true
|
|
16004
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16005
|
+
error_code: 'invalid_credentials'
|
|
16006
|
+
}
|
|
16007
|
+
)
|
|
14457
16008
|
>
|
|
14458
16009
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
14459
16010
|
warnings: Array<
|
|
@@ -15486,11 +17037,20 @@ export interface Routes {
|
|
|
15486
17037
|
error_code: 'subscription_required'
|
|
15487
17038
|
}
|
|
15488
17039
|
)
|
|
15489
|
-
|
|
|
15490
|
-
|
|
15491
|
-
|
|
15492
|
-
|
|
15493
|
-
|
|
17040
|
+
| (
|
|
17041
|
+
| {
|
|
17042
|
+
message: string
|
|
17043
|
+
is_connected_account_error: true
|
|
17044
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17045
|
+
error_code: 'account_disconnected'
|
|
17046
|
+
}
|
|
17047
|
+
| {
|
|
17048
|
+
message: string
|
|
17049
|
+
is_connected_account_error: true
|
|
17050
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17051
|
+
error_code: 'invalid_credentials'
|
|
17052
|
+
}
|
|
17053
|
+
)
|
|
15494
17054
|
>
|
|
15495
17055
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
15496
17056
|
warnings: Array<
|
|
@@ -15866,11 +17426,20 @@ export interface Routes {
|
|
|
15866
17426
|
error_code: 'subscription_required'
|
|
15867
17427
|
}
|
|
15868
17428
|
)
|
|
15869
|
-
|
|
|
15870
|
-
|
|
15871
|
-
|
|
15872
|
-
|
|
15873
|
-
|
|
17429
|
+
| (
|
|
17430
|
+
| {
|
|
17431
|
+
message: string
|
|
17432
|
+
is_connected_account_error: true
|
|
17433
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17434
|
+
error_code: 'account_disconnected'
|
|
17435
|
+
}
|
|
17436
|
+
| {
|
|
17437
|
+
message: string
|
|
17438
|
+
is_connected_account_error: true
|
|
17439
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17440
|
+
error_code: 'invalid_credentials'
|
|
17441
|
+
}
|
|
17442
|
+
)
|
|
15874
17443
|
>
|
|
15875
17444
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
15876
17445
|
warnings: Array<
|
|
@@ -16349,11 +17918,20 @@ export interface Routes {
|
|
|
16349
17918
|
error_code: 'subscription_required'
|
|
16350
17919
|
}
|
|
16351
17920
|
)
|
|
16352
|
-
|
|
|
16353
|
-
|
|
16354
|
-
|
|
16355
|
-
|
|
16356
|
-
|
|
17921
|
+
| (
|
|
17922
|
+
| {
|
|
17923
|
+
message: string
|
|
17924
|
+
is_connected_account_error: true
|
|
17925
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17926
|
+
error_code: 'account_disconnected'
|
|
17927
|
+
}
|
|
17928
|
+
| {
|
|
17929
|
+
message: string
|
|
17930
|
+
is_connected_account_error: true
|
|
17931
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17932
|
+
error_code: 'invalid_credentials'
|
|
17933
|
+
}
|
|
17934
|
+
)
|
|
16357
17935
|
>
|
|
16358
17936
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
16359
17937
|
warnings: Array<
|
|
@@ -20012,11 +21590,20 @@ export interface Routes {
|
|
|
20012
21590
|
error_code: 'subscription_required'
|
|
20013
21591
|
}
|
|
20014
21592
|
)
|
|
20015
|
-
|
|
|
20016
|
-
|
|
20017
|
-
|
|
20018
|
-
|
|
20019
|
-
|
|
21593
|
+
| (
|
|
21594
|
+
| {
|
|
21595
|
+
message: string
|
|
21596
|
+
is_connected_account_error: true
|
|
21597
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21598
|
+
error_code: 'account_disconnected'
|
|
21599
|
+
}
|
|
21600
|
+
| {
|
|
21601
|
+
message: string
|
|
21602
|
+
is_connected_account_error: true
|
|
21603
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21604
|
+
error_code: 'invalid_credentials'
|
|
21605
|
+
}
|
|
21606
|
+
)
|
|
20020
21607
|
>
|
|
20021
21608
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
20022
21609
|
warnings: Array<
|
|
@@ -20866,11 +22453,20 @@ export interface Routes {
|
|
|
20866
22453
|
error_code: 'subscription_required'
|
|
20867
22454
|
}
|
|
20868
22455
|
)
|
|
20869
|
-
|
|
|
20870
|
-
|
|
20871
|
-
|
|
20872
|
-
|
|
20873
|
-
|
|
22456
|
+
| (
|
|
22457
|
+
| {
|
|
22458
|
+
message: string
|
|
22459
|
+
is_connected_account_error: true
|
|
22460
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22461
|
+
error_code: 'account_disconnected'
|
|
22462
|
+
}
|
|
22463
|
+
| {
|
|
22464
|
+
message: string
|
|
22465
|
+
is_connected_account_error: true
|
|
22466
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22467
|
+
error_code: 'invalid_credentials'
|
|
22468
|
+
}
|
|
22469
|
+
)
|
|
20874
22470
|
>
|
|
20875
22471
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
20876
22472
|
warnings: Array<
|
|
@@ -21903,11 +23499,20 @@ export interface Routes {
|
|
|
21903
23499
|
error_code: 'subscription_required'
|
|
21904
23500
|
}
|
|
21905
23501
|
)
|
|
21906
|
-
|
|
|
21907
|
-
|
|
21908
|
-
|
|
21909
|
-
|
|
21910
|
-
|
|
23502
|
+
| (
|
|
23503
|
+
| {
|
|
23504
|
+
message: string
|
|
23505
|
+
is_connected_account_error: true
|
|
23506
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23507
|
+
error_code: 'account_disconnected'
|
|
23508
|
+
}
|
|
23509
|
+
| {
|
|
23510
|
+
message: string
|
|
23511
|
+
is_connected_account_error: true
|
|
23512
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23513
|
+
error_code: 'invalid_credentials'
|
|
23514
|
+
}
|
|
23515
|
+
)
|
|
21911
23516
|
>
|
|
21912
23517
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
21913
23518
|
warnings: Array<
|
|
@@ -22756,11 +24361,20 @@ export interface Routes {
|
|
|
22756
24361
|
error_code: 'subscription_required'
|
|
22757
24362
|
}
|
|
22758
24363
|
)
|
|
22759
|
-
|
|
|
22760
|
-
|
|
22761
|
-
|
|
22762
|
-
|
|
22763
|
-
|
|
24364
|
+
| (
|
|
24365
|
+
| {
|
|
24366
|
+
message: string
|
|
24367
|
+
is_connected_account_error: true
|
|
24368
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24369
|
+
error_code: 'account_disconnected'
|
|
24370
|
+
}
|
|
24371
|
+
| {
|
|
24372
|
+
message: string
|
|
24373
|
+
is_connected_account_error: true
|
|
24374
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24375
|
+
error_code: 'invalid_credentials'
|
|
24376
|
+
}
|
|
24377
|
+
)
|
|
22764
24378
|
>
|
|
22765
24379
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
22766
24380
|
warnings: Array<
|
|
@@ -25806,11 +27420,20 @@ export interface Routes {
|
|
|
25806
27420
|
error_code: 'subscription_required'
|
|
25807
27421
|
}
|
|
25808
27422
|
)
|
|
25809
|
-
|
|
|
25810
|
-
|
|
25811
|
-
|
|
25812
|
-
|
|
25813
|
-
|
|
27423
|
+
| (
|
|
27424
|
+
| {
|
|
27425
|
+
message: string
|
|
27426
|
+
is_connected_account_error: true
|
|
27427
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27428
|
+
error_code: 'account_disconnected'
|
|
27429
|
+
}
|
|
27430
|
+
| {
|
|
27431
|
+
message: string
|
|
27432
|
+
is_connected_account_error: true
|
|
27433
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27434
|
+
error_code: 'invalid_credentials'
|
|
27435
|
+
}
|
|
27436
|
+
)
|
|
25814
27437
|
>
|
|
25815
27438
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
25816
27439
|
warnings: Array<
|
|
@@ -26659,11 +28282,20 @@ export interface Routes {
|
|
|
26659
28282
|
error_code: 'subscription_required'
|
|
26660
28283
|
}
|
|
26661
28284
|
)
|
|
26662
|
-
|
|
|
26663
|
-
|
|
26664
|
-
|
|
26665
|
-
|
|
26666
|
-
|
|
28285
|
+
| (
|
|
28286
|
+
| {
|
|
28287
|
+
message: string
|
|
28288
|
+
is_connected_account_error: true
|
|
28289
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28290
|
+
error_code: 'account_disconnected'
|
|
28291
|
+
}
|
|
28292
|
+
| {
|
|
28293
|
+
message: string
|
|
28294
|
+
is_connected_account_error: true
|
|
28295
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28296
|
+
error_code: 'invalid_credentials'
|
|
28297
|
+
}
|
|
28298
|
+
)
|
|
26667
28299
|
>
|
|
26668
28300
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
26669
28301
|
warnings: Array<
|
|
@@ -29947,11 +31579,20 @@ export interface Routes {
|
|
|
29947
31579
|
error_code: 'subscription_required'
|
|
29948
31580
|
}
|
|
29949
31581
|
)
|
|
29950
|
-
|
|
|
29951
|
-
|
|
29952
|
-
|
|
29953
|
-
|
|
29954
|
-
|
|
31582
|
+
| (
|
|
31583
|
+
| {
|
|
31584
|
+
message: string
|
|
31585
|
+
is_connected_account_error: true
|
|
31586
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31587
|
+
error_code: 'account_disconnected'
|
|
31588
|
+
}
|
|
31589
|
+
| {
|
|
31590
|
+
message: string
|
|
31591
|
+
is_connected_account_error: true
|
|
31592
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31593
|
+
error_code: 'invalid_credentials'
|
|
31594
|
+
}
|
|
31595
|
+
)
|
|
29955
31596
|
>
|
|
29956
31597
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
29957
31598
|
warnings: Array<
|
|
@@ -30195,11 +31836,20 @@ export interface Routes {
|
|
|
30195
31836
|
error_code: 'subscription_required'
|
|
30196
31837
|
}
|
|
30197
31838
|
)
|
|
30198
|
-
|
|
|
30199
|
-
|
|
30200
|
-
|
|
30201
|
-
|
|
30202
|
-
|
|
31839
|
+
| (
|
|
31840
|
+
| {
|
|
31841
|
+
message: string
|
|
31842
|
+
is_connected_account_error: true
|
|
31843
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31844
|
+
error_code: 'account_disconnected'
|
|
31845
|
+
}
|
|
31846
|
+
| {
|
|
31847
|
+
message: string
|
|
31848
|
+
is_connected_account_error: true
|
|
31849
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31850
|
+
error_code: 'invalid_credentials'
|
|
31851
|
+
}
|
|
31852
|
+
)
|
|
30203
31853
|
>
|
|
30204
31854
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
30205
31855
|
warnings: Array<
|
|
@@ -33095,11 +34745,20 @@ export interface Routes {
|
|
|
33095
34745
|
error_code: 'subscription_required'
|
|
33096
34746
|
}
|
|
33097
34747
|
)
|
|
33098
|
-
|
|
|
33099
|
-
|
|
33100
|
-
|
|
33101
|
-
|
|
33102
|
-
|
|
34748
|
+
| (
|
|
34749
|
+
| {
|
|
34750
|
+
message: string
|
|
34751
|
+
is_connected_account_error: true
|
|
34752
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
34753
|
+
error_code: 'account_disconnected'
|
|
34754
|
+
}
|
|
34755
|
+
| {
|
|
34756
|
+
message: string
|
|
34757
|
+
is_connected_account_error: true
|
|
34758
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
34759
|
+
error_code: 'invalid_credentials'
|
|
34760
|
+
}
|
|
34761
|
+
)
|
|
33103
34762
|
>
|
|
33104
34763
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
33105
34764
|
warnings: Array<
|
|
@@ -36126,11 +37785,20 @@ export interface Routes {
|
|
|
36126
37785
|
error_code: 'subscription_required'
|
|
36127
37786
|
}
|
|
36128
37787
|
)
|
|
36129
|
-
|
|
|
36130
|
-
|
|
36131
|
-
|
|
36132
|
-
|
|
36133
|
-
|
|
37788
|
+
| (
|
|
37789
|
+
| {
|
|
37790
|
+
message: string
|
|
37791
|
+
is_connected_account_error: true
|
|
37792
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37793
|
+
error_code: 'account_disconnected'
|
|
37794
|
+
}
|
|
37795
|
+
| {
|
|
37796
|
+
message: string
|
|
37797
|
+
is_connected_account_error: true
|
|
37798
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37799
|
+
error_code: 'invalid_credentials'
|
|
37800
|
+
}
|
|
37801
|
+
)
|
|
36134
37802
|
>
|
|
36135
37803
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
36136
37804
|
warnings: Array<
|
|
@@ -36979,11 +38647,20 @@ export interface Routes {
|
|
|
36979
38647
|
error_code: 'subscription_required'
|
|
36980
38648
|
}
|
|
36981
38649
|
)
|
|
36982
|
-
|
|
|
36983
|
-
|
|
36984
|
-
|
|
36985
|
-
|
|
36986
|
-
|
|
38650
|
+
| (
|
|
38651
|
+
| {
|
|
38652
|
+
message: string
|
|
38653
|
+
is_connected_account_error: true
|
|
38654
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38655
|
+
error_code: 'account_disconnected'
|
|
38656
|
+
}
|
|
38657
|
+
| {
|
|
38658
|
+
message: string
|
|
38659
|
+
is_connected_account_error: true
|
|
38660
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38661
|
+
error_code: 'invalid_credentials'
|
|
38662
|
+
}
|
|
38663
|
+
)
|
|
36987
38664
|
>
|
|
36988
38665
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
36989
38666
|
warnings: Array<
|
|
@@ -41314,11 +42991,20 @@ export interface Routes {
|
|
|
41314
42991
|
error_code: 'subscription_required'
|
|
41315
42992
|
}
|
|
41316
42993
|
)
|
|
41317
|
-
|
|
|
41318
|
-
|
|
41319
|
-
|
|
41320
|
-
|
|
41321
|
-
|
|
42994
|
+
| (
|
|
42995
|
+
| {
|
|
42996
|
+
message: string
|
|
42997
|
+
is_connected_account_error: true
|
|
42998
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42999
|
+
error_code: 'account_disconnected'
|
|
43000
|
+
}
|
|
43001
|
+
| {
|
|
43002
|
+
message: string
|
|
43003
|
+
is_connected_account_error: true
|
|
43004
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43005
|
+
error_code: 'invalid_credentials'
|
|
43006
|
+
}
|
|
43007
|
+
)
|
|
41322
43008
|
>
|
|
41323
43009
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
41324
43010
|
warnings: Array<
|
|
@@ -42169,11 +43855,20 @@ export interface Routes {
|
|
|
42169
43855
|
error_code: 'subscription_required'
|
|
42170
43856
|
}
|
|
42171
43857
|
)
|
|
42172
|
-
|
|
|
42173
|
-
|
|
42174
|
-
|
|
42175
|
-
|
|
42176
|
-
|
|
43858
|
+
| (
|
|
43859
|
+
| {
|
|
43860
|
+
message: string
|
|
43861
|
+
is_connected_account_error: true
|
|
43862
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43863
|
+
error_code: 'account_disconnected'
|
|
43864
|
+
}
|
|
43865
|
+
| {
|
|
43866
|
+
message: string
|
|
43867
|
+
is_connected_account_error: true
|
|
43868
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43869
|
+
error_code: 'invalid_credentials'
|
|
43870
|
+
}
|
|
43871
|
+
)
|
|
42177
43872
|
>
|
|
42178
43873
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
42179
43874
|
warnings: Array<
|