@seamapi/types 1.332.1 → 1.334.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 +1541 -161
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4917 -923
- 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/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +20 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js +7 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +216 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +94 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +122 -0
- 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 +309 -164
- package/lib/seam/connect/openapi.js +1346 -104
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2391 -310
- 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/acs/acs-credential.ts +7 -1
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +12 -0
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +32 -9
- package/src/lib/seam/connect/openapi.ts +1518 -173
- package/src/lib/seam/connect/route-types.ts +3016 -297
|
@@ -250,6 +250,18 @@ export interface Routes {
|
|
|
250
250
|
credential_id?: string | undefined
|
|
251
251
|
}
|
|
252
252
|
| undefined
|
|
253
|
+
/** Vostio-specific metadata for the credential. */
|
|
254
|
+
assa_abloy_vostio_metadata?:
|
|
255
|
+
| {
|
|
256
|
+
override_guest_acs_entrance_ids?:
|
|
257
|
+
| string[]
|
|
258
|
+
| undefined
|
|
259
|
+
key_id?: string | undefined
|
|
260
|
+
key_issuing_request_id?: string | undefined
|
|
261
|
+
door_names?: string[] | undefined
|
|
262
|
+
endpoint_id?: string | undefined
|
|
263
|
+
}
|
|
264
|
+
| undefined
|
|
253
265
|
is_managed: true
|
|
254
266
|
}
|
|
255
267
|
| {
|
|
@@ -374,6 +386,18 @@ export interface Routes {
|
|
|
374
386
|
credential_id?: string | undefined
|
|
375
387
|
}
|
|
376
388
|
| undefined
|
|
389
|
+
/** Vostio-specific metadata for the credential. */
|
|
390
|
+
assa_abloy_vostio_metadata?:
|
|
391
|
+
| {
|
|
392
|
+
override_guest_acs_entrance_ids?:
|
|
393
|
+
| string[]
|
|
394
|
+
| undefined
|
|
395
|
+
key_id?: string | undefined
|
|
396
|
+
key_issuing_request_id?: string | undefined
|
|
397
|
+
door_names?: string[] | undefined
|
|
398
|
+
endpoint_id?: string | undefined
|
|
399
|
+
}
|
|
400
|
+
| undefined
|
|
377
401
|
is_managed: false
|
|
378
402
|
}
|
|
379
403
|
)
|
|
@@ -545,6 +569,16 @@ export interface Routes {
|
|
|
545
569
|
credential_id?: string | undefined
|
|
546
570
|
}
|
|
547
571
|
| undefined
|
|
572
|
+
/** Vostio-specific metadata for the credential. */
|
|
573
|
+
assa_abloy_vostio_metadata?:
|
|
574
|
+
| {
|
|
575
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
576
|
+
key_id?: string | undefined
|
|
577
|
+
key_issuing_request_id?: string | undefined
|
|
578
|
+
door_names?: string[] | undefined
|
|
579
|
+
endpoint_id?: string | undefined
|
|
580
|
+
}
|
|
581
|
+
| undefined
|
|
548
582
|
is_managed: true
|
|
549
583
|
}
|
|
550
584
|
| {
|
|
@@ -669,6 +703,16 @@ export interface Routes {
|
|
|
669
703
|
credential_id?: string | undefined
|
|
670
704
|
}
|
|
671
705
|
| undefined
|
|
706
|
+
/** Vostio-specific metadata for the credential. */
|
|
707
|
+
assa_abloy_vostio_metadata?:
|
|
708
|
+
| {
|
|
709
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
710
|
+
key_id?: string | undefined
|
|
711
|
+
key_issuing_request_id?: string | undefined
|
|
712
|
+
door_names?: string[] | undefined
|
|
713
|
+
endpoint_id?: string | undefined
|
|
714
|
+
}
|
|
715
|
+
| undefined
|
|
672
716
|
is_managed: false
|
|
673
717
|
}
|
|
674
718
|
}
|
|
@@ -1023,11 +1067,122 @@ export interface Routes {
|
|
|
1023
1067
|
created_at: string
|
|
1024
1068
|
/** 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
1069
|
errors: Array<
|
|
1026
|
-
|
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1070
|
+
| (
|
|
1071
|
+
| {
|
|
1072
|
+
message: string
|
|
1073
|
+
is_access_code_error: true
|
|
1074
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1075
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
1076
|
+
}
|
|
1077
|
+
| {
|
|
1078
|
+
message: string
|
|
1079
|
+
is_access_code_error: true
|
|
1080
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1081
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
1082
|
+
}
|
|
1083
|
+
| {
|
|
1084
|
+
message: string
|
|
1085
|
+
is_access_code_error: true
|
|
1086
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1087
|
+
error_code: 'failed_to_set_on_device'
|
|
1088
|
+
}
|
|
1089
|
+
| {
|
|
1090
|
+
message: string
|
|
1091
|
+
is_access_code_error: true
|
|
1092
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1093
|
+
error_code: 'failed_to_remove_from_device'
|
|
1094
|
+
}
|
|
1095
|
+
| {
|
|
1096
|
+
message: string
|
|
1097
|
+
is_access_code_error: true
|
|
1098
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1099
|
+
error_code: 'duplicate_code_on_device'
|
|
1100
|
+
}
|
|
1101
|
+
| {
|
|
1102
|
+
message: string
|
|
1103
|
+
is_access_code_error: true
|
|
1104
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1105
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
1106
|
+
}
|
|
1107
|
+
| {
|
|
1108
|
+
message: string
|
|
1109
|
+
is_access_code_error: true
|
|
1110
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1111
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
1112
|
+
}
|
|
1113
|
+
| {
|
|
1114
|
+
message: string
|
|
1115
|
+
is_access_code_error: true
|
|
1116
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1117
|
+
error_code: 'igloohome_bridge_offline'
|
|
1118
|
+
}
|
|
1119
|
+
| {
|
|
1120
|
+
message: string
|
|
1121
|
+
is_access_code_error: true
|
|
1122
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1123
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
1124
|
+
}
|
|
1125
|
+
| {
|
|
1126
|
+
message: string
|
|
1127
|
+
is_access_code_error: true
|
|
1128
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1129
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
1130
|
+
}
|
|
1131
|
+
| {
|
|
1132
|
+
message: string
|
|
1133
|
+
is_access_code_error: true
|
|
1134
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1135
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
1136
|
+
}
|
|
1137
|
+
| {
|
|
1138
|
+
message: string
|
|
1139
|
+
is_access_code_error: true
|
|
1140
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1141
|
+
error_code: 'code_modified_external_to_seam'
|
|
1142
|
+
}
|
|
1143
|
+
| {
|
|
1144
|
+
message: string
|
|
1145
|
+
is_access_code_error: true
|
|
1146
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1147
|
+
error_code: 'august_lock_invalid_code_length'
|
|
1148
|
+
}
|
|
1149
|
+
| {
|
|
1150
|
+
message: string
|
|
1151
|
+
is_access_code_error: true
|
|
1152
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1153
|
+
error_code: 'august_device_programming_delay'
|
|
1154
|
+
}
|
|
1155
|
+
| {
|
|
1156
|
+
message: string
|
|
1157
|
+
is_access_code_error: true
|
|
1158
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1159
|
+
error_code: 'august_device_slots_full'
|
|
1160
|
+
}
|
|
1161
|
+
| {
|
|
1162
|
+
message: string
|
|
1163
|
+
is_access_code_error: true
|
|
1164
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1165
|
+
error_code: 'august_lock_missing_keypad'
|
|
1166
|
+
}
|
|
1167
|
+
| {
|
|
1168
|
+
message: string
|
|
1169
|
+
is_access_code_error: true
|
|
1170
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1171
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
1172
|
+
}
|
|
1173
|
+
| {
|
|
1174
|
+
message: string
|
|
1175
|
+
is_access_code_error: true
|
|
1176
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1177
|
+
error_code: 'hubitat_device_programming_delay'
|
|
1178
|
+
}
|
|
1179
|
+
| {
|
|
1180
|
+
message: string
|
|
1181
|
+
is_access_code_error: true
|
|
1182
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1183
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
1184
|
+
}
|
|
1185
|
+
)
|
|
1031
1186
|
| (
|
|
1032
1187
|
| {
|
|
1033
1188
|
message: string
|
|
@@ -1108,17 +1263,74 @@ export interface Routes {
|
|
|
1108
1263
|
error_code: 'subscription_required'
|
|
1109
1264
|
}
|
|
1110
1265
|
)
|
|
1266
|
+
| (
|
|
1267
|
+
| {
|
|
1268
|
+
message: string
|
|
1269
|
+
is_connected_account_error: true
|
|
1270
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1271
|
+
error_code: 'account_disconnected'
|
|
1272
|
+
}
|
|
1273
|
+
| {
|
|
1274
|
+
message: string
|
|
1275
|
+
is_connected_account_error: true
|
|
1276
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1277
|
+
error_code: 'invalid_credentials'
|
|
1278
|
+
}
|
|
1279
|
+
)
|
|
1280
|
+
>
|
|
1281
|
+
/** 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. */
|
|
1282
|
+
warnings: Array<
|
|
1111
1283
|
| {
|
|
1112
1284
|
message: string
|
|
1113
|
-
|
|
1114
|
-
|
|
1285
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1286
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
1287
|
+
}
|
|
1288
|
+
| {
|
|
1289
|
+
message: string
|
|
1290
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1291
|
+
warning_code: 'schlage_detected_duplicate'
|
|
1292
|
+
}
|
|
1293
|
+
| {
|
|
1294
|
+
message: string
|
|
1295
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1296
|
+
warning_code: 'schlage_creation_outage'
|
|
1297
|
+
}
|
|
1298
|
+
| {
|
|
1299
|
+
message: string
|
|
1300
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1301
|
+
warning_code: 'code_modified_external_to_seam'
|
|
1302
|
+
}
|
|
1303
|
+
| {
|
|
1304
|
+
message: string
|
|
1305
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1306
|
+
warning_code: 'delay_in_setting_on_device'
|
|
1307
|
+
}
|
|
1308
|
+
| {
|
|
1309
|
+
message: string
|
|
1310
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1311
|
+
warning_code: 'delay_in_removing_from_device'
|
|
1312
|
+
}
|
|
1313
|
+
| {
|
|
1314
|
+
message: string
|
|
1315
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1316
|
+
warning_code: 'third_party_integration_detected'
|
|
1317
|
+
}
|
|
1318
|
+
| {
|
|
1319
|
+
message: string
|
|
1320
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1321
|
+
warning_code: 'august_device_programming_delay'
|
|
1322
|
+
}
|
|
1323
|
+
| {
|
|
1324
|
+
message: string
|
|
1325
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1326
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
1327
|
+
}
|
|
1328
|
+
| {
|
|
1329
|
+
message: string
|
|
1330
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1331
|
+
warning_code: 'management_transferred'
|
|
1115
1332
|
}
|
|
1116
1333
|
>
|
|
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
1334
|
/** Indicates whether Seam manages the access code. */
|
|
1123
1335
|
is_managed: true
|
|
1124
1336
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -1190,11 +1402,122 @@ export interface Routes {
|
|
|
1190
1402
|
created_at: string
|
|
1191
1403
|
/** 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
1404
|
errors: Array<
|
|
1193
|
-
|
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1405
|
+
| (
|
|
1406
|
+
| {
|
|
1407
|
+
message: string
|
|
1408
|
+
is_access_code_error: true
|
|
1409
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1410
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
1411
|
+
}
|
|
1412
|
+
| {
|
|
1413
|
+
message: string
|
|
1414
|
+
is_access_code_error: true
|
|
1415
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1416
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
1417
|
+
}
|
|
1418
|
+
| {
|
|
1419
|
+
message: string
|
|
1420
|
+
is_access_code_error: true
|
|
1421
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1422
|
+
error_code: 'failed_to_set_on_device'
|
|
1423
|
+
}
|
|
1424
|
+
| {
|
|
1425
|
+
message: string
|
|
1426
|
+
is_access_code_error: true
|
|
1427
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1428
|
+
error_code: 'failed_to_remove_from_device'
|
|
1429
|
+
}
|
|
1430
|
+
| {
|
|
1431
|
+
message: string
|
|
1432
|
+
is_access_code_error: true
|
|
1433
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1434
|
+
error_code: 'duplicate_code_on_device'
|
|
1435
|
+
}
|
|
1436
|
+
| {
|
|
1437
|
+
message: string
|
|
1438
|
+
is_access_code_error: true
|
|
1439
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1440
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
1441
|
+
}
|
|
1442
|
+
| {
|
|
1443
|
+
message: string
|
|
1444
|
+
is_access_code_error: true
|
|
1445
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1446
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
1447
|
+
}
|
|
1448
|
+
| {
|
|
1449
|
+
message: string
|
|
1450
|
+
is_access_code_error: true
|
|
1451
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1452
|
+
error_code: 'igloohome_bridge_offline'
|
|
1453
|
+
}
|
|
1454
|
+
| {
|
|
1455
|
+
message: string
|
|
1456
|
+
is_access_code_error: true
|
|
1457
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1458
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
1459
|
+
}
|
|
1460
|
+
| {
|
|
1461
|
+
message: string
|
|
1462
|
+
is_access_code_error: true
|
|
1463
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1464
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
1465
|
+
}
|
|
1466
|
+
| {
|
|
1467
|
+
message: string
|
|
1468
|
+
is_access_code_error: true
|
|
1469
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1470
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
1471
|
+
}
|
|
1472
|
+
| {
|
|
1473
|
+
message: string
|
|
1474
|
+
is_access_code_error: true
|
|
1475
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1476
|
+
error_code: 'code_modified_external_to_seam'
|
|
1477
|
+
}
|
|
1478
|
+
| {
|
|
1479
|
+
message: string
|
|
1480
|
+
is_access_code_error: true
|
|
1481
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1482
|
+
error_code: 'august_lock_invalid_code_length'
|
|
1483
|
+
}
|
|
1484
|
+
| {
|
|
1485
|
+
message: string
|
|
1486
|
+
is_access_code_error: true
|
|
1487
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1488
|
+
error_code: 'august_device_programming_delay'
|
|
1489
|
+
}
|
|
1490
|
+
| {
|
|
1491
|
+
message: string
|
|
1492
|
+
is_access_code_error: true
|
|
1493
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1494
|
+
error_code: 'august_device_slots_full'
|
|
1495
|
+
}
|
|
1496
|
+
| {
|
|
1497
|
+
message: string
|
|
1498
|
+
is_access_code_error: true
|
|
1499
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1500
|
+
error_code: 'august_lock_missing_keypad'
|
|
1501
|
+
}
|
|
1502
|
+
| {
|
|
1503
|
+
message: string
|
|
1504
|
+
is_access_code_error: true
|
|
1505
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1506
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
1507
|
+
}
|
|
1508
|
+
| {
|
|
1509
|
+
message: string
|
|
1510
|
+
is_access_code_error: true
|
|
1511
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1512
|
+
error_code: 'hubitat_device_programming_delay'
|
|
1513
|
+
}
|
|
1514
|
+
| {
|
|
1515
|
+
message: string
|
|
1516
|
+
is_access_code_error: true
|
|
1517
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1518
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
1519
|
+
}
|
|
1520
|
+
)
|
|
1198
1521
|
| (
|
|
1199
1522
|
| {
|
|
1200
1523
|
message: string
|
|
@@ -1275,17 +1598,74 @@ export interface Routes {
|
|
|
1275
1598
|
error_code: 'subscription_required'
|
|
1276
1599
|
}
|
|
1277
1600
|
)
|
|
1601
|
+
| (
|
|
1602
|
+
| {
|
|
1603
|
+
message: string
|
|
1604
|
+
is_connected_account_error: true
|
|
1605
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1606
|
+
error_code: 'account_disconnected'
|
|
1607
|
+
}
|
|
1608
|
+
| {
|
|
1609
|
+
message: string
|
|
1610
|
+
is_connected_account_error: true
|
|
1611
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1612
|
+
error_code: 'invalid_credentials'
|
|
1613
|
+
}
|
|
1614
|
+
)
|
|
1615
|
+
>
|
|
1616
|
+
/** 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. */
|
|
1617
|
+
warnings: Array<
|
|
1278
1618
|
| {
|
|
1279
1619
|
message: string
|
|
1280
|
-
|
|
1281
|
-
|
|
1620
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1621
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
1622
|
+
}
|
|
1623
|
+
| {
|
|
1624
|
+
message: string
|
|
1625
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1626
|
+
warning_code: 'schlage_detected_duplicate'
|
|
1627
|
+
}
|
|
1628
|
+
| {
|
|
1629
|
+
message: string
|
|
1630
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1631
|
+
warning_code: 'schlage_creation_outage'
|
|
1632
|
+
}
|
|
1633
|
+
| {
|
|
1634
|
+
message: string
|
|
1635
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1636
|
+
warning_code: 'code_modified_external_to_seam'
|
|
1637
|
+
}
|
|
1638
|
+
| {
|
|
1639
|
+
message: string
|
|
1640
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1641
|
+
warning_code: 'delay_in_setting_on_device'
|
|
1642
|
+
}
|
|
1643
|
+
| {
|
|
1644
|
+
message: string
|
|
1645
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1646
|
+
warning_code: 'delay_in_removing_from_device'
|
|
1647
|
+
}
|
|
1648
|
+
| {
|
|
1649
|
+
message: string
|
|
1650
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1651
|
+
warning_code: 'third_party_integration_detected'
|
|
1652
|
+
}
|
|
1653
|
+
| {
|
|
1654
|
+
message: string
|
|
1655
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1656
|
+
warning_code: 'august_device_programming_delay'
|
|
1657
|
+
}
|
|
1658
|
+
| {
|
|
1659
|
+
message: string
|
|
1660
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1661
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
1662
|
+
}
|
|
1663
|
+
| {
|
|
1664
|
+
message: string
|
|
1665
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1666
|
+
warning_code: 'management_transferred'
|
|
1282
1667
|
}
|
|
1283
1668
|
>
|
|
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
1669
|
/** Indicates whether Seam manages the access code. */
|
|
1290
1670
|
is_managed: true
|
|
1291
1671
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -1548,6 +1928,18 @@ export interface Routes {
|
|
|
1548
1928
|
credential_id?: string | undefined
|
|
1549
1929
|
}
|
|
1550
1930
|
| undefined
|
|
1931
|
+
/** Vostio-specific metadata for the credential. */
|
|
1932
|
+
assa_abloy_vostio_metadata?:
|
|
1933
|
+
| {
|
|
1934
|
+
override_guest_acs_entrance_ids?:
|
|
1935
|
+
| string[]
|
|
1936
|
+
| undefined
|
|
1937
|
+
key_id?: string | undefined
|
|
1938
|
+
key_issuing_request_id?: string | undefined
|
|
1939
|
+
door_names?: string[] | undefined
|
|
1940
|
+
endpoint_id?: string | undefined
|
|
1941
|
+
}
|
|
1942
|
+
| undefined
|
|
1551
1943
|
is_managed: true
|
|
1552
1944
|
}
|
|
1553
1945
|
| {
|
|
@@ -1672,6 +2064,18 @@ export interface Routes {
|
|
|
1672
2064
|
credential_id?: string | undefined
|
|
1673
2065
|
}
|
|
1674
2066
|
| undefined
|
|
2067
|
+
/** Vostio-specific metadata for the credential. */
|
|
2068
|
+
assa_abloy_vostio_metadata?:
|
|
2069
|
+
| {
|
|
2070
|
+
override_guest_acs_entrance_ids?:
|
|
2071
|
+
| string[]
|
|
2072
|
+
| undefined
|
|
2073
|
+
key_id?: string | undefined
|
|
2074
|
+
key_issuing_request_id?: string | undefined
|
|
2075
|
+
door_names?: string[] | undefined
|
|
2076
|
+
endpoint_id?: string | undefined
|
|
2077
|
+
}
|
|
2078
|
+
| undefined
|
|
1675
2079
|
is_managed: false
|
|
1676
2080
|
}
|
|
1677
2081
|
)
|
|
@@ -1843,6 +2247,16 @@ export interface Routes {
|
|
|
1843
2247
|
credential_id?: string | undefined
|
|
1844
2248
|
}
|
|
1845
2249
|
| undefined
|
|
2250
|
+
/** Vostio-specific metadata for the credential. */
|
|
2251
|
+
assa_abloy_vostio_metadata?:
|
|
2252
|
+
| {
|
|
2253
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
2254
|
+
key_id?: string | undefined
|
|
2255
|
+
key_issuing_request_id?: string | undefined
|
|
2256
|
+
door_names?: string[] | undefined
|
|
2257
|
+
endpoint_id?: string | undefined
|
|
2258
|
+
}
|
|
2259
|
+
| undefined
|
|
1846
2260
|
is_managed: true
|
|
1847
2261
|
}
|
|
1848
2262
|
| {
|
|
@@ -1967,6 +2381,16 @@ export interface Routes {
|
|
|
1967
2381
|
credential_id?: string | undefined
|
|
1968
2382
|
}
|
|
1969
2383
|
| undefined
|
|
2384
|
+
/** Vostio-specific metadata for the credential. */
|
|
2385
|
+
assa_abloy_vostio_metadata?:
|
|
2386
|
+
| {
|
|
2387
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
2388
|
+
key_id?: string | undefined
|
|
2389
|
+
key_issuing_request_id?: string | undefined
|
|
2390
|
+
door_names?: string[] | undefined
|
|
2391
|
+
endpoint_id?: string | undefined
|
|
2392
|
+
}
|
|
2393
|
+
| undefined
|
|
1970
2394
|
is_managed: false
|
|
1971
2395
|
}
|
|
1972
2396
|
}
|
|
@@ -2351,11 +2775,122 @@ export interface Routes {
|
|
|
2351
2775
|
created_at: string
|
|
2352
2776
|
/** 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
2777
|
errors: Array<
|
|
2354
|
-
|
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2778
|
+
| (
|
|
2779
|
+
| {
|
|
2780
|
+
message: string
|
|
2781
|
+
is_access_code_error: true
|
|
2782
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2783
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
2784
|
+
}
|
|
2785
|
+
| {
|
|
2786
|
+
message: string
|
|
2787
|
+
is_access_code_error: true
|
|
2788
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2789
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
2790
|
+
}
|
|
2791
|
+
| {
|
|
2792
|
+
message: string
|
|
2793
|
+
is_access_code_error: true
|
|
2794
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2795
|
+
error_code: 'failed_to_set_on_device'
|
|
2796
|
+
}
|
|
2797
|
+
| {
|
|
2798
|
+
message: string
|
|
2799
|
+
is_access_code_error: true
|
|
2800
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2801
|
+
error_code: 'failed_to_remove_from_device'
|
|
2802
|
+
}
|
|
2803
|
+
| {
|
|
2804
|
+
message: string
|
|
2805
|
+
is_access_code_error: true
|
|
2806
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2807
|
+
error_code: 'duplicate_code_on_device'
|
|
2808
|
+
}
|
|
2809
|
+
| {
|
|
2810
|
+
message: string
|
|
2811
|
+
is_access_code_error: true
|
|
2812
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2813
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
2814
|
+
}
|
|
2815
|
+
| {
|
|
2816
|
+
message: string
|
|
2817
|
+
is_access_code_error: true
|
|
2818
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2819
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
2820
|
+
}
|
|
2821
|
+
| {
|
|
2822
|
+
message: string
|
|
2823
|
+
is_access_code_error: true
|
|
2824
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2825
|
+
error_code: 'igloohome_bridge_offline'
|
|
2826
|
+
}
|
|
2827
|
+
| {
|
|
2828
|
+
message: string
|
|
2829
|
+
is_access_code_error: true
|
|
2830
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2831
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
2832
|
+
}
|
|
2833
|
+
| {
|
|
2834
|
+
message: string
|
|
2835
|
+
is_access_code_error: true
|
|
2836
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2837
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
2838
|
+
}
|
|
2839
|
+
| {
|
|
2840
|
+
message: string
|
|
2841
|
+
is_access_code_error: true
|
|
2842
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2843
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
2844
|
+
}
|
|
2845
|
+
| {
|
|
2846
|
+
message: string
|
|
2847
|
+
is_access_code_error: true
|
|
2848
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2849
|
+
error_code: 'code_modified_external_to_seam'
|
|
2850
|
+
}
|
|
2851
|
+
| {
|
|
2852
|
+
message: string
|
|
2853
|
+
is_access_code_error: true
|
|
2854
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2855
|
+
error_code: 'august_lock_invalid_code_length'
|
|
2856
|
+
}
|
|
2857
|
+
| {
|
|
2858
|
+
message: string
|
|
2859
|
+
is_access_code_error: true
|
|
2860
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2861
|
+
error_code: 'august_device_programming_delay'
|
|
2862
|
+
}
|
|
2863
|
+
| {
|
|
2864
|
+
message: string
|
|
2865
|
+
is_access_code_error: true
|
|
2866
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2867
|
+
error_code: 'august_device_slots_full'
|
|
2868
|
+
}
|
|
2869
|
+
| {
|
|
2870
|
+
message: string
|
|
2871
|
+
is_access_code_error: true
|
|
2872
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2873
|
+
error_code: 'august_lock_missing_keypad'
|
|
2874
|
+
}
|
|
2875
|
+
| {
|
|
2876
|
+
message: string
|
|
2877
|
+
is_access_code_error: true
|
|
2878
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2879
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
2880
|
+
}
|
|
2881
|
+
| {
|
|
2882
|
+
message: string
|
|
2883
|
+
is_access_code_error: true
|
|
2884
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2885
|
+
error_code: 'hubitat_device_programming_delay'
|
|
2886
|
+
}
|
|
2887
|
+
| {
|
|
2888
|
+
message: string
|
|
2889
|
+
is_access_code_error: true
|
|
2890
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2891
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
2892
|
+
}
|
|
2893
|
+
)
|
|
2359
2894
|
| (
|
|
2360
2895
|
| {
|
|
2361
2896
|
message: string
|
|
@@ -2436,17 +2971,74 @@ export interface Routes {
|
|
|
2436
2971
|
error_code: 'subscription_required'
|
|
2437
2972
|
}
|
|
2438
2973
|
)
|
|
2974
|
+
| (
|
|
2975
|
+
| {
|
|
2976
|
+
message: string
|
|
2977
|
+
is_connected_account_error: true
|
|
2978
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2979
|
+
error_code: 'account_disconnected'
|
|
2980
|
+
}
|
|
2981
|
+
| {
|
|
2982
|
+
message: string
|
|
2983
|
+
is_connected_account_error: true
|
|
2984
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2985
|
+
error_code: 'invalid_credentials'
|
|
2986
|
+
}
|
|
2987
|
+
)
|
|
2988
|
+
>
|
|
2989
|
+
/** 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. */
|
|
2990
|
+
warnings: Array<
|
|
2439
2991
|
| {
|
|
2440
2992
|
message: string
|
|
2441
|
-
|
|
2442
|
-
|
|
2993
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2994
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
2995
|
+
}
|
|
2996
|
+
| {
|
|
2997
|
+
message: string
|
|
2998
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2999
|
+
warning_code: 'schlage_detected_duplicate'
|
|
3000
|
+
}
|
|
3001
|
+
| {
|
|
3002
|
+
message: string
|
|
3003
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3004
|
+
warning_code: 'schlage_creation_outage'
|
|
3005
|
+
}
|
|
3006
|
+
| {
|
|
3007
|
+
message: string
|
|
3008
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3009
|
+
warning_code: 'code_modified_external_to_seam'
|
|
3010
|
+
}
|
|
3011
|
+
| {
|
|
3012
|
+
message: string
|
|
3013
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3014
|
+
warning_code: 'delay_in_setting_on_device'
|
|
3015
|
+
}
|
|
3016
|
+
| {
|
|
3017
|
+
message: string
|
|
3018
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3019
|
+
warning_code: 'delay_in_removing_from_device'
|
|
3020
|
+
}
|
|
3021
|
+
| {
|
|
3022
|
+
message: string
|
|
3023
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3024
|
+
warning_code: 'third_party_integration_detected'
|
|
3025
|
+
}
|
|
3026
|
+
| {
|
|
3027
|
+
message: string
|
|
3028
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3029
|
+
warning_code: 'august_device_programming_delay'
|
|
3030
|
+
}
|
|
3031
|
+
| {
|
|
3032
|
+
message: string
|
|
3033
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3034
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3035
|
+
}
|
|
3036
|
+
| {
|
|
3037
|
+
message: string
|
|
3038
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3039
|
+
warning_code: 'management_transferred'
|
|
2443
3040
|
}
|
|
2444
3041
|
>
|
|
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
3042
|
/** Indicates whether Seam manages the access code. */
|
|
2451
3043
|
is_managed: true
|
|
2452
3044
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -2505,164 +3097,122 @@ export interface Routes {
|
|
|
2505
3097
|
created_at: string
|
|
2506
3098
|
/** 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
3099
|
errors: Array<
|
|
2508
|
-
| {
|
|
2509
|
-
message: string
|
|
2510
|
-
is_access_code_error: true
|
|
2511
|
-
error_code: string
|
|
2512
|
-
}
|
|
2513
3100
|
| (
|
|
2514
3101
|
| {
|
|
2515
3102
|
message: string
|
|
2516
|
-
|
|
3103
|
+
is_access_code_error: true
|
|
2517
3104
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2518
|
-
error_code: '
|
|
3105
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
2519
3106
|
}
|
|
2520
3107
|
| {
|
|
2521
3108
|
message: string
|
|
2522
|
-
|
|
3109
|
+
is_access_code_error: true
|
|
2523
3110
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2524
|
-
error_code: '
|
|
3111
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
2525
3112
|
}
|
|
2526
3113
|
| {
|
|
2527
3114
|
message: string
|
|
2528
|
-
|
|
3115
|
+
is_access_code_error: true
|
|
2529
3116
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2530
|
-
error_code: '
|
|
3117
|
+
error_code: 'failed_to_set_on_device'
|
|
2531
3118
|
}
|
|
2532
3119
|
| {
|
|
2533
3120
|
message: string
|
|
2534
|
-
|
|
3121
|
+
is_access_code_error: true
|
|
2535
3122
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2536
|
-
error_code: '
|
|
3123
|
+
error_code: 'failed_to_remove_from_device'
|
|
2537
3124
|
}
|
|
2538
3125
|
| {
|
|
2539
3126
|
message: string
|
|
2540
|
-
|
|
3127
|
+
is_access_code_error: true
|
|
2541
3128
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2542
|
-
error_code: '
|
|
3129
|
+
error_code: 'duplicate_code_on_device'
|
|
2543
3130
|
}
|
|
2544
3131
|
| {
|
|
2545
3132
|
message: string
|
|
2546
|
-
|
|
3133
|
+
is_access_code_error: true
|
|
2547
3134
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2548
|
-
error_code: '
|
|
3135
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
2549
3136
|
}
|
|
2550
3137
|
| {
|
|
2551
3138
|
message: string
|
|
2552
|
-
|
|
3139
|
+
is_access_code_error: true
|
|
2553
3140
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2554
|
-
error_code: '
|
|
3141
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
2555
3142
|
}
|
|
2556
3143
|
| {
|
|
2557
3144
|
message: string
|
|
2558
|
-
|
|
3145
|
+
is_access_code_error: true
|
|
2559
3146
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2560
|
-
error_code: '
|
|
3147
|
+
error_code: 'igloohome_bridge_offline'
|
|
2561
3148
|
}
|
|
2562
3149
|
| {
|
|
2563
3150
|
message: string
|
|
2564
|
-
|
|
3151
|
+
is_access_code_error: true
|
|
2565
3152
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2566
|
-
error_code: '
|
|
3153
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
2567
3154
|
}
|
|
2568
3155
|
| {
|
|
2569
3156
|
message: string
|
|
2570
|
-
|
|
3157
|
+
is_access_code_error: true
|
|
2571
3158
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2572
|
-
error_code: '
|
|
3159
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
2573
3160
|
}
|
|
2574
3161
|
| {
|
|
2575
3162
|
message: string
|
|
2576
|
-
|
|
3163
|
+
is_access_code_error: true
|
|
2577
3164
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2578
|
-
error_code: '
|
|
3165
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
2579
3166
|
}
|
|
2580
3167
|
| {
|
|
2581
3168
|
message: string
|
|
2582
|
-
|
|
3169
|
+
is_access_code_error: true
|
|
2583
3170
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2584
|
-
error_code: '
|
|
3171
|
+
error_code: 'code_modified_external_to_seam'
|
|
2585
3172
|
}
|
|
2586
3173
|
| {
|
|
2587
3174
|
message: string
|
|
2588
|
-
|
|
3175
|
+
is_access_code_error: true
|
|
2589
3176
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2590
|
-
error_code: '
|
|
3177
|
+
error_code: 'august_lock_invalid_code_length'
|
|
3178
|
+
}
|
|
3179
|
+
| {
|
|
3180
|
+
message: string
|
|
3181
|
+
is_access_code_error: true
|
|
3182
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3183
|
+
error_code: 'august_device_programming_delay'
|
|
3184
|
+
}
|
|
3185
|
+
| {
|
|
3186
|
+
message: string
|
|
3187
|
+
is_access_code_error: true
|
|
3188
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3189
|
+
error_code: 'august_device_slots_full'
|
|
3190
|
+
}
|
|
3191
|
+
| {
|
|
3192
|
+
message: string
|
|
3193
|
+
is_access_code_error: true
|
|
3194
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3195
|
+
error_code: 'august_lock_missing_keypad'
|
|
3196
|
+
}
|
|
3197
|
+
| {
|
|
3198
|
+
message: string
|
|
3199
|
+
is_access_code_error: true
|
|
3200
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3201
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
3202
|
+
}
|
|
3203
|
+
| {
|
|
3204
|
+
message: string
|
|
3205
|
+
is_access_code_error: true
|
|
3206
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3207
|
+
error_code: 'hubitat_device_programming_delay'
|
|
3208
|
+
}
|
|
3209
|
+
| {
|
|
3210
|
+
message: string
|
|
3211
|
+
is_access_code_error: true
|
|
3212
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3213
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
2591
3214
|
}
|
|
2592
3215
|
)
|
|
2593
|
-
| {
|
|
2594
|
-
message: string
|
|
2595
|
-
is_connected_account_error: true
|
|
2596
|
-
error_code: string
|
|
2597
|
-
}
|
|
2598
|
-
>
|
|
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
|
-
/** Indicates whether Seam manages the access code. */
|
|
2605
|
-
is_managed: true
|
|
2606
|
-
/** Date and time at which the time-bound access code becomes active. */
|
|
2607
|
-
starts_at?: (string | null) | undefined
|
|
2608
|
-
/** Date and time after which the time-bound access code becomes inactive. */
|
|
2609
|
-
ends_at?: (string | null) | undefined
|
|
2610
|
-
/**
|
|
2611
|
-
Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
|
|
2612
|
-
*/
|
|
2613
|
-
status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown'
|
|
2614
|
-
/** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
|
|
2615
|
-
is_backup_access_code_available: boolean
|
|
2616
|
-
/** Indicates whether the access code is a backup code. */
|
|
2617
|
-
is_backup?: boolean | undefined
|
|
2618
|
-
/** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
|
|
2619
|
-
pulled_backup_access_code_id?: (string | null) | undefined
|
|
2620
|
-
/** Indicates whether changes to the access code from external sources are permitted. */
|
|
2621
|
-
is_external_modification_allowed: boolean
|
|
2622
|
-
/** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
|
|
2623
|
-
is_one_time_use: boolean
|
|
2624
|
-
/** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
|
|
2625
|
-
is_offline_access_code: boolean
|
|
2626
|
-
}>
|
|
2627
|
-
}
|
|
2628
|
-
}
|
|
2629
|
-
'/access_codes/pull_backup_access_code': {
|
|
2630
|
-
route: '/access_codes/pull_backup_access_code'
|
|
2631
|
-
method: 'POST'
|
|
2632
|
-
queryParams: {}
|
|
2633
|
-
jsonBody: {
|
|
2634
|
-
access_code_id: string
|
|
2635
|
-
}
|
|
2636
|
-
commonParams: {}
|
|
2637
|
-
formData: {}
|
|
2638
|
-
jsonResponse: {
|
|
2639
|
-
/** */
|
|
2640
|
-
backup_access_code: {
|
|
2641
|
-
/** Unique identifier for a group of access codes that share the same code. */
|
|
2642
|
-
common_code_key: string | null
|
|
2643
|
-
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
2644
|
-
is_scheduled_on_device?: boolean | undefined
|
|
2645
|
-
/** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
|
|
2646
|
-
type: 'time_bound' | 'ongoing'
|
|
2647
|
-
/** Indicates whether the access code is waiting for a code assignment. */
|
|
2648
|
-
is_waiting_for_code_assignment?: boolean | undefined
|
|
2649
|
-
/** Unique identifier for the access code. */
|
|
2650
|
-
access_code_id: string
|
|
2651
|
-
/** Unique identifier for the device associated with the access code. */
|
|
2652
|
-
device_id: string
|
|
2653
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
|
|
2654
|
-
name: string | null
|
|
2655
|
-
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
2656
|
-
code: string | null
|
|
2657
|
-
/** Date and time at which the access code was created. */
|
|
2658
|
-
created_at: string
|
|
2659
|
-
/** 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
|
-
errors: Array<
|
|
2661
|
-
| {
|
|
2662
|
-
message: string
|
|
2663
|
-
is_access_code_error: true
|
|
2664
|
-
error_code: string
|
|
2665
|
-
}
|
|
2666
3216
|
| (
|
|
2667
3217
|
| {
|
|
2668
3218
|
message: string
|
|
@@ -2743,17 +3293,395 @@ export interface Routes {
|
|
|
2743
3293
|
error_code: 'subscription_required'
|
|
2744
3294
|
}
|
|
2745
3295
|
)
|
|
3296
|
+
| (
|
|
3297
|
+
| {
|
|
3298
|
+
message: string
|
|
3299
|
+
is_connected_account_error: true
|
|
3300
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3301
|
+
error_code: 'account_disconnected'
|
|
3302
|
+
}
|
|
3303
|
+
| {
|
|
3304
|
+
message: string
|
|
3305
|
+
is_connected_account_error: true
|
|
3306
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3307
|
+
error_code: 'invalid_credentials'
|
|
3308
|
+
}
|
|
3309
|
+
)
|
|
3310
|
+
>
|
|
3311
|
+
/** 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. */
|
|
3312
|
+
warnings: Array<
|
|
2746
3313
|
| {
|
|
2747
3314
|
message: string
|
|
2748
|
-
|
|
2749
|
-
|
|
3315
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3316
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3317
|
+
}
|
|
3318
|
+
| {
|
|
3319
|
+
message: string
|
|
3320
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3321
|
+
warning_code: 'schlage_detected_duplicate'
|
|
2750
3322
|
}
|
|
3323
|
+
| {
|
|
3324
|
+
message: string
|
|
3325
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3326
|
+
warning_code: 'schlage_creation_outage'
|
|
3327
|
+
}
|
|
3328
|
+
| {
|
|
3329
|
+
message: string
|
|
3330
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3331
|
+
warning_code: 'code_modified_external_to_seam'
|
|
3332
|
+
}
|
|
3333
|
+
| {
|
|
3334
|
+
message: string
|
|
3335
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3336
|
+
warning_code: 'delay_in_setting_on_device'
|
|
3337
|
+
}
|
|
3338
|
+
| {
|
|
3339
|
+
message: string
|
|
3340
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3341
|
+
warning_code: 'delay_in_removing_from_device'
|
|
3342
|
+
}
|
|
3343
|
+
| {
|
|
3344
|
+
message: string
|
|
3345
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3346
|
+
warning_code: 'third_party_integration_detected'
|
|
3347
|
+
}
|
|
3348
|
+
| {
|
|
3349
|
+
message: string
|
|
3350
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3351
|
+
warning_code: 'august_device_programming_delay'
|
|
3352
|
+
}
|
|
3353
|
+
| {
|
|
3354
|
+
message: string
|
|
3355
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3356
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3357
|
+
}
|
|
3358
|
+
| {
|
|
3359
|
+
message: string
|
|
3360
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3361
|
+
warning_code: 'management_transferred'
|
|
3362
|
+
}
|
|
3363
|
+
>
|
|
3364
|
+
/** Indicates whether Seam manages the access code. */
|
|
3365
|
+
is_managed: true
|
|
3366
|
+
/** Date and time at which the time-bound access code becomes active. */
|
|
3367
|
+
starts_at?: (string | null) | undefined
|
|
3368
|
+
/** Date and time after which the time-bound access code becomes inactive. */
|
|
3369
|
+
ends_at?: (string | null) | undefined
|
|
3370
|
+
/**
|
|
3371
|
+
Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
|
|
3372
|
+
*/
|
|
3373
|
+
status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown'
|
|
3374
|
+
/** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
|
|
3375
|
+
is_backup_access_code_available: boolean
|
|
3376
|
+
/** Indicates whether the access code is a backup code. */
|
|
3377
|
+
is_backup?: boolean | undefined
|
|
3378
|
+
/** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
|
|
3379
|
+
pulled_backup_access_code_id?: (string | null) | undefined
|
|
3380
|
+
/** Indicates whether changes to the access code from external sources are permitted. */
|
|
3381
|
+
is_external_modification_allowed: boolean
|
|
3382
|
+
/** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
|
|
3383
|
+
is_one_time_use: boolean
|
|
3384
|
+
/** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
|
|
3385
|
+
is_offline_access_code: boolean
|
|
3386
|
+
}>
|
|
3387
|
+
}
|
|
3388
|
+
}
|
|
3389
|
+
'/access_codes/pull_backup_access_code': {
|
|
3390
|
+
route: '/access_codes/pull_backup_access_code'
|
|
3391
|
+
method: 'POST'
|
|
3392
|
+
queryParams: {}
|
|
3393
|
+
jsonBody: {
|
|
3394
|
+
access_code_id: string
|
|
3395
|
+
}
|
|
3396
|
+
commonParams: {}
|
|
3397
|
+
formData: {}
|
|
3398
|
+
jsonResponse: {
|
|
3399
|
+
/** */
|
|
3400
|
+
backup_access_code: {
|
|
3401
|
+
/** Unique identifier for a group of access codes that share the same code. */
|
|
3402
|
+
common_code_key: string | null
|
|
3403
|
+
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
3404
|
+
is_scheduled_on_device?: boolean | undefined
|
|
3405
|
+
/** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
|
|
3406
|
+
type: 'time_bound' | 'ongoing'
|
|
3407
|
+
/** Indicates whether the access code is waiting for a code assignment. */
|
|
3408
|
+
is_waiting_for_code_assignment?: boolean | undefined
|
|
3409
|
+
/** Unique identifier for the access code. */
|
|
3410
|
+
access_code_id: string
|
|
3411
|
+
/** Unique identifier for the device associated with the access code. */
|
|
3412
|
+
device_id: string
|
|
3413
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
|
|
3414
|
+
name: string | null
|
|
3415
|
+
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
3416
|
+
code: string | null
|
|
3417
|
+
/** Date and time at which the access code was created. */
|
|
3418
|
+
created_at: string
|
|
3419
|
+
/** 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. */
|
|
3420
|
+
errors: Array<
|
|
3421
|
+
| (
|
|
3422
|
+
| {
|
|
3423
|
+
message: string
|
|
3424
|
+
is_access_code_error: true
|
|
3425
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3426
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
3427
|
+
}
|
|
3428
|
+
| {
|
|
3429
|
+
message: string
|
|
3430
|
+
is_access_code_error: true
|
|
3431
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3432
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3433
|
+
}
|
|
3434
|
+
| {
|
|
3435
|
+
message: string
|
|
3436
|
+
is_access_code_error: true
|
|
3437
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3438
|
+
error_code: 'failed_to_set_on_device'
|
|
3439
|
+
}
|
|
3440
|
+
| {
|
|
3441
|
+
message: string
|
|
3442
|
+
is_access_code_error: true
|
|
3443
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3444
|
+
error_code: 'failed_to_remove_from_device'
|
|
3445
|
+
}
|
|
3446
|
+
| {
|
|
3447
|
+
message: string
|
|
3448
|
+
is_access_code_error: true
|
|
3449
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3450
|
+
error_code: 'duplicate_code_on_device'
|
|
3451
|
+
}
|
|
3452
|
+
| {
|
|
3453
|
+
message: string
|
|
3454
|
+
is_access_code_error: true
|
|
3455
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3456
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
3457
|
+
}
|
|
3458
|
+
| {
|
|
3459
|
+
message: string
|
|
3460
|
+
is_access_code_error: true
|
|
3461
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3462
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
3463
|
+
}
|
|
3464
|
+
| {
|
|
3465
|
+
message: string
|
|
3466
|
+
is_access_code_error: true
|
|
3467
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3468
|
+
error_code: 'igloohome_bridge_offline'
|
|
3469
|
+
}
|
|
3470
|
+
| {
|
|
3471
|
+
message: string
|
|
3472
|
+
is_access_code_error: true
|
|
3473
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3474
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3475
|
+
}
|
|
3476
|
+
| {
|
|
3477
|
+
message: string
|
|
3478
|
+
is_access_code_error: true
|
|
3479
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3480
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
3481
|
+
}
|
|
3482
|
+
| {
|
|
3483
|
+
message: string
|
|
3484
|
+
is_access_code_error: true
|
|
3485
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3486
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
3487
|
+
}
|
|
3488
|
+
| {
|
|
3489
|
+
message: string
|
|
3490
|
+
is_access_code_error: true
|
|
3491
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3492
|
+
error_code: 'code_modified_external_to_seam'
|
|
3493
|
+
}
|
|
3494
|
+
| {
|
|
3495
|
+
message: string
|
|
3496
|
+
is_access_code_error: true
|
|
3497
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3498
|
+
error_code: 'august_lock_invalid_code_length'
|
|
3499
|
+
}
|
|
3500
|
+
| {
|
|
3501
|
+
message: string
|
|
3502
|
+
is_access_code_error: true
|
|
3503
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3504
|
+
error_code: 'august_device_programming_delay'
|
|
3505
|
+
}
|
|
3506
|
+
| {
|
|
3507
|
+
message: string
|
|
3508
|
+
is_access_code_error: true
|
|
3509
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3510
|
+
error_code: 'august_device_slots_full'
|
|
3511
|
+
}
|
|
3512
|
+
| {
|
|
3513
|
+
message: string
|
|
3514
|
+
is_access_code_error: true
|
|
3515
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3516
|
+
error_code: 'august_lock_missing_keypad'
|
|
3517
|
+
}
|
|
3518
|
+
| {
|
|
3519
|
+
message: string
|
|
3520
|
+
is_access_code_error: true
|
|
3521
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3522
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
3523
|
+
}
|
|
3524
|
+
| {
|
|
3525
|
+
message: string
|
|
3526
|
+
is_access_code_error: true
|
|
3527
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3528
|
+
error_code: 'hubitat_device_programming_delay'
|
|
3529
|
+
}
|
|
3530
|
+
| {
|
|
3531
|
+
message: string
|
|
3532
|
+
is_access_code_error: true
|
|
3533
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3534
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
3535
|
+
}
|
|
3536
|
+
)
|
|
3537
|
+
| (
|
|
3538
|
+
| {
|
|
3539
|
+
message: string
|
|
3540
|
+
is_device_error: true
|
|
3541
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3542
|
+
error_code: 'device_offline'
|
|
3543
|
+
}
|
|
3544
|
+
| {
|
|
3545
|
+
message: string
|
|
3546
|
+
is_device_error: true
|
|
3547
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3548
|
+
error_code: 'device_removed'
|
|
3549
|
+
}
|
|
3550
|
+
| {
|
|
3551
|
+
message: string
|
|
3552
|
+
is_device_error: true
|
|
3553
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3554
|
+
error_code: 'account_disconnected'
|
|
3555
|
+
}
|
|
3556
|
+
| {
|
|
3557
|
+
message: string
|
|
3558
|
+
is_device_error: true
|
|
3559
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3560
|
+
error_code: 'hub_disconnected'
|
|
3561
|
+
}
|
|
3562
|
+
| {
|
|
3563
|
+
message: string
|
|
3564
|
+
is_device_error: true
|
|
3565
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3566
|
+
error_code: 'device_disconnected'
|
|
3567
|
+
}
|
|
3568
|
+
| {
|
|
3569
|
+
message: string
|
|
3570
|
+
is_device_error: true
|
|
3571
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3572
|
+
error_code: 'empty_backup_access_code_pool'
|
|
3573
|
+
}
|
|
3574
|
+
| {
|
|
3575
|
+
message: string
|
|
3576
|
+
is_device_error: true
|
|
3577
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3578
|
+
error_code: 'august_lock_not_authorized'
|
|
3579
|
+
}
|
|
3580
|
+
| {
|
|
3581
|
+
message: string
|
|
3582
|
+
is_device_error: true
|
|
3583
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3584
|
+
error_code: 'august_lock_missing_bridge'
|
|
3585
|
+
}
|
|
3586
|
+
| {
|
|
3587
|
+
message: string
|
|
3588
|
+
is_device_error: true
|
|
3589
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3590
|
+
error_code: 'salto_site_user_limit_reached'
|
|
3591
|
+
}
|
|
3592
|
+
| {
|
|
3593
|
+
message: string
|
|
3594
|
+
is_device_error: true
|
|
3595
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3596
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
3597
|
+
}
|
|
3598
|
+
| {
|
|
3599
|
+
message: string
|
|
3600
|
+
is_device_error: true
|
|
3601
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3602
|
+
error_code: 'missing_device_credentials'
|
|
3603
|
+
}
|
|
3604
|
+
| {
|
|
3605
|
+
message: string
|
|
3606
|
+
is_device_error: true
|
|
3607
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3608
|
+
error_code: 'auxiliary_heat_running'
|
|
3609
|
+
}
|
|
3610
|
+
| {
|
|
3611
|
+
message: string
|
|
3612
|
+
is_device_error: true
|
|
3613
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3614
|
+
error_code: 'subscription_required'
|
|
3615
|
+
}
|
|
3616
|
+
)
|
|
3617
|
+
| (
|
|
3618
|
+
| {
|
|
3619
|
+
message: string
|
|
3620
|
+
is_connected_account_error: true
|
|
3621
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3622
|
+
error_code: 'account_disconnected'
|
|
3623
|
+
}
|
|
3624
|
+
| {
|
|
3625
|
+
message: string
|
|
3626
|
+
is_connected_account_error: true
|
|
3627
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3628
|
+
error_code: 'invalid_credentials'
|
|
3629
|
+
}
|
|
3630
|
+
)
|
|
2751
3631
|
>
|
|
2752
3632
|
/** 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
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
3633
|
+
warnings: Array<
|
|
3634
|
+
| {
|
|
3635
|
+
message: string
|
|
3636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3637
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3638
|
+
}
|
|
3639
|
+
| {
|
|
3640
|
+
message: string
|
|
3641
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3642
|
+
warning_code: 'schlage_detected_duplicate'
|
|
3643
|
+
}
|
|
3644
|
+
| {
|
|
3645
|
+
message: string
|
|
3646
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3647
|
+
warning_code: 'schlage_creation_outage'
|
|
3648
|
+
}
|
|
3649
|
+
| {
|
|
3650
|
+
message: string
|
|
3651
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3652
|
+
warning_code: 'code_modified_external_to_seam'
|
|
3653
|
+
}
|
|
3654
|
+
| {
|
|
3655
|
+
message: string
|
|
3656
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3657
|
+
warning_code: 'delay_in_setting_on_device'
|
|
3658
|
+
}
|
|
3659
|
+
| {
|
|
3660
|
+
message: string
|
|
3661
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3662
|
+
warning_code: 'delay_in_removing_from_device'
|
|
3663
|
+
}
|
|
3664
|
+
| {
|
|
3665
|
+
message: string
|
|
3666
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3667
|
+
warning_code: 'third_party_integration_detected'
|
|
3668
|
+
}
|
|
3669
|
+
| {
|
|
3670
|
+
message: string
|
|
3671
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3672
|
+
warning_code: 'august_device_programming_delay'
|
|
3673
|
+
}
|
|
3674
|
+
| {
|
|
3675
|
+
message: string
|
|
3676
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3677
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3678
|
+
}
|
|
3679
|
+
| {
|
|
3680
|
+
message: string
|
|
3681
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3682
|
+
warning_code: 'management_transferred'
|
|
3683
|
+
}
|
|
3684
|
+
>
|
|
2757
3685
|
/** Indicates whether Seam manages the access code. */
|
|
2758
3686
|
is_managed: true
|
|
2759
3687
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -2799,11 +3727,122 @@ export interface Routes {
|
|
|
2799
3727
|
created_at: string
|
|
2800
3728
|
/** 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
3729
|
errors: Array<
|
|
2802
|
-
|
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
3730
|
+
| (
|
|
3731
|
+
| {
|
|
3732
|
+
message: string
|
|
3733
|
+
is_access_code_error: true
|
|
3734
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3735
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
3736
|
+
}
|
|
3737
|
+
| {
|
|
3738
|
+
message: string
|
|
3739
|
+
is_access_code_error: true
|
|
3740
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3741
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
3742
|
+
}
|
|
3743
|
+
| {
|
|
3744
|
+
message: string
|
|
3745
|
+
is_access_code_error: true
|
|
3746
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3747
|
+
error_code: 'failed_to_set_on_device'
|
|
3748
|
+
}
|
|
3749
|
+
| {
|
|
3750
|
+
message: string
|
|
3751
|
+
is_access_code_error: true
|
|
3752
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3753
|
+
error_code: 'failed_to_remove_from_device'
|
|
3754
|
+
}
|
|
3755
|
+
| {
|
|
3756
|
+
message: string
|
|
3757
|
+
is_access_code_error: true
|
|
3758
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3759
|
+
error_code: 'duplicate_code_on_device'
|
|
3760
|
+
}
|
|
3761
|
+
| {
|
|
3762
|
+
message: string
|
|
3763
|
+
is_access_code_error: true
|
|
3764
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3765
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
3766
|
+
}
|
|
3767
|
+
| {
|
|
3768
|
+
message: string
|
|
3769
|
+
is_access_code_error: true
|
|
3770
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3771
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
3772
|
+
}
|
|
3773
|
+
| {
|
|
3774
|
+
message: string
|
|
3775
|
+
is_access_code_error: true
|
|
3776
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3777
|
+
error_code: 'igloohome_bridge_offline'
|
|
3778
|
+
}
|
|
3779
|
+
| {
|
|
3780
|
+
message: string
|
|
3781
|
+
is_access_code_error: true
|
|
3782
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3783
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3784
|
+
}
|
|
3785
|
+
| {
|
|
3786
|
+
message: string
|
|
3787
|
+
is_access_code_error: true
|
|
3788
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3789
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
3790
|
+
}
|
|
3791
|
+
| {
|
|
3792
|
+
message: string
|
|
3793
|
+
is_access_code_error: true
|
|
3794
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3795
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
3796
|
+
}
|
|
3797
|
+
| {
|
|
3798
|
+
message: string
|
|
3799
|
+
is_access_code_error: true
|
|
3800
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3801
|
+
error_code: 'code_modified_external_to_seam'
|
|
3802
|
+
}
|
|
3803
|
+
| {
|
|
3804
|
+
message: string
|
|
3805
|
+
is_access_code_error: true
|
|
3806
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3807
|
+
error_code: 'august_lock_invalid_code_length'
|
|
3808
|
+
}
|
|
3809
|
+
| {
|
|
3810
|
+
message: string
|
|
3811
|
+
is_access_code_error: true
|
|
3812
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3813
|
+
error_code: 'august_device_programming_delay'
|
|
3814
|
+
}
|
|
3815
|
+
| {
|
|
3816
|
+
message: string
|
|
3817
|
+
is_access_code_error: true
|
|
3818
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3819
|
+
error_code: 'august_device_slots_full'
|
|
3820
|
+
}
|
|
3821
|
+
| {
|
|
3822
|
+
message: string
|
|
3823
|
+
is_access_code_error: true
|
|
3824
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3825
|
+
error_code: 'august_lock_missing_keypad'
|
|
3826
|
+
}
|
|
3827
|
+
| {
|
|
3828
|
+
message: string
|
|
3829
|
+
is_access_code_error: true
|
|
3830
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3831
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
3832
|
+
}
|
|
3833
|
+
| {
|
|
3834
|
+
message: string
|
|
3835
|
+
is_access_code_error: true
|
|
3836
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3837
|
+
error_code: 'hubitat_device_programming_delay'
|
|
3838
|
+
}
|
|
3839
|
+
| {
|
|
3840
|
+
message: string
|
|
3841
|
+
is_access_code_error: true
|
|
3842
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3843
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
3844
|
+
}
|
|
3845
|
+
)
|
|
2807
3846
|
| (
|
|
2808
3847
|
| {
|
|
2809
3848
|
message: string
|
|
@@ -2884,17 +3923,74 @@ export interface Routes {
|
|
|
2884
3923
|
error_code: 'subscription_required'
|
|
2885
3924
|
}
|
|
2886
3925
|
)
|
|
3926
|
+
| (
|
|
3927
|
+
| {
|
|
3928
|
+
message: string
|
|
3929
|
+
is_connected_account_error: true
|
|
3930
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3931
|
+
error_code: 'account_disconnected'
|
|
3932
|
+
}
|
|
3933
|
+
| {
|
|
3934
|
+
message: string
|
|
3935
|
+
is_connected_account_error: true
|
|
3936
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3937
|
+
error_code: 'invalid_credentials'
|
|
3938
|
+
}
|
|
3939
|
+
)
|
|
3940
|
+
>
|
|
3941
|
+
/** 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. */
|
|
3942
|
+
warnings: Array<
|
|
2887
3943
|
| {
|
|
2888
3944
|
message: string
|
|
2889
|
-
|
|
2890
|
-
|
|
3945
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3946
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
3947
|
+
}
|
|
3948
|
+
| {
|
|
3949
|
+
message: string
|
|
3950
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3951
|
+
warning_code: 'schlage_detected_duplicate'
|
|
3952
|
+
}
|
|
3953
|
+
| {
|
|
3954
|
+
message: string
|
|
3955
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3956
|
+
warning_code: 'schlage_creation_outage'
|
|
3957
|
+
}
|
|
3958
|
+
| {
|
|
3959
|
+
message: string
|
|
3960
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3961
|
+
warning_code: 'code_modified_external_to_seam'
|
|
3962
|
+
}
|
|
3963
|
+
| {
|
|
3964
|
+
message: string
|
|
3965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3966
|
+
warning_code: 'delay_in_setting_on_device'
|
|
3967
|
+
}
|
|
3968
|
+
| {
|
|
3969
|
+
message: string
|
|
3970
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3971
|
+
warning_code: 'delay_in_removing_from_device'
|
|
3972
|
+
}
|
|
3973
|
+
| {
|
|
3974
|
+
message: string
|
|
3975
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3976
|
+
warning_code: 'third_party_integration_detected'
|
|
3977
|
+
}
|
|
3978
|
+
| {
|
|
3979
|
+
message: string
|
|
3980
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3981
|
+
warning_code: 'august_device_programming_delay'
|
|
3982
|
+
}
|
|
3983
|
+
| {
|
|
3984
|
+
message: string
|
|
3985
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3986
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
3987
|
+
}
|
|
3988
|
+
| {
|
|
3989
|
+
message: string
|
|
3990
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3991
|
+
warning_code: 'management_transferred'
|
|
2891
3992
|
}
|
|
2892
3993
|
>
|
|
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
3994
|
/** Indicates whether Seam manages the access code. */
|
|
2899
3995
|
is_managed: true
|
|
2900
3996
|
/** Date and time at which the time-bound access code becomes active. */
|
|
@@ -2948,11 +4044,122 @@ export interface Routes {
|
|
|
2948
4044
|
created_at: string
|
|
2949
4045
|
/** 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
4046
|
errors: Array<
|
|
2951
|
-
|
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
4047
|
+
| (
|
|
4048
|
+
| {
|
|
4049
|
+
message: string
|
|
4050
|
+
is_access_code_error: true
|
|
4051
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4052
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
4053
|
+
}
|
|
4054
|
+
| {
|
|
4055
|
+
message: string
|
|
4056
|
+
is_access_code_error: true
|
|
4057
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4058
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
4059
|
+
}
|
|
4060
|
+
| {
|
|
4061
|
+
message: string
|
|
4062
|
+
is_access_code_error: true
|
|
4063
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4064
|
+
error_code: 'failed_to_set_on_device'
|
|
4065
|
+
}
|
|
4066
|
+
| {
|
|
4067
|
+
message: string
|
|
4068
|
+
is_access_code_error: true
|
|
4069
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4070
|
+
error_code: 'failed_to_remove_from_device'
|
|
4071
|
+
}
|
|
4072
|
+
| {
|
|
4073
|
+
message: string
|
|
4074
|
+
is_access_code_error: true
|
|
4075
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4076
|
+
error_code: 'duplicate_code_on_device'
|
|
4077
|
+
}
|
|
4078
|
+
| {
|
|
4079
|
+
message: string
|
|
4080
|
+
is_access_code_error: true
|
|
4081
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4082
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
4083
|
+
}
|
|
4084
|
+
| {
|
|
4085
|
+
message: string
|
|
4086
|
+
is_access_code_error: true
|
|
4087
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4088
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
4089
|
+
}
|
|
4090
|
+
| {
|
|
4091
|
+
message: string
|
|
4092
|
+
is_access_code_error: true
|
|
4093
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4094
|
+
error_code: 'igloohome_bridge_offline'
|
|
4095
|
+
}
|
|
4096
|
+
| {
|
|
4097
|
+
message: string
|
|
4098
|
+
is_access_code_error: true
|
|
4099
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4100
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
4101
|
+
}
|
|
4102
|
+
| {
|
|
4103
|
+
message: string
|
|
4104
|
+
is_access_code_error: true
|
|
4105
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4106
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
4107
|
+
}
|
|
4108
|
+
| {
|
|
4109
|
+
message: string
|
|
4110
|
+
is_access_code_error: true
|
|
4111
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4112
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
4113
|
+
}
|
|
4114
|
+
| {
|
|
4115
|
+
message: string
|
|
4116
|
+
is_access_code_error: true
|
|
4117
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4118
|
+
error_code: 'code_modified_external_to_seam'
|
|
4119
|
+
}
|
|
4120
|
+
| {
|
|
4121
|
+
message: string
|
|
4122
|
+
is_access_code_error: true
|
|
4123
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4124
|
+
error_code: 'august_lock_invalid_code_length'
|
|
4125
|
+
}
|
|
4126
|
+
| {
|
|
4127
|
+
message: string
|
|
4128
|
+
is_access_code_error: true
|
|
4129
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4130
|
+
error_code: 'august_device_programming_delay'
|
|
4131
|
+
}
|
|
4132
|
+
| {
|
|
4133
|
+
message: string
|
|
4134
|
+
is_access_code_error: true
|
|
4135
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4136
|
+
error_code: 'august_device_slots_full'
|
|
4137
|
+
}
|
|
4138
|
+
| {
|
|
4139
|
+
message: string
|
|
4140
|
+
is_access_code_error: true
|
|
4141
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4142
|
+
error_code: 'august_lock_missing_keypad'
|
|
4143
|
+
}
|
|
4144
|
+
| {
|
|
4145
|
+
message: string
|
|
4146
|
+
is_access_code_error: true
|
|
4147
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4148
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
4149
|
+
}
|
|
4150
|
+
| {
|
|
4151
|
+
message: string
|
|
4152
|
+
is_access_code_error: true
|
|
4153
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4154
|
+
error_code: 'hubitat_device_programming_delay'
|
|
4155
|
+
}
|
|
4156
|
+
| {
|
|
4157
|
+
message: string
|
|
4158
|
+
is_access_code_error: true
|
|
4159
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4160
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
4161
|
+
}
|
|
4162
|
+
)
|
|
2956
4163
|
| (
|
|
2957
4164
|
| {
|
|
2958
4165
|
message: string
|
|
@@ -3033,17 +4240,74 @@ export interface Routes {
|
|
|
3033
4240
|
error_code: 'subscription_required'
|
|
3034
4241
|
}
|
|
3035
4242
|
)
|
|
4243
|
+
| (
|
|
4244
|
+
| {
|
|
4245
|
+
message: string
|
|
4246
|
+
is_connected_account_error: true
|
|
4247
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4248
|
+
error_code: 'account_disconnected'
|
|
4249
|
+
}
|
|
4250
|
+
| {
|
|
4251
|
+
message: string
|
|
4252
|
+
is_connected_account_error: true
|
|
4253
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4254
|
+
error_code: 'invalid_credentials'
|
|
4255
|
+
}
|
|
4256
|
+
)
|
|
4257
|
+
>
|
|
4258
|
+
/** 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. */
|
|
4259
|
+
warnings: Array<
|
|
3036
4260
|
| {
|
|
3037
4261
|
message: string
|
|
3038
|
-
|
|
3039
|
-
|
|
4262
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4263
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
4264
|
+
}
|
|
4265
|
+
| {
|
|
4266
|
+
message: string
|
|
4267
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4268
|
+
warning_code: 'schlage_detected_duplicate'
|
|
4269
|
+
}
|
|
4270
|
+
| {
|
|
4271
|
+
message: string
|
|
4272
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4273
|
+
warning_code: 'schlage_creation_outage'
|
|
4274
|
+
}
|
|
4275
|
+
| {
|
|
4276
|
+
message: string
|
|
4277
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4278
|
+
warning_code: 'code_modified_external_to_seam'
|
|
4279
|
+
}
|
|
4280
|
+
| {
|
|
4281
|
+
message: string
|
|
4282
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4283
|
+
warning_code: 'delay_in_setting_on_device'
|
|
4284
|
+
}
|
|
4285
|
+
| {
|
|
4286
|
+
message: string
|
|
4287
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4288
|
+
warning_code: 'delay_in_removing_from_device'
|
|
4289
|
+
}
|
|
4290
|
+
| {
|
|
4291
|
+
message: string
|
|
4292
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4293
|
+
warning_code: 'third_party_integration_detected'
|
|
4294
|
+
}
|
|
4295
|
+
| {
|
|
4296
|
+
message: string
|
|
4297
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4298
|
+
warning_code: 'august_device_programming_delay'
|
|
4299
|
+
}
|
|
4300
|
+
| {
|
|
4301
|
+
message: string
|
|
4302
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4303
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
4304
|
+
}
|
|
4305
|
+
| {
|
|
4306
|
+
message: string
|
|
4307
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4308
|
+
warning_code: 'management_transferred'
|
|
3040
4309
|
}
|
|
3041
4310
|
>
|
|
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
4311
|
is_managed: false
|
|
3048
4312
|
/** Date and time at which the time-bound access code becomes active. */
|
|
3049
4313
|
starts_at?: (string | null) | undefined
|
|
@@ -3304,6 +4568,18 @@ export interface Routes {
|
|
|
3304
4568
|
credential_id?: string | undefined
|
|
3305
4569
|
}
|
|
3306
4570
|
| undefined
|
|
4571
|
+
/** Vostio-specific metadata for the credential. */
|
|
4572
|
+
assa_abloy_vostio_metadata?:
|
|
4573
|
+
| {
|
|
4574
|
+
override_guest_acs_entrance_ids?:
|
|
4575
|
+
| string[]
|
|
4576
|
+
| undefined
|
|
4577
|
+
key_id?: string | undefined
|
|
4578
|
+
key_issuing_request_id?: string | undefined
|
|
4579
|
+
door_names?: string[] | undefined
|
|
4580
|
+
endpoint_id?: string | undefined
|
|
4581
|
+
}
|
|
4582
|
+
| undefined
|
|
3307
4583
|
is_managed: true
|
|
3308
4584
|
}
|
|
3309
4585
|
| {
|
|
@@ -3428,6 +4704,18 @@ export interface Routes {
|
|
|
3428
4704
|
credential_id?: string | undefined
|
|
3429
4705
|
}
|
|
3430
4706
|
| undefined
|
|
4707
|
+
/** Vostio-specific metadata for the credential. */
|
|
4708
|
+
assa_abloy_vostio_metadata?:
|
|
4709
|
+
| {
|
|
4710
|
+
override_guest_acs_entrance_ids?:
|
|
4711
|
+
| string[]
|
|
4712
|
+
| undefined
|
|
4713
|
+
key_id?: string | undefined
|
|
4714
|
+
key_issuing_request_id?: string | undefined
|
|
4715
|
+
door_names?: string[] | undefined
|
|
4716
|
+
endpoint_id?: string | undefined
|
|
4717
|
+
}
|
|
4718
|
+
| undefined
|
|
3431
4719
|
is_managed: false
|
|
3432
4720
|
}
|
|
3433
4721
|
)
|
|
@@ -3599,6 +4887,16 @@ export interface Routes {
|
|
|
3599
4887
|
credential_id?: string | undefined
|
|
3600
4888
|
}
|
|
3601
4889
|
| undefined
|
|
4890
|
+
/** Vostio-specific metadata for the credential. */
|
|
4891
|
+
assa_abloy_vostio_metadata?:
|
|
4892
|
+
| {
|
|
4893
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
4894
|
+
key_id?: string | undefined
|
|
4895
|
+
key_issuing_request_id?: string | undefined
|
|
4896
|
+
door_names?: string[] | undefined
|
|
4897
|
+
endpoint_id?: string | undefined
|
|
4898
|
+
}
|
|
4899
|
+
| undefined
|
|
3602
4900
|
is_managed: true
|
|
3603
4901
|
}
|
|
3604
4902
|
| {
|
|
@@ -3723,6 +5021,16 @@ export interface Routes {
|
|
|
3723
5021
|
credential_id?: string | undefined
|
|
3724
5022
|
}
|
|
3725
5023
|
| undefined
|
|
5024
|
+
/** Vostio-specific metadata for the credential. */
|
|
5025
|
+
assa_abloy_vostio_metadata?:
|
|
5026
|
+
| {
|
|
5027
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
5028
|
+
key_id?: string | undefined
|
|
5029
|
+
key_issuing_request_id?: string | undefined
|
|
5030
|
+
door_names?: string[] | undefined
|
|
5031
|
+
endpoint_id?: string | undefined
|
|
5032
|
+
}
|
|
5033
|
+
| undefined
|
|
3726
5034
|
is_managed: false
|
|
3727
5035
|
}
|
|
3728
5036
|
}
|
|
@@ -4085,11 +5393,122 @@ export interface Routes {
|
|
|
4085
5393
|
created_at: string
|
|
4086
5394
|
/** 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
5395
|
errors: Array<
|
|
4088
|
-
|
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
5396
|
+
| (
|
|
5397
|
+
| {
|
|
5398
|
+
message: string
|
|
5399
|
+
is_access_code_error: true
|
|
5400
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5401
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
5402
|
+
}
|
|
5403
|
+
| {
|
|
5404
|
+
message: string
|
|
5405
|
+
is_access_code_error: true
|
|
5406
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5407
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
5408
|
+
}
|
|
5409
|
+
| {
|
|
5410
|
+
message: string
|
|
5411
|
+
is_access_code_error: true
|
|
5412
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5413
|
+
error_code: 'failed_to_set_on_device'
|
|
5414
|
+
}
|
|
5415
|
+
| {
|
|
5416
|
+
message: string
|
|
5417
|
+
is_access_code_error: true
|
|
5418
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5419
|
+
error_code: 'failed_to_remove_from_device'
|
|
5420
|
+
}
|
|
5421
|
+
| {
|
|
5422
|
+
message: string
|
|
5423
|
+
is_access_code_error: true
|
|
5424
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5425
|
+
error_code: 'duplicate_code_on_device'
|
|
5426
|
+
}
|
|
5427
|
+
| {
|
|
5428
|
+
message: string
|
|
5429
|
+
is_access_code_error: true
|
|
5430
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5431
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
5432
|
+
}
|
|
5433
|
+
| {
|
|
5434
|
+
message: string
|
|
5435
|
+
is_access_code_error: true
|
|
5436
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5437
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
5438
|
+
}
|
|
5439
|
+
| {
|
|
5440
|
+
message: string
|
|
5441
|
+
is_access_code_error: true
|
|
5442
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5443
|
+
error_code: 'igloohome_bridge_offline'
|
|
5444
|
+
}
|
|
5445
|
+
| {
|
|
5446
|
+
message: string
|
|
5447
|
+
is_access_code_error: true
|
|
5448
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5449
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
5450
|
+
}
|
|
5451
|
+
| {
|
|
5452
|
+
message: string
|
|
5453
|
+
is_access_code_error: true
|
|
5454
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5455
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
5456
|
+
}
|
|
5457
|
+
| {
|
|
5458
|
+
message: string
|
|
5459
|
+
is_access_code_error: true
|
|
5460
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5461
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
5462
|
+
}
|
|
5463
|
+
| {
|
|
5464
|
+
message: string
|
|
5465
|
+
is_access_code_error: true
|
|
5466
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5467
|
+
error_code: 'code_modified_external_to_seam'
|
|
5468
|
+
}
|
|
5469
|
+
| {
|
|
5470
|
+
message: string
|
|
5471
|
+
is_access_code_error: true
|
|
5472
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5473
|
+
error_code: 'august_lock_invalid_code_length'
|
|
5474
|
+
}
|
|
5475
|
+
| {
|
|
5476
|
+
message: string
|
|
5477
|
+
is_access_code_error: true
|
|
5478
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5479
|
+
error_code: 'august_device_programming_delay'
|
|
5480
|
+
}
|
|
5481
|
+
| {
|
|
5482
|
+
message: string
|
|
5483
|
+
is_access_code_error: true
|
|
5484
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5485
|
+
error_code: 'august_device_slots_full'
|
|
5486
|
+
}
|
|
5487
|
+
| {
|
|
5488
|
+
message: string
|
|
5489
|
+
is_access_code_error: true
|
|
5490
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5491
|
+
error_code: 'august_lock_missing_keypad'
|
|
5492
|
+
}
|
|
5493
|
+
| {
|
|
5494
|
+
message: string
|
|
5495
|
+
is_access_code_error: true
|
|
5496
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5497
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
5498
|
+
}
|
|
5499
|
+
| {
|
|
5500
|
+
message: string
|
|
5501
|
+
is_access_code_error: true
|
|
5502
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5503
|
+
error_code: 'hubitat_device_programming_delay'
|
|
5504
|
+
}
|
|
5505
|
+
| {
|
|
5506
|
+
message: string
|
|
5507
|
+
is_access_code_error: true
|
|
5508
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5509
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
5510
|
+
}
|
|
5511
|
+
)
|
|
4093
5512
|
| (
|
|
4094
5513
|
| {
|
|
4095
5514
|
message: string
|
|
@@ -4170,17 +5589,74 @@ export interface Routes {
|
|
|
4170
5589
|
error_code: 'subscription_required'
|
|
4171
5590
|
}
|
|
4172
5591
|
)
|
|
5592
|
+
| (
|
|
5593
|
+
| {
|
|
5594
|
+
message: string
|
|
5595
|
+
is_connected_account_error: true
|
|
5596
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5597
|
+
error_code: 'account_disconnected'
|
|
5598
|
+
}
|
|
5599
|
+
| {
|
|
5600
|
+
message: string
|
|
5601
|
+
is_connected_account_error: true
|
|
5602
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5603
|
+
error_code: 'invalid_credentials'
|
|
5604
|
+
}
|
|
5605
|
+
)
|
|
5606
|
+
>
|
|
5607
|
+
/** 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. */
|
|
5608
|
+
warnings: Array<
|
|
4173
5609
|
| {
|
|
4174
5610
|
message: string
|
|
4175
|
-
|
|
4176
|
-
|
|
5611
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5612
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
5613
|
+
}
|
|
5614
|
+
| {
|
|
5615
|
+
message: string
|
|
5616
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5617
|
+
warning_code: 'schlage_detected_duplicate'
|
|
5618
|
+
}
|
|
5619
|
+
| {
|
|
5620
|
+
message: string
|
|
5621
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5622
|
+
warning_code: 'schlage_creation_outage'
|
|
5623
|
+
}
|
|
5624
|
+
| {
|
|
5625
|
+
message: string
|
|
5626
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5627
|
+
warning_code: 'code_modified_external_to_seam'
|
|
5628
|
+
}
|
|
5629
|
+
| {
|
|
5630
|
+
message: string
|
|
5631
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5632
|
+
warning_code: 'delay_in_setting_on_device'
|
|
5633
|
+
}
|
|
5634
|
+
| {
|
|
5635
|
+
message: string
|
|
5636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5637
|
+
warning_code: 'delay_in_removing_from_device'
|
|
5638
|
+
}
|
|
5639
|
+
| {
|
|
5640
|
+
message: string
|
|
5641
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5642
|
+
warning_code: 'third_party_integration_detected'
|
|
5643
|
+
}
|
|
5644
|
+
| {
|
|
5645
|
+
message: string
|
|
5646
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5647
|
+
warning_code: 'august_device_programming_delay'
|
|
5648
|
+
}
|
|
5649
|
+
| {
|
|
5650
|
+
message: string
|
|
5651
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5652
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
5653
|
+
}
|
|
5654
|
+
| {
|
|
5655
|
+
message: string
|
|
5656
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5657
|
+
warning_code: 'management_transferred'
|
|
4177
5658
|
}
|
|
4178
5659
|
>
|
|
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
5660
|
is_managed: false
|
|
4185
5661
|
/** Date and time at which the time-bound access code becomes active. */
|
|
4186
5662
|
starts_at?: (string | null) | undefined
|
|
@@ -4216,11 +5692,122 @@ export interface Routes {
|
|
|
4216
5692
|
created_at: string
|
|
4217
5693
|
/** 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
5694
|
errors: Array<
|
|
4219
|
-
|
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
5695
|
+
| (
|
|
5696
|
+
| {
|
|
5697
|
+
message: string
|
|
5698
|
+
is_access_code_error: true
|
|
5699
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5700
|
+
error_code: 'smartthings_failed_to_set_access_code'
|
|
5701
|
+
}
|
|
5702
|
+
| {
|
|
5703
|
+
message: string
|
|
5704
|
+
is_access_code_error: true
|
|
5705
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5706
|
+
error_code: 'smartthings_failed_to_set_after_multiple_retries'
|
|
5707
|
+
}
|
|
5708
|
+
| {
|
|
5709
|
+
message: string
|
|
5710
|
+
is_access_code_error: true
|
|
5711
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5712
|
+
error_code: 'failed_to_set_on_device'
|
|
5713
|
+
}
|
|
5714
|
+
| {
|
|
5715
|
+
message: string
|
|
5716
|
+
is_access_code_error: true
|
|
5717
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5718
|
+
error_code: 'failed_to_remove_from_device'
|
|
5719
|
+
}
|
|
5720
|
+
| {
|
|
5721
|
+
message: string
|
|
5722
|
+
is_access_code_error: true
|
|
5723
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5724
|
+
error_code: 'duplicate_code_on_device'
|
|
5725
|
+
}
|
|
5726
|
+
| {
|
|
5727
|
+
message: string
|
|
5728
|
+
is_access_code_error: true
|
|
5729
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5730
|
+
error_code: 'duplicate_code_attempt_prevented'
|
|
5731
|
+
}
|
|
5732
|
+
| {
|
|
5733
|
+
message: string
|
|
5734
|
+
is_access_code_error: true
|
|
5735
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5736
|
+
error_code: 'igloohome_bridge_too_many_pending_jobs'
|
|
5737
|
+
}
|
|
5738
|
+
| {
|
|
5739
|
+
message: string
|
|
5740
|
+
is_access_code_error: true
|
|
5741
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5742
|
+
error_code: 'igloohome_bridge_offline'
|
|
5743
|
+
}
|
|
5744
|
+
| {
|
|
5745
|
+
message: string
|
|
5746
|
+
is_access_code_error: true
|
|
5747
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5748
|
+
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
5749
|
+
}
|
|
5750
|
+
| {
|
|
5751
|
+
message: string
|
|
5752
|
+
is_access_code_error: true
|
|
5753
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5754
|
+
error_code: 'kwikset_unable_to_confirm_code'
|
|
5755
|
+
}
|
|
5756
|
+
| {
|
|
5757
|
+
message: string
|
|
5758
|
+
is_access_code_error: true
|
|
5759
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5760
|
+
error_code: 'kwikset_unable_to_confirm_deletion'
|
|
5761
|
+
}
|
|
5762
|
+
| {
|
|
5763
|
+
message: string
|
|
5764
|
+
is_access_code_error: true
|
|
5765
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5766
|
+
error_code: 'code_modified_external_to_seam'
|
|
5767
|
+
}
|
|
5768
|
+
| {
|
|
5769
|
+
message: string
|
|
5770
|
+
is_access_code_error: true
|
|
5771
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5772
|
+
error_code: 'august_lock_invalid_code_length'
|
|
5773
|
+
}
|
|
5774
|
+
| {
|
|
5775
|
+
message: string
|
|
5776
|
+
is_access_code_error: true
|
|
5777
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5778
|
+
error_code: 'august_device_programming_delay'
|
|
5779
|
+
}
|
|
5780
|
+
| {
|
|
5781
|
+
message: string
|
|
5782
|
+
is_access_code_error: true
|
|
5783
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5784
|
+
error_code: 'august_device_slots_full'
|
|
5785
|
+
}
|
|
5786
|
+
| {
|
|
5787
|
+
message: string
|
|
5788
|
+
is_access_code_error: true
|
|
5789
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5790
|
+
error_code: 'august_lock_missing_keypad'
|
|
5791
|
+
}
|
|
5792
|
+
| {
|
|
5793
|
+
message: string
|
|
5794
|
+
is_access_code_error: true
|
|
5795
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5796
|
+
error_code: 'salto_site_user_not_subscribed'
|
|
5797
|
+
}
|
|
5798
|
+
| {
|
|
5799
|
+
message: string
|
|
5800
|
+
is_access_code_error: true
|
|
5801
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5802
|
+
error_code: 'hubitat_device_programming_delay'
|
|
5803
|
+
}
|
|
5804
|
+
| {
|
|
5805
|
+
message: string
|
|
5806
|
+
is_access_code_error: true
|
|
5807
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5808
|
+
error_code: 'hubitat_no_free_positions_available'
|
|
5809
|
+
}
|
|
5810
|
+
)
|
|
4224
5811
|
| (
|
|
4225
5812
|
| {
|
|
4226
5813
|
message: string
|
|
@@ -4301,17 +5888,74 @@ export interface Routes {
|
|
|
4301
5888
|
error_code: 'subscription_required'
|
|
4302
5889
|
}
|
|
4303
5890
|
)
|
|
5891
|
+
| (
|
|
5892
|
+
| {
|
|
5893
|
+
message: string
|
|
5894
|
+
is_connected_account_error: true
|
|
5895
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5896
|
+
error_code: 'account_disconnected'
|
|
5897
|
+
}
|
|
5898
|
+
| {
|
|
5899
|
+
message: string
|
|
5900
|
+
is_connected_account_error: true
|
|
5901
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5902
|
+
error_code: 'invalid_credentials'
|
|
5903
|
+
}
|
|
5904
|
+
)
|
|
5905
|
+
>
|
|
5906
|
+
/** 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. */
|
|
5907
|
+
warnings: Array<
|
|
4304
5908
|
| {
|
|
4305
5909
|
message: string
|
|
4306
|
-
|
|
4307
|
-
|
|
5910
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5911
|
+
warning_code: 'smartthings_failed_to_set_access_code'
|
|
5912
|
+
}
|
|
5913
|
+
| {
|
|
5914
|
+
message: string
|
|
5915
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5916
|
+
warning_code: 'schlage_detected_duplicate'
|
|
5917
|
+
}
|
|
5918
|
+
| {
|
|
5919
|
+
message: string
|
|
5920
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5921
|
+
warning_code: 'schlage_creation_outage'
|
|
5922
|
+
}
|
|
5923
|
+
| {
|
|
5924
|
+
message: string
|
|
5925
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5926
|
+
warning_code: 'code_modified_external_to_seam'
|
|
5927
|
+
}
|
|
5928
|
+
| {
|
|
5929
|
+
message: string
|
|
5930
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5931
|
+
warning_code: 'delay_in_setting_on_device'
|
|
5932
|
+
}
|
|
5933
|
+
| {
|
|
5934
|
+
message: string
|
|
5935
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5936
|
+
warning_code: 'delay_in_removing_from_device'
|
|
5937
|
+
}
|
|
5938
|
+
| {
|
|
5939
|
+
message: string
|
|
5940
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5941
|
+
warning_code: 'third_party_integration_detected'
|
|
5942
|
+
}
|
|
5943
|
+
| {
|
|
5944
|
+
message: string
|
|
5945
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5946
|
+
warning_code: 'august_device_programming_delay'
|
|
5947
|
+
}
|
|
5948
|
+
| {
|
|
5949
|
+
message: string
|
|
5950
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5951
|
+
warning_code: 'igloo_algopin_must_be_used_within_24_hours'
|
|
5952
|
+
}
|
|
5953
|
+
| {
|
|
5954
|
+
message: string
|
|
5955
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5956
|
+
warning_code: 'management_transferred'
|
|
4308
5957
|
}
|
|
4309
5958
|
>
|
|
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
5959
|
is_managed: false
|
|
4316
5960
|
/** Date and time at which the time-bound access code becomes active. */
|
|
4317
5961
|
starts_at?: (string | null) | undefined
|
|
@@ -4589,6 +6233,18 @@ export interface Routes {
|
|
|
4589
6233
|
credential_id?: string | undefined
|
|
4590
6234
|
}
|
|
4591
6235
|
| undefined
|
|
6236
|
+
/** Vostio-specific metadata for the credential. */
|
|
6237
|
+
assa_abloy_vostio_metadata?:
|
|
6238
|
+
| {
|
|
6239
|
+
override_guest_acs_entrance_ids?:
|
|
6240
|
+
| string[]
|
|
6241
|
+
| undefined
|
|
6242
|
+
key_id?: string | undefined
|
|
6243
|
+
key_issuing_request_id?: string | undefined
|
|
6244
|
+
door_names?: string[] | undefined
|
|
6245
|
+
endpoint_id?: string | undefined
|
|
6246
|
+
}
|
|
6247
|
+
| undefined
|
|
4592
6248
|
is_managed: true
|
|
4593
6249
|
}
|
|
4594
6250
|
| {
|
|
@@ -4713,6 +6369,18 @@ export interface Routes {
|
|
|
4713
6369
|
credential_id?: string | undefined
|
|
4714
6370
|
}
|
|
4715
6371
|
| undefined
|
|
6372
|
+
/** Vostio-specific metadata for the credential. */
|
|
6373
|
+
assa_abloy_vostio_metadata?:
|
|
6374
|
+
| {
|
|
6375
|
+
override_guest_acs_entrance_ids?:
|
|
6376
|
+
| string[]
|
|
6377
|
+
| undefined
|
|
6378
|
+
key_id?: string | undefined
|
|
6379
|
+
key_issuing_request_id?: string | undefined
|
|
6380
|
+
door_names?: string[] | undefined
|
|
6381
|
+
endpoint_id?: string | undefined
|
|
6382
|
+
}
|
|
6383
|
+
| undefined
|
|
4716
6384
|
is_managed: false
|
|
4717
6385
|
}
|
|
4718
6386
|
)
|
|
@@ -4884,6 +6552,16 @@ export interface Routes {
|
|
|
4884
6552
|
credential_id?: string | undefined
|
|
4885
6553
|
}
|
|
4886
6554
|
| undefined
|
|
6555
|
+
/** Vostio-specific metadata for the credential. */
|
|
6556
|
+
assa_abloy_vostio_metadata?:
|
|
6557
|
+
| {
|
|
6558
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
6559
|
+
key_id?: string | undefined
|
|
6560
|
+
key_issuing_request_id?: string | undefined
|
|
6561
|
+
door_names?: string[] | undefined
|
|
6562
|
+
endpoint_id?: string | undefined
|
|
6563
|
+
}
|
|
6564
|
+
| undefined
|
|
4887
6565
|
is_managed: true
|
|
4888
6566
|
}
|
|
4889
6567
|
| {
|
|
@@ -5008,6 +6686,16 @@ export interface Routes {
|
|
|
5008
6686
|
credential_id?: string | undefined
|
|
5009
6687
|
}
|
|
5010
6688
|
| undefined
|
|
6689
|
+
/** Vostio-specific metadata for the credential. */
|
|
6690
|
+
assa_abloy_vostio_metadata?:
|
|
6691
|
+
| {
|
|
6692
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
6693
|
+
key_id?: string | undefined
|
|
6694
|
+
key_issuing_request_id?: string | undefined
|
|
6695
|
+
door_names?: string[] | undefined
|
|
6696
|
+
endpoint_id?: string | undefined
|
|
6697
|
+
}
|
|
6698
|
+
| undefined
|
|
5011
6699
|
is_managed: false
|
|
5012
6700
|
}
|
|
5013
6701
|
}
|
|
@@ -6025,6 +7713,16 @@ export interface Routes {
|
|
|
6025
7713
|
credential_id?: string | undefined
|
|
6026
7714
|
}
|
|
6027
7715
|
| undefined
|
|
7716
|
+
/** Vostio-specific metadata for the credential. */
|
|
7717
|
+
assa_abloy_vostio_metadata?:
|
|
7718
|
+
| {
|
|
7719
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
7720
|
+
key_id?: string | undefined
|
|
7721
|
+
key_issuing_request_id?: string | undefined
|
|
7722
|
+
door_names?: string[] | undefined
|
|
7723
|
+
endpoint_id?: string | undefined
|
|
7724
|
+
}
|
|
7725
|
+
| undefined
|
|
6028
7726
|
is_managed: true
|
|
6029
7727
|
}
|
|
6030
7728
|
}
|
|
@@ -6211,6 +7909,16 @@ export interface Routes {
|
|
|
6211
7909
|
credential_id?: string | undefined
|
|
6212
7910
|
}
|
|
6213
7911
|
| undefined
|
|
7912
|
+
/** Vostio-specific metadata for the credential. */
|
|
7913
|
+
assa_abloy_vostio_metadata?:
|
|
7914
|
+
| {
|
|
7915
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
7916
|
+
key_id?: string | undefined
|
|
7917
|
+
key_issuing_request_id?: string | undefined
|
|
7918
|
+
door_names?: string[] | undefined
|
|
7919
|
+
endpoint_id?: string | undefined
|
|
7920
|
+
}
|
|
7921
|
+
| undefined
|
|
6214
7922
|
is_managed: true
|
|
6215
7923
|
}
|
|
6216
7924
|
}
|
|
@@ -6358,6 +8066,16 @@ export interface Routes {
|
|
|
6358
8066
|
credential_id?: string | undefined
|
|
6359
8067
|
}
|
|
6360
8068
|
| undefined
|
|
8069
|
+
/** Vostio-specific metadata for the credential. */
|
|
8070
|
+
assa_abloy_vostio_metadata?:
|
|
8071
|
+
| {
|
|
8072
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8073
|
+
key_id?: string | undefined
|
|
8074
|
+
key_issuing_request_id?: string | undefined
|
|
8075
|
+
door_names?: string[] | undefined
|
|
8076
|
+
endpoint_id?: string | undefined
|
|
8077
|
+
}
|
|
8078
|
+
| undefined
|
|
6361
8079
|
is_managed: true
|
|
6362
8080
|
}
|
|
6363
8081
|
}
|
|
@@ -6509,6 +8227,16 @@ export interface Routes {
|
|
|
6509
8227
|
credential_id?: string | undefined
|
|
6510
8228
|
}
|
|
6511
8229
|
| undefined
|
|
8230
|
+
/** Vostio-specific metadata for the credential. */
|
|
8231
|
+
assa_abloy_vostio_metadata?:
|
|
8232
|
+
| {
|
|
8233
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8234
|
+
key_id?: string | undefined
|
|
8235
|
+
key_issuing_request_id?: string | undefined
|
|
8236
|
+
door_names?: string[] | undefined
|
|
8237
|
+
endpoint_id?: string | undefined
|
|
8238
|
+
}
|
|
8239
|
+
| undefined
|
|
6512
8240
|
is_managed: true
|
|
6513
8241
|
}
|
|
6514
8242
|
}
|
|
@@ -6669,6 +8397,16 @@ export interface Routes {
|
|
|
6669
8397
|
credential_id?: string | undefined
|
|
6670
8398
|
}
|
|
6671
8399
|
| undefined
|
|
8400
|
+
/** Vostio-specific metadata for the credential. */
|
|
8401
|
+
assa_abloy_vostio_metadata?:
|
|
8402
|
+
| {
|
|
8403
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8404
|
+
key_id?: string | undefined
|
|
8405
|
+
key_issuing_request_id?: string | undefined
|
|
8406
|
+
door_names?: string[] | undefined
|
|
8407
|
+
endpoint_id?: string | undefined
|
|
8408
|
+
}
|
|
8409
|
+
| undefined
|
|
6672
8410
|
is_managed: true
|
|
6673
8411
|
}>
|
|
6674
8412
|
}
|
|
@@ -6899,6 +8637,16 @@ export interface Routes {
|
|
|
6899
8637
|
credential_id?: string | undefined
|
|
6900
8638
|
}
|
|
6901
8639
|
| undefined
|
|
8640
|
+
/** Vostio-specific metadata for the credential. */
|
|
8641
|
+
assa_abloy_vostio_metadata?:
|
|
8642
|
+
| {
|
|
8643
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8644
|
+
key_id?: string | undefined
|
|
8645
|
+
key_issuing_request_id?: string | undefined
|
|
8646
|
+
door_names?: string[] | undefined
|
|
8647
|
+
endpoint_id?: string | undefined
|
|
8648
|
+
}
|
|
8649
|
+
| undefined
|
|
6902
8650
|
is_managed: true
|
|
6903
8651
|
}
|
|
6904
8652
|
}
|
|
@@ -7038,6 +8786,16 @@ export interface Routes {
|
|
|
7038
8786
|
credential_id?: string | undefined
|
|
7039
8787
|
}
|
|
7040
8788
|
| undefined
|
|
8789
|
+
/** Vostio-specific metadata for the credential. */
|
|
8790
|
+
assa_abloy_vostio_metadata?:
|
|
8791
|
+
| {
|
|
8792
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8793
|
+
key_id?: string | undefined
|
|
8794
|
+
key_issuing_request_id?: string | undefined
|
|
8795
|
+
door_names?: string[] | undefined
|
|
8796
|
+
endpoint_id?: string | undefined
|
|
8797
|
+
}
|
|
8798
|
+
| undefined
|
|
7041
8799
|
is_managed: false
|
|
7042
8800
|
}
|
|
7043
8801
|
}
|
|
@@ -7190,6 +8948,16 @@ export interface Routes {
|
|
|
7190
8948
|
credential_id?: string | undefined
|
|
7191
8949
|
}
|
|
7192
8950
|
| undefined
|
|
8951
|
+
/** Vostio-specific metadata for the credential. */
|
|
8952
|
+
assa_abloy_vostio_metadata?:
|
|
8953
|
+
| {
|
|
8954
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8955
|
+
key_id?: string | undefined
|
|
8956
|
+
key_issuing_request_id?: string | undefined
|
|
8957
|
+
door_names?: string[] | undefined
|
|
8958
|
+
endpoint_id?: string | undefined
|
|
8959
|
+
}
|
|
8960
|
+
| undefined
|
|
7193
8961
|
is_managed: false
|
|
7194
8962
|
}>
|
|
7195
8963
|
}
|
|
@@ -7333,6 +9101,16 @@ export interface Routes {
|
|
|
7333
9101
|
credential_id?: string | undefined
|
|
7334
9102
|
}
|
|
7335
9103
|
| undefined
|
|
9104
|
+
/** Vostio-specific metadata for the credential. */
|
|
9105
|
+
assa_abloy_vostio_metadata?:
|
|
9106
|
+
| {
|
|
9107
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
9108
|
+
key_id?: string | undefined
|
|
9109
|
+
key_issuing_request_id?: string | undefined
|
|
9110
|
+
door_names?: string[] | undefined
|
|
9111
|
+
endpoint_id?: string | undefined
|
|
9112
|
+
}
|
|
9113
|
+
| undefined
|
|
7336
9114
|
is_managed: true
|
|
7337
9115
|
}
|
|
7338
9116
|
}
|
|
@@ -7575,6 +9353,18 @@ export interface Routes {
|
|
|
7575
9353
|
credential_id?: string | undefined
|
|
7576
9354
|
}
|
|
7577
9355
|
| undefined
|
|
9356
|
+
/** Vostio-specific metadata for the credential. */
|
|
9357
|
+
assa_abloy_vostio_metadata?:
|
|
9358
|
+
| {
|
|
9359
|
+
override_guest_acs_entrance_ids?:
|
|
9360
|
+
| string[]
|
|
9361
|
+
| undefined
|
|
9362
|
+
key_id?: string | undefined
|
|
9363
|
+
key_issuing_request_id?: string | undefined
|
|
9364
|
+
door_names?: string[] | undefined
|
|
9365
|
+
endpoint_id?: string | undefined
|
|
9366
|
+
}
|
|
9367
|
+
| undefined
|
|
7578
9368
|
is_managed: true
|
|
7579
9369
|
}
|
|
7580
9370
|
| {
|
|
@@ -7699,6 +9489,18 @@ export interface Routes {
|
|
|
7699
9489
|
credential_id?: string | undefined
|
|
7700
9490
|
}
|
|
7701
9491
|
| undefined
|
|
9492
|
+
/** Vostio-specific metadata for the credential. */
|
|
9493
|
+
assa_abloy_vostio_metadata?:
|
|
9494
|
+
| {
|
|
9495
|
+
override_guest_acs_entrance_ids?:
|
|
9496
|
+
| string[]
|
|
9497
|
+
| undefined
|
|
9498
|
+
key_id?: string | undefined
|
|
9499
|
+
key_issuing_request_id?: string | undefined
|
|
9500
|
+
door_names?: string[] | undefined
|
|
9501
|
+
endpoint_id?: string | undefined
|
|
9502
|
+
}
|
|
9503
|
+
| undefined
|
|
7702
9504
|
is_managed: false
|
|
7703
9505
|
}
|
|
7704
9506
|
)
|
|
@@ -7870,6 +9672,16 @@ export interface Routes {
|
|
|
7870
9672
|
credential_id?: string | undefined
|
|
7871
9673
|
}
|
|
7872
9674
|
| undefined
|
|
9675
|
+
/** Vostio-specific metadata for the credential. */
|
|
9676
|
+
assa_abloy_vostio_metadata?:
|
|
9677
|
+
| {
|
|
9678
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
9679
|
+
key_id?: string | undefined
|
|
9680
|
+
key_issuing_request_id?: string | undefined
|
|
9681
|
+
door_names?: string[] | undefined
|
|
9682
|
+
endpoint_id?: string | undefined
|
|
9683
|
+
}
|
|
9684
|
+
| undefined
|
|
7873
9685
|
is_managed: true
|
|
7874
9686
|
}
|
|
7875
9687
|
| {
|
|
@@ -7994,6 +9806,16 @@ export interface Routes {
|
|
|
7994
9806
|
credential_id?: string | undefined
|
|
7995
9807
|
}
|
|
7996
9808
|
| undefined
|
|
9809
|
+
/** Vostio-specific metadata for the credential. */
|
|
9810
|
+
assa_abloy_vostio_metadata?:
|
|
9811
|
+
| {
|
|
9812
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
9813
|
+
key_id?: string | undefined
|
|
9814
|
+
key_issuing_request_id?: string | undefined
|
|
9815
|
+
door_names?: string[] | undefined
|
|
9816
|
+
endpoint_id?: string | undefined
|
|
9817
|
+
}
|
|
9818
|
+
| undefined
|
|
7997
9819
|
is_managed: false
|
|
7998
9820
|
}
|
|
7999
9821
|
}
|
|
@@ -8613,6 +10435,18 @@ export interface Routes {
|
|
|
8613
10435
|
credential_id?: string | undefined
|
|
8614
10436
|
}
|
|
8615
10437
|
| undefined
|
|
10438
|
+
/** Vostio-specific metadata for the credential. */
|
|
10439
|
+
assa_abloy_vostio_metadata?:
|
|
10440
|
+
| {
|
|
10441
|
+
override_guest_acs_entrance_ids?:
|
|
10442
|
+
| string[]
|
|
10443
|
+
| undefined
|
|
10444
|
+
key_id?: string | undefined
|
|
10445
|
+
key_issuing_request_id?: string | undefined
|
|
10446
|
+
door_names?: string[] | undefined
|
|
10447
|
+
endpoint_id?: string | undefined
|
|
10448
|
+
}
|
|
10449
|
+
| undefined
|
|
8616
10450
|
is_managed: true
|
|
8617
10451
|
}
|
|
8618
10452
|
| {
|
|
@@ -8737,6 +10571,18 @@ export interface Routes {
|
|
|
8737
10571
|
credential_id?: string | undefined
|
|
8738
10572
|
}
|
|
8739
10573
|
| undefined
|
|
10574
|
+
/** Vostio-specific metadata for the credential. */
|
|
10575
|
+
assa_abloy_vostio_metadata?:
|
|
10576
|
+
| {
|
|
10577
|
+
override_guest_acs_entrance_ids?:
|
|
10578
|
+
| string[]
|
|
10579
|
+
| undefined
|
|
10580
|
+
key_id?: string | undefined
|
|
10581
|
+
key_issuing_request_id?: string | undefined
|
|
10582
|
+
door_names?: string[] | undefined
|
|
10583
|
+
endpoint_id?: string | undefined
|
|
10584
|
+
}
|
|
10585
|
+
| undefined
|
|
8740
10586
|
is_managed: false
|
|
8741
10587
|
}
|
|
8742
10588
|
)
|
|
@@ -8908,6 +10754,16 @@ export interface Routes {
|
|
|
8908
10754
|
credential_id?: string | undefined
|
|
8909
10755
|
}
|
|
8910
10756
|
| undefined
|
|
10757
|
+
/** Vostio-specific metadata for the credential. */
|
|
10758
|
+
assa_abloy_vostio_metadata?:
|
|
10759
|
+
| {
|
|
10760
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
10761
|
+
key_id?: string | undefined
|
|
10762
|
+
key_issuing_request_id?: string | undefined
|
|
10763
|
+
door_names?: string[] | undefined
|
|
10764
|
+
endpoint_id?: string | undefined
|
|
10765
|
+
}
|
|
10766
|
+
| undefined
|
|
8911
10767
|
is_managed: true
|
|
8912
10768
|
}
|
|
8913
10769
|
| {
|
|
@@ -9032,6 +10888,16 @@ export interface Routes {
|
|
|
9032
10888
|
credential_id?: string | undefined
|
|
9033
10889
|
}
|
|
9034
10890
|
| undefined
|
|
10891
|
+
/** Vostio-specific metadata for the credential. */
|
|
10892
|
+
assa_abloy_vostio_metadata?:
|
|
10893
|
+
| {
|
|
10894
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
10895
|
+
key_id?: string | undefined
|
|
10896
|
+
key_issuing_request_id?: string | undefined
|
|
10897
|
+
door_names?: string[] | undefined
|
|
10898
|
+
endpoint_id?: string | undefined
|
|
10899
|
+
}
|
|
10900
|
+
| undefined
|
|
9035
10901
|
is_managed: false
|
|
9036
10902
|
}
|
|
9037
10903
|
}
|
|
@@ -9777,6 +11643,16 @@ export interface Routes {
|
|
|
9777
11643
|
credential_id?: string | undefined
|
|
9778
11644
|
}
|
|
9779
11645
|
| undefined
|
|
11646
|
+
/** Vostio-specific metadata for the credential. */
|
|
11647
|
+
assa_abloy_vostio_metadata?:
|
|
11648
|
+
| {
|
|
11649
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
11650
|
+
key_id?: string | undefined
|
|
11651
|
+
key_issuing_request_id?: string | undefined
|
|
11652
|
+
door_names?: string[] | undefined
|
|
11653
|
+
endpoint_id?: string | undefined
|
|
11654
|
+
}
|
|
11655
|
+
| undefined
|
|
9780
11656
|
is_managed: true
|
|
9781
11657
|
}>
|
|
9782
11658
|
}
|
|
@@ -11417,6 +13293,18 @@ export interface Routes {
|
|
|
11417
13293
|
credential_id?: string | undefined
|
|
11418
13294
|
}
|
|
11419
13295
|
| undefined
|
|
13296
|
+
/** Vostio-specific metadata for the credential. */
|
|
13297
|
+
assa_abloy_vostio_metadata?:
|
|
13298
|
+
| {
|
|
13299
|
+
override_guest_acs_entrance_ids?:
|
|
13300
|
+
| string[]
|
|
13301
|
+
| undefined
|
|
13302
|
+
key_id?: string | undefined
|
|
13303
|
+
key_issuing_request_id?: string | undefined
|
|
13304
|
+
door_names?: string[] | undefined
|
|
13305
|
+
endpoint_id?: string | undefined
|
|
13306
|
+
}
|
|
13307
|
+
| undefined
|
|
11420
13308
|
is_managed: true
|
|
11421
13309
|
}
|
|
11422
13310
|
| {
|
|
@@ -11541,6 +13429,18 @@ export interface Routes {
|
|
|
11541
13429
|
credential_id?: string | undefined
|
|
11542
13430
|
}
|
|
11543
13431
|
| undefined
|
|
13432
|
+
/** Vostio-specific metadata for the credential. */
|
|
13433
|
+
assa_abloy_vostio_metadata?:
|
|
13434
|
+
| {
|
|
13435
|
+
override_guest_acs_entrance_ids?:
|
|
13436
|
+
| string[]
|
|
13437
|
+
| undefined
|
|
13438
|
+
key_id?: string | undefined
|
|
13439
|
+
key_issuing_request_id?: string | undefined
|
|
13440
|
+
door_names?: string[] | undefined
|
|
13441
|
+
endpoint_id?: string | undefined
|
|
13442
|
+
}
|
|
13443
|
+
| undefined
|
|
11544
13444
|
is_managed: false
|
|
11545
13445
|
}
|
|
11546
13446
|
)
|
|
@@ -11712,6 +13612,16 @@ export interface Routes {
|
|
|
11712
13612
|
credential_id?: string | undefined
|
|
11713
13613
|
}
|
|
11714
13614
|
| undefined
|
|
13615
|
+
/** Vostio-specific metadata for the credential. */
|
|
13616
|
+
assa_abloy_vostio_metadata?:
|
|
13617
|
+
| {
|
|
13618
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
13619
|
+
key_id?: string | undefined
|
|
13620
|
+
key_issuing_request_id?: string | undefined
|
|
13621
|
+
door_names?: string[] | undefined
|
|
13622
|
+
endpoint_id?: string | undefined
|
|
13623
|
+
}
|
|
13624
|
+
| undefined
|
|
11715
13625
|
is_managed: true
|
|
11716
13626
|
}
|
|
11717
13627
|
| {
|
|
@@ -11836,6 +13746,16 @@ export interface Routes {
|
|
|
11836
13746
|
credential_id?: string | undefined
|
|
11837
13747
|
}
|
|
11838
13748
|
| undefined
|
|
13749
|
+
/** Vostio-specific metadata for the credential. */
|
|
13750
|
+
assa_abloy_vostio_metadata?:
|
|
13751
|
+
| {
|
|
13752
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
13753
|
+
key_id?: string | undefined
|
|
13754
|
+
key_issuing_request_id?: string | undefined
|
|
13755
|
+
door_names?: string[] | undefined
|
|
13756
|
+
endpoint_id?: string | undefined
|
|
13757
|
+
}
|
|
13758
|
+
| undefined
|
|
11839
13759
|
is_managed: false
|
|
11840
13760
|
}
|
|
11841
13761
|
}
|
|
@@ -12404,6 +14324,18 @@ export interface Routes {
|
|
|
12404
14324
|
credential_id?: string | undefined
|
|
12405
14325
|
}
|
|
12406
14326
|
| undefined
|
|
14327
|
+
/** Vostio-specific metadata for the credential. */
|
|
14328
|
+
assa_abloy_vostio_metadata?:
|
|
14329
|
+
| {
|
|
14330
|
+
override_guest_acs_entrance_ids?:
|
|
14331
|
+
| string[]
|
|
14332
|
+
| undefined
|
|
14333
|
+
key_id?: string | undefined
|
|
14334
|
+
key_issuing_request_id?: string | undefined
|
|
14335
|
+
door_names?: string[] | undefined
|
|
14336
|
+
endpoint_id?: string | undefined
|
|
14337
|
+
}
|
|
14338
|
+
| undefined
|
|
12407
14339
|
is_managed: true
|
|
12408
14340
|
}
|
|
12409
14341
|
| {
|
|
@@ -12528,6 +14460,18 @@ export interface Routes {
|
|
|
12528
14460
|
credential_id?: string | undefined
|
|
12529
14461
|
}
|
|
12530
14462
|
| undefined
|
|
14463
|
+
/** Vostio-specific metadata for the credential. */
|
|
14464
|
+
assa_abloy_vostio_metadata?:
|
|
14465
|
+
| {
|
|
14466
|
+
override_guest_acs_entrance_ids?:
|
|
14467
|
+
| string[]
|
|
14468
|
+
| undefined
|
|
14469
|
+
key_id?: string | undefined
|
|
14470
|
+
key_issuing_request_id?: string | undefined
|
|
14471
|
+
door_names?: string[] | undefined
|
|
14472
|
+
endpoint_id?: string | undefined
|
|
14473
|
+
}
|
|
14474
|
+
| undefined
|
|
12531
14475
|
is_managed: false
|
|
12532
14476
|
}
|
|
12533
14477
|
)
|
|
@@ -12699,6 +14643,16 @@ export interface Routes {
|
|
|
12699
14643
|
credential_id?: string | undefined
|
|
12700
14644
|
}
|
|
12701
14645
|
| undefined
|
|
14646
|
+
/** Vostio-specific metadata for the credential. */
|
|
14647
|
+
assa_abloy_vostio_metadata?:
|
|
14648
|
+
| {
|
|
14649
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
14650
|
+
key_id?: string | undefined
|
|
14651
|
+
key_issuing_request_id?: string | undefined
|
|
14652
|
+
door_names?: string[] | undefined
|
|
14653
|
+
endpoint_id?: string | undefined
|
|
14654
|
+
}
|
|
14655
|
+
| undefined
|
|
12702
14656
|
is_managed: true
|
|
12703
14657
|
}
|
|
12704
14658
|
| {
|
|
@@ -12823,6 +14777,16 @@ export interface Routes {
|
|
|
12823
14777
|
credential_id?: string | undefined
|
|
12824
14778
|
}
|
|
12825
14779
|
| undefined
|
|
14780
|
+
/** Vostio-specific metadata for the credential. */
|
|
14781
|
+
assa_abloy_vostio_metadata?:
|
|
14782
|
+
| {
|
|
14783
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
14784
|
+
key_id?: string | undefined
|
|
14785
|
+
key_issuing_request_id?: string | undefined
|
|
14786
|
+
door_names?: string[] | undefined
|
|
14787
|
+
endpoint_id?: string | undefined
|
|
14788
|
+
}
|
|
14789
|
+
| undefined
|
|
12826
14790
|
is_managed: false
|
|
12827
14791
|
}
|
|
12828
14792
|
}
|
|
@@ -13557,15 +15521,25 @@ export interface Routes {
|
|
|
13557
15521
|
| undefined
|
|
13558
15522
|
account_type?: string | undefined
|
|
13559
15523
|
account_type_display_name: string
|
|
13560
|
-
errors: Array<
|
|
13561
|
-
|
|
13562
|
-
|
|
13563
|
-
|
|
13564
|
-
|
|
15524
|
+
errors: Array<
|
|
15525
|
+
| {
|
|
15526
|
+
message: string
|
|
15527
|
+
is_connected_account_error: true
|
|
15528
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15529
|
+
error_code: 'account_disconnected'
|
|
15530
|
+
}
|
|
15531
|
+
| {
|
|
15532
|
+
message: string
|
|
15533
|
+
is_connected_account_error: true
|
|
15534
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15535
|
+
error_code: 'invalid_credentials'
|
|
15536
|
+
}
|
|
15537
|
+
>
|
|
13565
15538
|
warnings: Array<
|
|
13566
15539
|
| {
|
|
13567
15540
|
message: string
|
|
13568
|
-
|
|
15541
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15542
|
+
warning_code: 'scheduled_maintenance_window'
|
|
13569
15543
|
}
|
|
13570
15544
|
| {
|
|
13571
15545
|
message: string
|
|
@@ -13605,15 +15579,25 @@ export interface Routes {
|
|
|
13605
15579
|
| undefined
|
|
13606
15580
|
account_type?: string | undefined
|
|
13607
15581
|
account_type_display_name: string
|
|
13608
|
-
errors: Array<
|
|
13609
|
-
|
|
13610
|
-
|
|
13611
|
-
|
|
13612
|
-
|
|
15582
|
+
errors: Array<
|
|
15583
|
+
| {
|
|
15584
|
+
message: string
|
|
15585
|
+
is_connected_account_error: true
|
|
15586
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15587
|
+
error_code: 'account_disconnected'
|
|
15588
|
+
}
|
|
15589
|
+
| {
|
|
15590
|
+
message: string
|
|
15591
|
+
is_connected_account_error: true
|
|
15592
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15593
|
+
error_code: 'invalid_credentials'
|
|
15594
|
+
}
|
|
15595
|
+
>
|
|
13613
15596
|
warnings: Array<
|
|
13614
15597
|
| {
|
|
13615
15598
|
message: string
|
|
13616
|
-
|
|
15599
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15600
|
+
warning_code: 'scheduled_maintenance_window'
|
|
13617
15601
|
}
|
|
13618
15602
|
| {
|
|
13619
15603
|
message: string
|
|
@@ -13653,15 +15637,25 @@ export interface Routes {
|
|
|
13653
15637
|
| undefined
|
|
13654
15638
|
account_type?: string | undefined
|
|
13655
15639
|
account_type_display_name: string
|
|
13656
|
-
errors: Array<
|
|
13657
|
-
|
|
13658
|
-
|
|
13659
|
-
|
|
13660
|
-
|
|
15640
|
+
errors: Array<
|
|
15641
|
+
| {
|
|
15642
|
+
message: string
|
|
15643
|
+
is_connected_account_error: true
|
|
15644
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15645
|
+
error_code: 'account_disconnected'
|
|
15646
|
+
}
|
|
15647
|
+
| {
|
|
15648
|
+
message: string
|
|
15649
|
+
is_connected_account_error: true
|
|
15650
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15651
|
+
error_code: 'invalid_credentials'
|
|
15652
|
+
}
|
|
15653
|
+
>
|
|
13661
15654
|
warnings: Array<
|
|
13662
15655
|
| {
|
|
13663
15656
|
message: string
|
|
13664
|
-
|
|
15657
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15658
|
+
warning_code: 'scheduled_maintenance_window'
|
|
13665
15659
|
}
|
|
13666
15660
|
| {
|
|
13667
15661
|
message: string
|
|
@@ -14449,11 +16443,20 @@ export interface Routes {
|
|
|
14449
16443
|
error_code: 'subscription_required'
|
|
14450
16444
|
}
|
|
14451
16445
|
)
|
|
14452
|
-
|
|
|
14453
|
-
|
|
14454
|
-
|
|
14455
|
-
|
|
14456
|
-
|
|
16446
|
+
| (
|
|
16447
|
+
| {
|
|
16448
|
+
message: string
|
|
16449
|
+
is_connected_account_error: true
|
|
16450
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16451
|
+
error_code: 'account_disconnected'
|
|
16452
|
+
}
|
|
16453
|
+
| {
|
|
16454
|
+
message: string
|
|
16455
|
+
is_connected_account_error: true
|
|
16456
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16457
|
+
error_code: 'invalid_credentials'
|
|
16458
|
+
}
|
|
16459
|
+
)
|
|
14457
16460
|
>
|
|
14458
16461
|
/** 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
16462
|
warnings: Array<
|
|
@@ -15486,11 +17489,20 @@ export interface Routes {
|
|
|
15486
17489
|
error_code: 'subscription_required'
|
|
15487
17490
|
}
|
|
15488
17491
|
)
|
|
15489
|
-
|
|
|
15490
|
-
|
|
15491
|
-
|
|
15492
|
-
|
|
15493
|
-
|
|
17492
|
+
| (
|
|
17493
|
+
| {
|
|
17494
|
+
message: string
|
|
17495
|
+
is_connected_account_error: true
|
|
17496
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17497
|
+
error_code: 'account_disconnected'
|
|
17498
|
+
}
|
|
17499
|
+
| {
|
|
17500
|
+
message: string
|
|
17501
|
+
is_connected_account_error: true
|
|
17502
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17503
|
+
error_code: 'invalid_credentials'
|
|
17504
|
+
}
|
|
17505
|
+
)
|
|
15494
17506
|
>
|
|
15495
17507
|
/** 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
17508
|
warnings: Array<
|
|
@@ -15866,11 +17878,20 @@ export interface Routes {
|
|
|
15866
17878
|
error_code: 'subscription_required'
|
|
15867
17879
|
}
|
|
15868
17880
|
)
|
|
15869
|
-
|
|
|
15870
|
-
|
|
15871
|
-
|
|
15872
|
-
|
|
15873
|
-
|
|
17881
|
+
| (
|
|
17882
|
+
| {
|
|
17883
|
+
message: string
|
|
17884
|
+
is_connected_account_error: true
|
|
17885
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17886
|
+
error_code: 'account_disconnected'
|
|
17887
|
+
}
|
|
17888
|
+
| {
|
|
17889
|
+
message: string
|
|
17890
|
+
is_connected_account_error: true
|
|
17891
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17892
|
+
error_code: 'invalid_credentials'
|
|
17893
|
+
}
|
|
17894
|
+
)
|
|
15874
17895
|
>
|
|
15875
17896
|
/** 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
17897
|
warnings: Array<
|
|
@@ -16349,11 +18370,20 @@ export interface Routes {
|
|
|
16349
18370
|
error_code: 'subscription_required'
|
|
16350
18371
|
}
|
|
16351
18372
|
)
|
|
16352
|
-
|
|
|
16353
|
-
|
|
16354
|
-
|
|
16355
|
-
|
|
16356
|
-
|
|
18373
|
+
| (
|
|
18374
|
+
| {
|
|
18375
|
+
message: string
|
|
18376
|
+
is_connected_account_error: true
|
|
18377
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18378
|
+
error_code: 'account_disconnected'
|
|
18379
|
+
}
|
|
18380
|
+
| {
|
|
18381
|
+
message: string
|
|
18382
|
+
is_connected_account_error: true
|
|
18383
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18384
|
+
error_code: 'invalid_credentials'
|
|
18385
|
+
}
|
|
18386
|
+
)
|
|
16357
18387
|
>
|
|
16358
18388
|
/** 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
18389
|
warnings: Array<
|
|
@@ -20012,11 +22042,20 @@ export interface Routes {
|
|
|
20012
22042
|
error_code: 'subscription_required'
|
|
20013
22043
|
}
|
|
20014
22044
|
)
|
|
20015
|
-
|
|
|
20016
|
-
|
|
20017
|
-
|
|
20018
|
-
|
|
20019
|
-
|
|
22045
|
+
| (
|
|
22046
|
+
| {
|
|
22047
|
+
message: string
|
|
22048
|
+
is_connected_account_error: true
|
|
22049
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22050
|
+
error_code: 'account_disconnected'
|
|
22051
|
+
}
|
|
22052
|
+
| {
|
|
22053
|
+
message: string
|
|
22054
|
+
is_connected_account_error: true
|
|
22055
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22056
|
+
error_code: 'invalid_credentials'
|
|
22057
|
+
}
|
|
22058
|
+
)
|
|
20020
22059
|
>
|
|
20021
22060
|
/** 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
22061
|
warnings: Array<
|
|
@@ -20866,11 +22905,20 @@ export interface Routes {
|
|
|
20866
22905
|
error_code: 'subscription_required'
|
|
20867
22906
|
}
|
|
20868
22907
|
)
|
|
20869
|
-
|
|
|
20870
|
-
|
|
20871
|
-
|
|
20872
|
-
|
|
20873
|
-
|
|
22908
|
+
| (
|
|
22909
|
+
| {
|
|
22910
|
+
message: string
|
|
22911
|
+
is_connected_account_error: true
|
|
22912
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22913
|
+
error_code: 'account_disconnected'
|
|
22914
|
+
}
|
|
22915
|
+
| {
|
|
22916
|
+
message: string
|
|
22917
|
+
is_connected_account_error: true
|
|
22918
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22919
|
+
error_code: 'invalid_credentials'
|
|
22920
|
+
}
|
|
22921
|
+
)
|
|
20874
22922
|
>
|
|
20875
22923
|
/** 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
22924
|
warnings: Array<
|
|
@@ -21903,11 +23951,20 @@ export interface Routes {
|
|
|
21903
23951
|
error_code: 'subscription_required'
|
|
21904
23952
|
}
|
|
21905
23953
|
)
|
|
21906
|
-
|
|
|
21907
|
-
|
|
21908
|
-
|
|
21909
|
-
|
|
21910
|
-
|
|
23954
|
+
| (
|
|
23955
|
+
| {
|
|
23956
|
+
message: string
|
|
23957
|
+
is_connected_account_error: true
|
|
23958
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23959
|
+
error_code: 'account_disconnected'
|
|
23960
|
+
}
|
|
23961
|
+
| {
|
|
23962
|
+
message: string
|
|
23963
|
+
is_connected_account_error: true
|
|
23964
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23965
|
+
error_code: 'invalid_credentials'
|
|
23966
|
+
}
|
|
23967
|
+
)
|
|
21911
23968
|
>
|
|
21912
23969
|
/** 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
23970
|
warnings: Array<
|
|
@@ -22756,11 +24813,20 @@ export interface Routes {
|
|
|
22756
24813
|
error_code: 'subscription_required'
|
|
22757
24814
|
}
|
|
22758
24815
|
)
|
|
22759
|
-
|
|
|
22760
|
-
|
|
22761
|
-
|
|
22762
|
-
|
|
22763
|
-
|
|
24816
|
+
| (
|
|
24817
|
+
| {
|
|
24818
|
+
message: string
|
|
24819
|
+
is_connected_account_error: true
|
|
24820
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24821
|
+
error_code: 'account_disconnected'
|
|
24822
|
+
}
|
|
24823
|
+
| {
|
|
24824
|
+
message: string
|
|
24825
|
+
is_connected_account_error: true
|
|
24826
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24827
|
+
error_code: 'invalid_credentials'
|
|
24828
|
+
}
|
|
24829
|
+
)
|
|
22764
24830
|
>
|
|
22765
24831
|
/** 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
24832
|
warnings: Array<
|
|
@@ -23095,6 +25161,18 @@ export interface Routes {
|
|
|
23095
25161
|
credential_id?: string | undefined
|
|
23096
25162
|
}
|
|
23097
25163
|
| undefined
|
|
25164
|
+
/** Vostio-specific metadata for the credential. */
|
|
25165
|
+
assa_abloy_vostio_metadata?:
|
|
25166
|
+
| {
|
|
25167
|
+
override_guest_acs_entrance_ids?:
|
|
25168
|
+
| string[]
|
|
25169
|
+
| undefined
|
|
25170
|
+
key_id?: string | undefined
|
|
25171
|
+
key_issuing_request_id?: string | undefined
|
|
25172
|
+
door_names?: string[] | undefined
|
|
25173
|
+
endpoint_id?: string | undefined
|
|
25174
|
+
}
|
|
25175
|
+
| undefined
|
|
23098
25176
|
is_managed: true
|
|
23099
25177
|
}
|
|
23100
25178
|
| {
|
|
@@ -23219,6 +25297,18 @@ export interface Routes {
|
|
|
23219
25297
|
credential_id?: string | undefined
|
|
23220
25298
|
}
|
|
23221
25299
|
| undefined
|
|
25300
|
+
/** Vostio-specific metadata for the credential. */
|
|
25301
|
+
assa_abloy_vostio_metadata?:
|
|
25302
|
+
| {
|
|
25303
|
+
override_guest_acs_entrance_ids?:
|
|
25304
|
+
| string[]
|
|
25305
|
+
| undefined
|
|
25306
|
+
key_id?: string | undefined
|
|
25307
|
+
key_issuing_request_id?: string | undefined
|
|
25308
|
+
door_names?: string[] | undefined
|
|
25309
|
+
endpoint_id?: string | undefined
|
|
25310
|
+
}
|
|
25311
|
+
| undefined
|
|
23222
25312
|
is_managed: false
|
|
23223
25313
|
}
|
|
23224
25314
|
)
|
|
@@ -23390,6 +25480,16 @@ export interface Routes {
|
|
|
23390
25480
|
credential_id?: string | undefined
|
|
23391
25481
|
}
|
|
23392
25482
|
| undefined
|
|
25483
|
+
/** Vostio-specific metadata for the credential. */
|
|
25484
|
+
assa_abloy_vostio_metadata?:
|
|
25485
|
+
| {
|
|
25486
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
25487
|
+
key_id?: string | undefined
|
|
25488
|
+
key_issuing_request_id?: string | undefined
|
|
25489
|
+
door_names?: string[] | undefined
|
|
25490
|
+
endpoint_id?: string | undefined
|
|
25491
|
+
}
|
|
25492
|
+
| undefined
|
|
23393
25493
|
is_managed: true
|
|
23394
25494
|
}
|
|
23395
25495
|
| {
|
|
@@ -23514,6 +25614,16 @@ export interface Routes {
|
|
|
23514
25614
|
credential_id?: string | undefined
|
|
23515
25615
|
}
|
|
23516
25616
|
| undefined
|
|
25617
|
+
/** Vostio-specific metadata for the credential. */
|
|
25618
|
+
assa_abloy_vostio_metadata?:
|
|
25619
|
+
| {
|
|
25620
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
25621
|
+
key_id?: string | undefined
|
|
25622
|
+
key_issuing_request_id?: string | undefined
|
|
25623
|
+
door_names?: string[] | undefined
|
|
25624
|
+
endpoint_id?: string | undefined
|
|
25625
|
+
}
|
|
25626
|
+
| undefined
|
|
23517
25627
|
is_managed: false
|
|
23518
25628
|
}
|
|
23519
25629
|
}
|
|
@@ -24084,6 +26194,18 @@ export interface Routes {
|
|
|
24084
26194
|
credential_id?: string | undefined
|
|
24085
26195
|
}
|
|
24086
26196
|
| undefined
|
|
26197
|
+
/** Vostio-specific metadata for the credential. */
|
|
26198
|
+
assa_abloy_vostio_metadata?:
|
|
26199
|
+
| {
|
|
26200
|
+
override_guest_acs_entrance_ids?:
|
|
26201
|
+
| string[]
|
|
26202
|
+
| undefined
|
|
26203
|
+
key_id?: string | undefined
|
|
26204
|
+
key_issuing_request_id?: string | undefined
|
|
26205
|
+
door_names?: string[] | undefined
|
|
26206
|
+
endpoint_id?: string | undefined
|
|
26207
|
+
}
|
|
26208
|
+
| undefined
|
|
24087
26209
|
is_managed: true
|
|
24088
26210
|
}
|
|
24089
26211
|
| {
|
|
@@ -24208,6 +26330,18 @@ export interface Routes {
|
|
|
24208
26330
|
credential_id?: string | undefined
|
|
24209
26331
|
}
|
|
24210
26332
|
| undefined
|
|
26333
|
+
/** Vostio-specific metadata for the credential. */
|
|
26334
|
+
assa_abloy_vostio_metadata?:
|
|
26335
|
+
| {
|
|
26336
|
+
override_guest_acs_entrance_ids?:
|
|
26337
|
+
| string[]
|
|
26338
|
+
| undefined
|
|
26339
|
+
key_id?: string | undefined
|
|
26340
|
+
key_issuing_request_id?: string | undefined
|
|
26341
|
+
door_names?: string[] | undefined
|
|
26342
|
+
endpoint_id?: string | undefined
|
|
26343
|
+
}
|
|
26344
|
+
| undefined
|
|
24211
26345
|
is_managed: false
|
|
24212
26346
|
}
|
|
24213
26347
|
)
|
|
@@ -24379,6 +26513,16 @@ export interface Routes {
|
|
|
24379
26513
|
credential_id?: string | undefined
|
|
24380
26514
|
}
|
|
24381
26515
|
| undefined
|
|
26516
|
+
/** Vostio-specific metadata for the credential. */
|
|
26517
|
+
assa_abloy_vostio_metadata?:
|
|
26518
|
+
| {
|
|
26519
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
26520
|
+
key_id?: string | undefined
|
|
26521
|
+
key_issuing_request_id?: string | undefined
|
|
26522
|
+
door_names?: string[] | undefined
|
|
26523
|
+
endpoint_id?: string | undefined
|
|
26524
|
+
}
|
|
26525
|
+
| undefined
|
|
24382
26526
|
is_managed: true
|
|
24383
26527
|
}
|
|
24384
26528
|
| {
|
|
@@ -24503,6 +26647,16 @@ export interface Routes {
|
|
|
24503
26647
|
credential_id?: string | undefined
|
|
24504
26648
|
}
|
|
24505
26649
|
| undefined
|
|
26650
|
+
/** Vostio-specific metadata for the credential. */
|
|
26651
|
+
assa_abloy_vostio_metadata?:
|
|
26652
|
+
| {
|
|
26653
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
26654
|
+
key_id?: string | undefined
|
|
26655
|
+
key_issuing_request_id?: string | undefined
|
|
26656
|
+
door_names?: string[] | undefined
|
|
26657
|
+
endpoint_id?: string | undefined
|
|
26658
|
+
}
|
|
26659
|
+
| undefined
|
|
24506
26660
|
is_managed: false
|
|
24507
26661
|
}
|
|
24508
26662
|
}
|
|
@@ -25806,11 +27960,20 @@ export interface Routes {
|
|
|
25806
27960
|
error_code: 'subscription_required'
|
|
25807
27961
|
}
|
|
25808
27962
|
)
|
|
25809
|
-
|
|
|
25810
|
-
|
|
25811
|
-
|
|
25812
|
-
|
|
25813
|
-
|
|
27963
|
+
| (
|
|
27964
|
+
| {
|
|
27965
|
+
message: string
|
|
27966
|
+
is_connected_account_error: true
|
|
27967
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27968
|
+
error_code: 'account_disconnected'
|
|
27969
|
+
}
|
|
27970
|
+
| {
|
|
27971
|
+
message: string
|
|
27972
|
+
is_connected_account_error: true
|
|
27973
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27974
|
+
error_code: 'invalid_credentials'
|
|
27975
|
+
}
|
|
27976
|
+
)
|
|
25814
27977
|
>
|
|
25815
27978
|
/** 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
27979
|
warnings: Array<
|
|
@@ -26659,11 +28822,20 @@ export interface Routes {
|
|
|
26659
28822
|
error_code: 'subscription_required'
|
|
26660
28823
|
}
|
|
26661
28824
|
)
|
|
26662
|
-
|
|
|
26663
|
-
|
|
26664
|
-
|
|
26665
|
-
|
|
26666
|
-
|
|
28825
|
+
| (
|
|
28826
|
+
| {
|
|
28827
|
+
message: string
|
|
28828
|
+
is_connected_account_error: true
|
|
28829
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28830
|
+
error_code: 'account_disconnected'
|
|
28831
|
+
}
|
|
28832
|
+
| {
|
|
28833
|
+
message: string
|
|
28834
|
+
is_connected_account_error: true
|
|
28835
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28836
|
+
error_code: 'invalid_credentials'
|
|
28837
|
+
}
|
|
28838
|
+
)
|
|
26667
28839
|
>
|
|
26668
28840
|
/** 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
28841
|
warnings: Array<
|
|
@@ -27003,6 +29175,18 @@ export interface Routes {
|
|
|
27003
29175
|
credential_id?: string | undefined
|
|
27004
29176
|
}
|
|
27005
29177
|
| undefined
|
|
29178
|
+
/** Vostio-specific metadata for the credential. */
|
|
29179
|
+
assa_abloy_vostio_metadata?:
|
|
29180
|
+
| {
|
|
29181
|
+
override_guest_acs_entrance_ids?:
|
|
29182
|
+
| string[]
|
|
29183
|
+
| undefined
|
|
29184
|
+
key_id?: string | undefined
|
|
29185
|
+
key_issuing_request_id?: string | undefined
|
|
29186
|
+
door_names?: string[] | undefined
|
|
29187
|
+
endpoint_id?: string | undefined
|
|
29188
|
+
}
|
|
29189
|
+
| undefined
|
|
27006
29190
|
is_managed: true
|
|
27007
29191
|
}
|
|
27008
29192
|
| {
|
|
@@ -27127,6 +29311,18 @@ export interface Routes {
|
|
|
27127
29311
|
credential_id?: string | undefined
|
|
27128
29312
|
}
|
|
27129
29313
|
| undefined
|
|
29314
|
+
/** Vostio-specific metadata for the credential. */
|
|
29315
|
+
assa_abloy_vostio_metadata?:
|
|
29316
|
+
| {
|
|
29317
|
+
override_guest_acs_entrance_ids?:
|
|
29318
|
+
| string[]
|
|
29319
|
+
| undefined
|
|
29320
|
+
key_id?: string | undefined
|
|
29321
|
+
key_issuing_request_id?: string | undefined
|
|
29322
|
+
door_names?: string[] | undefined
|
|
29323
|
+
endpoint_id?: string | undefined
|
|
29324
|
+
}
|
|
29325
|
+
| undefined
|
|
27130
29326
|
is_managed: false
|
|
27131
29327
|
}
|
|
27132
29328
|
)
|
|
@@ -27298,6 +29494,16 @@ export interface Routes {
|
|
|
27298
29494
|
credential_id?: string | undefined
|
|
27299
29495
|
}
|
|
27300
29496
|
| undefined
|
|
29497
|
+
/** Vostio-specific metadata for the credential. */
|
|
29498
|
+
assa_abloy_vostio_metadata?:
|
|
29499
|
+
| {
|
|
29500
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
29501
|
+
key_id?: string | undefined
|
|
29502
|
+
key_issuing_request_id?: string | undefined
|
|
29503
|
+
door_names?: string[] | undefined
|
|
29504
|
+
endpoint_id?: string | undefined
|
|
29505
|
+
}
|
|
29506
|
+
| undefined
|
|
27301
29507
|
is_managed: true
|
|
27302
29508
|
}
|
|
27303
29509
|
| {
|
|
@@ -27422,6 +29628,16 @@ export interface Routes {
|
|
|
27422
29628
|
credential_id?: string | undefined
|
|
27423
29629
|
}
|
|
27424
29630
|
| undefined
|
|
29631
|
+
/** Vostio-specific metadata for the credential. */
|
|
29632
|
+
assa_abloy_vostio_metadata?:
|
|
29633
|
+
| {
|
|
29634
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
29635
|
+
key_id?: string | undefined
|
|
29636
|
+
key_issuing_request_id?: string | undefined
|
|
29637
|
+
door_names?: string[] | undefined
|
|
29638
|
+
endpoint_id?: string | undefined
|
|
29639
|
+
}
|
|
29640
|
+
| undefined
|
|
27425
29641
|
is_managed: false
|
|
27426
29642
|
}
|
|
27427
29643
|
}
|
|
@@ -28003,6 +30219,18 @@ export interface Routes {
|
|
|
28003
30219
|
credential_id?: string | undefined
|
|
28004
30220
|
}
|
|
28005
30221
|
| undefined
|
|
30222
|
+
/** Vostio-specific metadata for the credential. */
|
|
30223
|
+
assa_abloy_vostio_metadata?:
|
|
30224
|
+
| {
|
|
30225
|
+
override_guest_acs_entrance_ids?:
|
|
30226
|
+
| string[]
|
|
30227
|
+
| undefined
|
|
30228
|
+
key_id?: string | undefined
|
|
30229
|
+
key_issuing_request_id?: string | undefined
|
|
30230
|
+
door_names?: string[] | undefined
|
|
30231
|
+
endpoint_id?: string | undefined
|
|
30232
|
+
}
|
|
30233
|
+
| undefined
|
|
28006
30234
|
is_managed: true
|
|
28007
30235
|
}
|
|
28008
30236
|
| {
|
|
@@ -28127,6 +30355,18 @@ export interface Routes {
|
|
|
28127
30355
|
credential_id?: string | undefined
|
|
28128
30356
|
}
|
|
28129
30357
|
| undefined
|
|
30358
|
+
/** Vostio-specific metadata for the credential. */
|
|
30359
|
+
assa_abloy_vostio_metadata?:
|
|
30360
|
+
| {
|
|
30361
|
+
override_guest_acs_entrance_ids?:
|
|
30362
|
+
| string[]
|
|
30363
|
+
| undefined
|
|
30364
|
+
key_id?: string | undefined
|
|
30365
|
+
key_issuing_request_id?: string | undefined
|
|
30366
|
+
door_names?: string[] | undefined
|
|
30367
|
+
endpoint_id?: string | undefined
|
|
30368
|
+
}
|
|
30369
|
+
| undefined
|
|
28130
30370
|
is_managed: false
|
|
28131
30371
|
}
|
|
28132
30372
|
)
|
|
@@ -28298,6 +30538,16 @@ export interface Routes {
|
|
|
28298
30538
|
credential_id?: string | undefined
|
|
28299
30539
|
}
|
|
28300
30540
|
| undefined
|
|
30541
|
+
/** Vostio-specific metadata for the credential. */
|
|
30542
|
+
assa_abloy_vostio_metadata?:
|
|
30543
|
+
| {
|
|
30544
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
30545
|
+
key_id?: string | undefined
|
|
30546
|
+
key_issuing_request_id?: string | undefined
|
|
30547
|
+
door_names?: string[] | undefined
|
|
30548
|
+
endpoint_id?: string | undefined
|
|
30549
|
+
}
|
|
30550
|
+
| undefined
|
|
28301
30551
|
is_managed: true
|
|
28302
30552
|
}
|
|
28303
30553
|
| {
|
|
@@ -28422,6 +30672,16 @@ export interface Routes {
|
|
|
28422
30672
|
credential_id?: string | undefined
|
|
28423
30673
|
}
|
|
28424
30674
|
| undefined
|
|
30675
|
+
/** Vostio-specific metadata for the credential. */
|
|
30676
|
+
assa_abloy_vostio_metadata?:
|
|
30677
|
+
| {
|
|
30678
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
30679
|
+
key_id?: string | undefined
|
|
30680
|
+
key_issuing_request_id?: string | undefined
|
|
30681
|
+
door_names?: string[] | undefined
|
|
30682
|
+
endpoint_id?: string | undefined
|
|
30683
|
+
}
|
|
30684
|
+
| undefined
|
|
28425
30685
|
is_managed: false
|
|
28426
30686
|
}
|
|
28427
30687
|
}
|
|
@@ -29042,6 +31302,18 @@ export interface Routes {
|
|
|
29042
31302
|
credential_id?: string | undefined
|
|
29043
31303
|
}
|
|
29044
31304
|
| undefined
|
|
31305
|
+
/** Vostio-specific metadata for the credential. */
|
|
31306
|
+
assa_abloy_vostio_metadata?:
|
|
31307
|
+
| {
|
|
31308
|
+
override_guest_acs_entrance_ids?:
|
|
31309
|
+
| string[]
|
|
31310
|
+
| undefined
|
|
31311
|
+
key_id?: string | undefined
|
|
31312
|
+
key_issuing_request_id?: string | undefined
|
|
31313
|
+
door_names?: string[] | undefined
|
|
31314
|
+
endpoint_id?: string | undefined
|
|
31315
|
+
}
|
|
31316
|
+
| undefined
|
|
29045
31317
|
is_managed: true
|
|
29046
31318
|
}
|
|
29047
31319
|
| {
|
|
@@ -29166,6 +31438,18 @@ export interface Routes {
|
|
|
29166
31438
|
credential_id?: string | undefined
|
|
29167
31439
|
}
|
|
29168
31440
|
| undefined
|
|
31441
|
+
/** Vostio-specific metadata for the credential. */
|
|
31442
|
+
assa_abloy_vostio_metadata?:
|
|
31443
|
+
| {
|
|
31444
|
+
override_guest_acs_entrance_ids?:
|
|
31445
|
+
| string[]
|
|
31446
|
+
| undefined
|
|
31447
|
+
key_id?: string | undefined
|
|
31448
|
+
key_issuing_request_id?: string | undefined
|
|
31449
|
+
door_names?: string[] | undefined
|
|
31450
|
+
endpoint_id?: string | undefined
|
|
31451
|
+
}
|
|
31452
|
+
| undefined
|
|
29169
31453
|
is_managed: false
|
|
29170
31454
|
}
|
|
29171
31455
|
)
|
|
@@ -29337,6 +31621,16 @@ export interface Routes {
|
|
|
29337
31621
|
credential_id?: string | undefined
|
|
29338
31622
|
}
|
|
29339
31623
|
| undefined
|
|
31624
|
+
/** Vostio-specific metadata for the credential. */
|
|
31625
|
+
assa_abloy_vostio_metadata?:
|
|
31626
|
+
| {
|
|
31627
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
31628
|
+
key_id?: string | undefined
|
|
31629
|
+
key_issuing_request_id?: string | undefined
|
|
31630
|
+
door_names?: string[] | undefined
|
|
31631
|
+
endpoint_id?: string | undefined
|
|
31632
|
+
}
|
|
31633
|
+
| undefined
|
|
29340
31634
|
is_managed: true
|
|
29341
31635
|
}
|
|
29342
31636
|
| {
|
|
@@ -29461,6 +31755,16 @@ export interface Routes {
|
|
|
29461
31755
|
credential_id?: string | undefined
|
|
29462
31756
|
}
|
|
29463
31757
|
| undefined
|
|
31758
|
+
/** Vostio-specific metadata for the credential. */
|
|
31759
|
+
assa_abloy_vostio_metadata?:
|
|
31760
|
+
| {
|
|
31761
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
31762
|
+
key_id?: string | undefined
|
|
31763
|
+
key_issuing_request_id?: string | undefined
|
|
31764
|
+
door_names?: string[] | undefined
|
|
31765
|
+
endpoint_id?: string | undefined
|
|
31766
|
+
}
|
|
31767
|
+
| undefined
|
|
29464
31768
|
is_managed: false
|
|
29465
31769
|
}
|
|
29466
31770
|
}
|
|
@@ -29947,11 +32251,20 @@ export interface Routes {
|
|
|
29947
32251
|
error_code: 'subscription_required'
|
|
29948
32252
|
}
|
|
29949
32253
|
)
|
|
29950
|
-
|
|
|
29951
|
-
|
|
29952
|
-
|
|
29953
|
-
|
|
29954
|
-
|
|
32254
|
+
| (
|
|
32255
|
+
| {
|
|
32256
|
+
message: string
|
|
32257
|
+
is_connected_account_error: true
|
|
32258
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32259
|
+
error_code: 'account_disconnected'
|
|
32260
|
+
}
|
|
32261
|
+
| {
|
|
32262
|
+
message: string
|
|
32263
|
+
is_connected_account_error: true
|
|
32264
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32265
|
+
error_code: 'invalid_credentials'
|
|
32266
|
+
}
|
|
32267
|
+
)
|
|
29955
32268
|
>
|
|
29956
32269
|
/** 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
32270
|
warnings: Array<
|
|
@@ -30195,11 +32508,20 @@ export interface Routes {
|
|
|
30195
32508
|
error_code: 'subscription_required'
|
|
30196
32509
|
}
|
|
30197
32510
|
)
|
|
30198
|
-
|
|
|
30199
|
-
|
|
30200
|
-
|
|
30201
|
-
|
|
30202
|
-
|
|
32511
|
+
| (
|
|
32512
|
+
| {
|
|
32513
|
+
message: string
|
|
32514
|
+
is_connected_account_error: true
|
|
32515
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32516
|
+
error_code: 'account_disconnected'
|
|
32517
|
+
}
|
|
32518
|
+
| {
|
|
32519
|
+
message: string
|
|
32520
|
+
is_connected_account_error: true
|
|
32521
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32522
|
+
error_code: 'invalid_credentials'
|
|
32523
|
+
}
|
|
32524
|
+
)
|
|
30203
32525
|
>
|
|
30204
32526
|
/** 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
32527
|
warnings: Array<
|
|
@@ -30536,6 +32858,18 @@ export interface Routes {
|
|
|
30536
32858
|
credential_id?: string | undefined
|
|
30537
32859
|
}
|
|
30538
32860
|
| undefined
|
|
32861
|
+
/** Vostio-specific metadata for the credential. */
|
|
32862
|
+
assa_abloy_vostio_metadata?:
|
|
32863
|
+
| {
|
|
32864
|
+
override_guest_acs_entrance_ids?:
|
|
32865
|
+
| string[]
|
|
32866
|
+
| undefined
|
|
32867
|
+
key_id?: string | undefined
|
|
32868
|
+
key_issuing_request_id?: string | undefined
|
|
32869
|
+
door_names?: string[] | undefined
|
|
32870
|
+
endpoint_id?: string | undefined
|
|
32871
|
+
}
|
|
32872
|
+
| undefined
|
|
30539
32873
|
is_managed: true
|
|
30540
32874
|
}
|
|
30541
32875
|
| {
|
|
@@ -30660,6 +32994,18 @@ export interface Routes {
|
|
|
30660
32994
|
credential_id?: string | undefined
|
|
30661
32995
|
}
|
|
30662
32996
|
| undefined
|
|
32997
|
+
/** Vostio-specific metadata for the credential. */
|
|
32998
|
+
assa_abloy_vostio_metadata?:
|
|
32999
|
+
| {
|
|
33000
|
+
override_guest_acs_entrance_ids?:
|
|
33001
|
+
| string[]
|
|
33002
|
+
| undefined
|
|
33003
|
+
key_id?: string | undefined
|
|
33004
|
+
key_issuing_request_id?: string | undefined
|
|
33005
|
+
door_names?: string[] | undefined
|
|
33006
|
+
endpoint_id?: string | undefined
|
|
33007
|
+
}
|
|
33008
|
+
| undefined
|
|
30663
33009
|
is_managed: false
|
|
30664
33010
|
}
|
|
30665
33011
|
)
|
|
@@ -30831,6 +33177,16 @@ export interface Routes {
|
|
|
30831
33177
|
credential_id?: string | undefined
|
|
30832
33178
|
}
|
|
30833
33179
|
| undefined
|
|
33180
|
+
/** Vostio-specific metadata for the credential. */
|
|
33181
|
+
assa_abloy_vostio_metadata?:
|
|
33182
|
+
| {
|
|
33183
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
33184
|
+
key_id?: string | undefined
|
|
33185
|
+
key_issuing_request_id?: string | undefined
|
|
33186
|
+
door_names?: string[] | undefined
|
|
33187
|
+
endpoint_id?: string | undefined
|
|
33188
|
+
}
|
|
33189
|
+
| undefined
|
|
30834
33190
|
is_managed: true
|
|
30835
33191
|
}
|
|
30836
33192
|
| {
|
|
@@ -30955,6 +33311,16 @@ export interface Routes {
|
|
|
30955
33311
|
credential_id?: string | undefined
|
|
30956
33312
|
}
|
|
30957
33313
|
| undefined
|
|
33314
|
+
/** Vostio-specific metadata for the credential. */
|
|
33315
|
+
assa_abloy_vostio_metadata?:
|
|
33316
|
+
| {
|
|
33317
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
33318
|
+
key_id?: string | undefined
|
|
33319
|
+
key_issuing_request_id?: string | undefined
|
|
33320
|
+
door_names?: string[] | undefined
|
|
33321
|
+
endpoint_id?: string | undefined
|
|
33322
|
+
}
|
|
33323
|
+
| undefined
|
|
30958
33324
|
is_managed: false
|
|
30959
33325
|
}
|
|
30960
33326
|
}
|
|
@@ -31531,6 +33897,18 @@ export interface Routes {
|
|
|
31531
33897
|
credential_id?: string | undefined
|
|
31532
33898
|
}
|
|
31533
33899
|
| undefined
|
|
33900
|
+
/** Vostio-specific metadata for the credential. */
|
|
33901
|
+
assa_abloy_vostio_metadata?:
|
|
33902
|
+
| {
|
|
33903
|
+
override_guest_acs_entrance_ids?:
|
|
33904
|
+
| string[]
|
|
33905
|
+
| undefined
|
|
33906
|
+
key_id?: string | undefined
|
|
33907
|
+
key_issuing_request_id?: string | undefined
|
|
33908
|
+
door_names?: string[] | undefined
|
|
33909
|
+
endpoint_id?: string | undefined
|
|
33910
|
+
}
|
|
33911
|
+
| undefined
|
|
31534
33912
|
is_managed: true
|
|
31535
33913
|
}
|
|
31536
33914
|
| {
|
|
@@ -31655,6 +34033,18 @@ export interface Routes {
|
|
|
31655
34033
|
credential_id?: string | undefined
|
|
31656
34034
|
}
|
|
31657
34035
|
| undefined
|
|
34036
|
+
/** Vostio-specific metadata for the credential. */
|
|
34037
|
+
assa_abloy_vostio_metadata?:
|
|
34038
|
+
| {
|
|
34039
|
+
override_guest_acs_entrance_ids?:
|
|
34040
|
+
| string[]
|
|
34041
|
+
| undefined
|
|
34042
|
+
key_id?: string | undefined
|
|
34043
|
+
key_issuing_request_id?: string | undefined
|
|
34044
|
+
door_names?: string[] | undefined
|
|
34045
|
+
endpoint_id?: string | undefined
|
|
34046
|
+
}
|
|
34047
|
+
| undefined
|
|
31658
34048
|
is_managed: false
|
|
31659
34049
|
}
|
|
31660
34050
|
)
|
|
@@ -31826,6 +34216,16 @@ export interface Routes {
|
|
|
31826
34216
|
credential_id?: string | undefined
|
|
31827
34217
|
}
|
|
31828
34218
|
| undefined
|
|
34219
|
+
/** Vostio-specific metadata for the credential. */
|
|
34220
|
+
assa_abloy_vostio_metadata?:
|
|
34221
|
+
| {
|
|
34222
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
34223
|
+
key_id?: string | undefined
|
|
34224
|
+
key_issuing_request_id?: string | undefined
|
|
34225
|
+
door_names?: string[] | undefined
|
|
34226
|
+
endpoint_id?: string | undefined
|
|
34227
|
+
}
|
|
34228
|
+
| undefined
|
|
31829
34229
|
is_managed: true
|
|
31830
34230
|
}
|
|
31831
34231
|
| {
|
|
@@ -31950,6 +34350,16 @@ export interface Routes {
|
|
|
31950
34350
|
credential_id?: string | undefined
|
|
31951
34351
|
}
|
|
31952
34352
|
| undefined
|
|
34353
|
+
/** Vostio-specific metadata for the credential. */
|
|
34354
|
+
assa_abloy_vostio_metadata?:
|
|
34355
|
+
| {
|
|
34356
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
34357
|
+
key_id?: string | undefined
|
|
34358
|
+
key_issuing_request_id?: string | undefined
|
|
34359
|
+
door_names?: string[] | undefined
|
|
34360
|
+
endpoint_id?: string | undefined
|
|
34361
|
+
}
|
|
34362
|
+
| undefined
|
|
31953
34363
|
is_managed: false
|
|
31954
34364
|
}
|
|
31955
34365
|
}
|
|
@@ -33095,11 +35505,20 @@ export interface Routes {
|
|
|
33095
35505
|
error_code: 'subscription_required'
|
|
33096
35506
|
}
|
|
33097
35507
|
)
|
|
33098
|
-
|
|
|
33099
|
-
|
|
33100
|
-
|
|
33101
|
-
|
|
33102
|
-
|
|
35508
|
+
| (
|
|
35509
|
+
| {
|
|
35510
|
+
message: string
|
|
35511
|
+
is_connected_account_error: true
|
|
35512
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35513
|
+
error_code: 'account_disconnected'
|
|
35514
|
+
}
|
|
35515
|
+
| {
|
|
35516
|
+
message: string
|
|
35517
|
+
is_connected_account_error: true
|
|
35518
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35519
|
+
error_code: 'invalid_credentials'
|
|
35520
|
+
}
|
|
35521
|
+
)
|
|
33103
35522
|
>
|
|
33104
35523
|
/** 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
35524
|
warnings: Array<
|
|
@@ -33440,6 +35859,18 @@ export interface Routes {
|
|
|
33440
35859
|
credential_id?: string | undefined
|
|
33441
35860
|
}
|
|
33442
35861
|
| undefined
|
|
35862
|
+
/** Vostio-specific metadata for the credential. */
|
|
35863
|
+
assa_abloy_vostio_metadata?:
|
|
35864
|
+
| {
|
|
35865
|
+
override_guest_acs_entrance_ids?:
|
|
35866
|
+
| string[]
|
|
35867
|
+
| undefined
|
|
35868
|
+
key_id?: string | undefined
|
|
35869
|
+
key_issuing_request_id?: string | undefined
|
|
35870
|
+
door_names?: string[] | undefined
|
|
35871
|
+
endpoint_id?: string | undefined
|
|
35872
|
+
}
|
|
35873
|
+
| undefined
|
|
33443
35874
|
is_managed: true
|
|
33444
35875
|
}
|
|
33445
35876
|
| {
|
|
@@ -33564,6 +35995,18 @@ export interface Routes {
|
|
|
33564
35995
|
credential_id?: string | undefined
|
|
33565
35996
|
}
|
|
33566
35997
|
| undefined
|
|
35998
|
+
/** Vostio-specific metadata for the credential. */
|
|
35999
|
+
assa_abloy_vostio_metadata?:
|
|
36000
|
+
| {
|
|
36001
|
+
override_guest_acs_entrance_ids?:
|
|
36002
|
+
| string[]
|
|
36003
|
+
| undefined
|
|
36004
|
+
key_id?: string | undefined
|
|
36005
|
+
key_issuing_request_id?: string | undefined
|
|
36006
|
+
door_names?: string[] | undefined
|
|
36007
|
+
endpoint_id?: string | undefined
|
|
36008
|
+
}
|
|
36009
|
+
| undefined
|
|
33567
36010
|
is_managed: false
|
|
33568
36011
|
}
|
|
33569
36012
|
)
|
|
@@ -33735,6 +36178,16 @@ export interface Routes {
|
|
|
33735
36178
|
credential_id?: string | undefined
|
|
33736
36179
|
}
|
|
33737
36180
|
| undefined
|
|
36181
|
+
/** Vostio-specific metadata for the credential. */
|
|
36182
|
+
assa_abloy_vostio_metadata?:
|
|
36183
|
+
| {
|
|
36184
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
36185
|
+
key_id?: string | undefined
|
|
36186
|
+
key_issuing_request_id?: string | undefined
|
|
36187
|
+
door_names?: string[] | undefined
|
|
36188
|
+
endpoint_id?: string | undefined
|
|
36189
|
+
}
|
|
36190
|
+
| undefined
|
|
33738
36191
|
is_managed: true
|
|
33739
36192
|
}
|
|
33740
36193
|
| {
|
|
@@ -33859,6 +36312,16 @@ export interface Routes {
|
|
|
33859
36312
|
credential_id?: string | undefined
|
|
33860
36313
|
}
|
|
33861
36314
|
| undefined
|
|
36315
|
+
/** Vostio-specific metadata for the credential. */
|
|
36316
|
+
assa_abloy_vostio_metadata?:
|
|
36317
|
+
| {
|
|
36318
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
36319
|
+
key_id?: string | undefined
|
|
36320
|
+
key_issuing_request_id?: string | undefined
|
|
36321
|
+
door_names?: string[] | undefined
|
|
36322
|
+
endpoint_id?: string | undefined
|
|
36323
|
+
}
|
|
36324
|
+
| undefined
|
|
33862
36325
|
is_managed: false
|
|
33863
36326
|
}
|
|
33864
36327
|
}
|
|
@@ -34439,6 +36902,18 @@ export interface Routes {
|
|
|
34439
36902
|
credential_id?: string | undefined
|
|
34440
36903
|
}
|
|
34441
36904
|
| undefined
|
|
36905
|
+
/** Vostio-specific metadata for the credential. */
|
|
36906
|
+
assa_abloy_vostio_metadata?:
|
|
36907
|
+
| {
|
|
36908
|
+
override_guest_acs_entrance_ids?:
|
|
36909
|
+
| string[]
|
|
36910
|
+
| undefined
|
|
36911
|
+
key_id?: string | undefined
|
|
36912
|
+
key_issuing_request_id?: string | undefined
|
|
36913
|
+
door_names?: string[] | undefined
|
|
36914
|
+
endpoint_id?: string | undefined
|
|
36915
|
+
}
|
|
36916
|
+
| undefined
|
|
34442
36917
|
is_managed: true
|
|
34443
36918
|
}
|
|
34444
36919
|
| {
|
|
@@ -34563,6 +37038,18 @@ export interface Routes {
|
|
|
34563
37038
|
credential_id?: string | undefined
|
|
34564
37039
|
}
|
|
34565
37040
|
| undefined
|
|
37041
|
+
/** Vostio-specific metadata for the credential. */
|
|
37042
|
+
assa_abloy_vostio_metadata?:
|
|
37043
|
+
| {
|
|
37044
|
+
override_guest_acs_entrance_ids?:
|
|
37045
|
+
| string[]
|
|
37046
|
+
| undefined
|
|
37047
|
+
key_id?: string | undefined
|
|
37048
|
+
key_issuing_request_id?: string | undefined
|
|
37049
|
+
door_names?: string[] | undefined
|
|
37050
|
+
endpoint_id?: string | undefined
|
|
37051
|
+
}
|
|
37052
|
+
| undefined
|
|
34566
37053
|
is_managed: false
|
|
34567
37054
|
}
|
|
34568
37055
|
)
|
|
@@ -34734,6 +37221,16 @@ export interface Routes {
|
|
|
34734
37221
|
credential_id?: string | undefined
|
|
34735
37222
|
}
|
|
34736
37223
|
| undefined
|
|
37224
|
+
/** Vostio-specific metadata for the credential. */
|
|
37225
|
+
assa_abloy_vostio_metadata?:
|
|
37226
|
+
| {
|
|
37227
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
37228
|
+
key_id?: string | undefined
|
|
37229
|
+
key_issuing_request_id?: string | undefined
|
|
37230
|
+
door_names?: string[] | undefined
|
|
37231
|
+
endpoint_id?: string | undefined
|
|
37232
|
+
}
|
|
37233
|
+
| undefined
|
|
34737
37234
|
is_managed: true
|
|
34738
37235
|
}
|
|
34739
37236
|
| {
|
|
@@ -34858,6 +37355,16 @@ export interface Routes {
|
|
|
34858
37355
|
credential_id?: string | undefined
|
|
34859
37356
|
}
|
|
34860
37357
|
| undefined
|
|
37358
|
+
/** Vostio-specific metadata for the credential. */
|
|
37359
|
+
assa_abloy_vostio_metadata?:
|
|
37360
|
+
| {
|
|
37361
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
37362
|
+
key_id?: string | undefined
|
|
37363
|
+
key_issuing_request_id?: string | undefined
|
|
37364
|
+
door_names?: string[] | undefined
|
|
37365
|
+
endpoint_id?: string | undefined
|
|
37366
|
+
}
|
|
37367
|
+
| undefined
|
|
34861
37368
|
is_managed: false
|
|
34862
37369
|
}
|
|
34863
37370
|
}
|
|
@@ -36126,11 +38633,20 @@ export interface Routes {
|
|
|
36126
38633
|
error_code: 'subscription_required'
|
|
36127
38634
|
}
|
|
36128
38635
|
)
|
|
36129
|
-
|
|
|
36130
|
-
|
|
36131
|
-
|
|
36132
|
-
|
|
36133
|
-
|
|
38636
|
+
| (
|
|
38637
|
+
| {
|
|
38638
|
+
message: string
|
|
38639
|
+
is_connected_account_error: true
|
|
38640
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38641
|
+
error_code: 'account_disconnected'
|
|
38642
|
+
}
|
|
38643
|
+
| {
|
|
38644
|
+
message: string
|
|
38645
|
+
is_connected_account_error: true
|
|
38646
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38647
|
+
error_code: 'invalid_credentials'
|
|
38648
|
+
}
|
|
38649
|
+
)
|
|
36134
38650
|
>
|
|
36135
38651
|
/** 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
38652
|
warnings: Array<
|
|
@@ -36979,11 +39495,20 @@ export interface Routes {
|
|
|
36979
39495
|
error_code: 'subscription_required'
|
|
36980
39496
|
}
|
|
36981
39497
|
)
|
|
36982
|
-
|
|
|
36983
|
-
|
|
36984
|
-
|
|
36985
|
-
|
|
36986
|
-
|
|
39498
|
+
| (
|
|
39499
|
+
| {
|
|
39500
|
+
message: string
|
|
39501
|
+
is_connected_account_error: true
|
|
39502
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39503
|
+
error_code: 'account_disconnected'
|
|
39504
|
+
}
|
|
39505
|
+
| {
|
|
39506
|
+
message: string
|
|
39507
|
+
is_connected_account_error: true
|
|
39508
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39509
|
+
error_code: 'invalid_credentials'
|
|
39510
|
+
}
|
|
39511
|
+
)
|
|
36987
39512
|
>
|
|
36988
39513
|
/** 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
39514
|
warnings: Array<
|
|
@@ -37320,6 +39845,18 @@ export interface Routes {
|
|
|
37320
39845
|
credential_id?: string | undefined
|
|
37321
39846
|
}
|
|
37322
39847
|
| undefined
|
|
39848
|
+
/** Vostio-specific metadata for the credential. */
|
|
39849
|
+
assa_abloy_vostio_metadata?:
|
|
39850
|
+
| {
|
|
39851
|
+
override_guest_acs_entrance_ids?:
|
|
39852
|
+
| string[]
|
|
39853
|
+
| undefined
|
|
39854
|
+
key_id?: string | undefined
|
|
39855
|
+
key_issuing_request_id?: string | undefined
|
|
39856
|
+
door_names?: string[] | undefined
|
|
39857
|
+
endpoint_id?: string | undefined
|
|
39858
|
+
}
|
|
39859
|
+
| undefined
|
|
37323
39860
|
is_managed: true
|
|
37324
39861
|
}
|
|
37325
39862
|
| {
|
|
@@ -37444,6 +39981,18 @@ export interface Routes {
|
|
|
37444
39981
|
credential_id?: string | undefined
|
|
37445
39982
|
}
|
|
37446
39983
|
| undefined
|
|
39984
|
+
/** Vostio-specific metadata for the credential. */
|
|
39985
|
+
assa_abloy_vostio_metadata?:
|
|
39986
|
+
| {
|
|
39987
|
+
override_guest_acs_entrance_ids?:
|
|
39988
|
+
| string[]
|
|
39989
|
+
| undefined
|
|
39990
|
+
key_id?: string | undefined
|
|
39991
|
+
key_issuing_request_id?: string | undefined
|
|
39992
|
+
door_names?: string[] | undefined
|
|
39993
|
+
endpoint_id?: string | undefined
|
|
39994
|
+
}
|
|
39995
|
+
| undefined
|
|
37447
39996
|
is_managed: false
|
|
37448
39997
|
}
|
|
37449
39998
|
)
|
|
@@ -37615,6 +40164,16 @@ export interface Routes {
|
|
|
37615
40164
|
credential_id?: string | undefined
|
|
37616
40165
|
}
|
|
37617
40166
|
| undefined
|
|
40167
|
+
/** Vostio-specific metadata for the credential. */
|
|
40168
|
+
assa_abloy_vostio_metadata?:
|
|
40169
|
+
| {
|
|
40170
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
40171
|
+
key_id?: string | undefined
|
|
40172
|
+
key_issuing_request_id?: string | undefined
|
|
40173
|
+
door_names?: string[] | undefined
|
|
40174
|
+
endpoint_id?: string | undefined
|
|
40175
|
+
}
|
|
40176
|
+
| undefined
|
|
37618
40177
|
is_managed: true
|
|
37619
40178
|
}
|
|
37620
40179
|
| {
|
|
@@ -37739,6 +40298,16 @@ export interface Routes {
|
|
|
37739
40298
|
credential_id?: string | undefined
|
|
37740
40299
|
}
|
|
37741
40300
|
| undefined
|
|
40301
|
+
/** Vostio-specific metadata for the credential. */
|
|
40302
|
+
assa_abloy_vostio_metadata?:
|
|
40303
|
+
| {
|
|
40304
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
40305
|
+
key_id?: string | undefined
|
|
40306
|
+
key_issuing_request_id?: string | undefined
|
|
40307
|
+
door_names?: string[] | undefined
|
|
40308
|
+
endpoint_id?: string | undefined
|
|
40309
|
+
}
|
|
40310
|
+
| undefined
|
|
37742
40311
|
is_managed: false
|
|
37743
40312
|
}
|
|
37744
40313
|
}
|
|
@@ -38495,6 +41064,18 @@ export interface Routes {
|
|
|
38495
41064
|
credential_id?: string | undefined
|
|
38496
41065
|
}
|
|
38497
41066
|
| undefined
|
|
41067
|
+
/** Vostio-specific metadata for the credential. */
|
|
41068
|
+
assa_abloy_vostio_metadata?:
|
|
41069
|
+
| {
|
|
41070
|
+
override_guest_acs_entrance_ids?:
|
|
41071
|
+
| string[]
|
|
41072
|
+
| undefined
|
|
41073
|
+
key_id?: string | undefined
|
|
41074
|
+
key_issuing_request_id?: string | undefined
|
|
41075
|
+
door_names?: string[] | undefined
|
|
41076
|
+
endpoint_id?: string | undefined
|
|
41077
|
+
}
|
|
41078
|
+
| undefined
|
|
38498
41079
|
is_managed: true
|
|
38499
41080
|
}
|
|
38500
41081
|
| {
|
|
@@ -38619,6 +41200,18 @@ export interface Routes {
|
|
|
38619
41200
|
credential_id?: string | undefined
|
|
38620
41201
|
}
|
|
38621
41202
|
| undefined
|
|
41203
|
+
/** Vostio-specific metadata for the credential. */
|
|
41204
|
+
assa_abloy_vostio_metadata?:
|
|
41205
|
+
| {
|
|
41206
|
+
override_guest_acs_entrance_ids?:
|
|
41207
|
+
| string[]
|
|
41208
|
+
| undefined
|
|
41209
|
+
key_id?: string | undefined
|
|
41210
|
+
key_issuing_request_id?: string | undefined
|
|
41211
|
+
door_names?: string[] | undefined
|
|
41212
|
+
endpoint_id?: string | undefined
|
|
41213
|
+
}
|
|
41214
|
+
| undefined
|
|
38622
41215
|
is_managed: false
|
|
38623
41216
|
}
|
|
38624
41217
|
)
|
|
@@ -38790,6 +41383,16 @@ export interface Routes {
|
|
|
38790
41383
|
credential_id?: string | undefined
|
|
38791
41384
|
}
|
|
38792
41385
|
| undefined
|
|
41386
|
+
/** Vostio-specific metadata for the credential. */
|
|
41387
|
+
assa_abloy_vostio_metadata?:
|
|
41388
|
+
| {
|
|
41389
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
41390
|
+
key_id?: string | undefined
|
|
41391
|
+
key_issuing_request_id?: string | undefined
|
|
41392
|
+
door_names?: string[] | undefined
|
|
41393
|
+
endpoint_id?: string | undefined
|
|
41394
|
+
}
|
|
41395
|
+
| undefined
|
|
38793
41396
|
is_managed: true
|
|
38794
41397
|
}
|
|
38795
41398
|
| {
|
|
@@ -38914,6 +41517,16 @@ export interface Routes {
|
|
|
38914
41517
|
credential_id?: string | undefined
|
|
38915
41518
|
}
|
|
38916
41519
|
| undefined
|
|
41520
|
+
/** Vostio-specific metadata for the credential. */
|
|
41521
|
+
assa_abloy_vostio_metadata?:
|
|
41522
|
+
| {
|
|
41523
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
41524
|
+
key_id?: string | undefined
|
|
41525
|
+
key_issuing_request_id?: string | undefined
|
|
41526
|
+
door_names?: string[] | undefined
|
|
41527
|
+
endpoint_id?: string | undefined
|
|
41528
|
+
}
|
|
41529
|
+
| undefined
|
|
38917
41530
|
is_managed: false
|
|
38918
41531
|
}
|
|
38919
41532
|
}
|
|
@@ -39517,6 +42130,18 @@ export interface Routes {
|
|
|
39517
42130
|
credential_id?: string | undefined
|
|
39518
42131
|
}
|
|
39519
42132
|
| undefined
|
|
42133
|
+
/** Vostio-specific metadata for the credential. */
|
|
42134
|
+
assa_abloy_vostio_metadata?:
|
|
42135
|
+
| {
|
|
42136
|
+
override_guest_acs_entrance_ids?:
|
|
42137
|
+
| string[]
|
|
42138
|
+
| undefined
|
|
42139
|
+
key_id?: string | undefined
|
|
42140
|
+
key_issuing_request_id?: string | undefined
|
|
42141
|
+
door_names?: string[] | undefined
|
|
42142
|
+
endpoint_id?: string | undefined
|
|
42143
|
+
}
|
|
42144
|
+
| undefined
|
|
39520
42145
|
is_managed: true
|
|
39521
42146
|
}
|
|
39522
42147
|
| {
|
|
@@ -39641,6 +42266,18 @@ export interface Routes {
|
|
|
39641
42266
|
credential_id?: string | undefined
|
|
39642
42267
|
}
|
|
39643
42268
|
| undefined
|
|
42269
|
+
/** Vostio-specific metadata for the credential. */
|
|
42270
|
+
assa_abloy_vostio_metadata?:
|
|
42271
|
+
| {
|
|
42272
|
+
override_guest_acs_entrance_ids?:
|
|
42273
|
+
| string[]
|
|
42274
|
+
| undefined
|
|
42275
|
+
key_id?: string | undefined
|
|
42276
|
+
key_issuing_request_id?: string | undefined
|
|
42277
|
+
door_names?: string[] | undefined
|
|
42278
|
+
endpoint_id?: string | undefined
|
|
42279
|
+
}
|
|
42280
|
+
| undefined
|
|
39644
42281
|
is_managed: false
|
|
39645
42282
|
}
|
|
39646
42283
|
)
|
|
@@ -39812,6 +42449,16 @@ export interface Routes {
|
|
|
39812
42449
|
credential_id?: string | undefined
|
|
39813
42450
|
}
|
|
39814
42451
|
| undefined
|
|
42452
|
+
/** Vostio-specific metadata for the credential. */
|
|
42453
|
+
assa_abloy_vostio_metadata?:
|
|
42454
|
+
| {
|
|
42455
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
42456
|
+
key_id?: string | undefined
|
|
42457
|
+
key_issuing_request_id?: string | undefined
|
|
42458
|
+
door_names?: string[] | undefined
|
|
42459
|
+
endpoint_id?: string | undefined
|
|
42460
|
+
}
|
|
42461
|
+
| undefined
|
|
39815
42462
|
is_managed: true
|
|
39816
42463
|
}
|
|
39817
42464
|
| {
|
|
@@ -39936,6 +42583,16 @@ export interface Routes {
|
|
|
39936
42583
|
credential_id?: string | undefined
|
|
39937
42584
|
}
|
|
39938
42585
|
| undefined
|
|
42586
|
+
/** Vostio-specific metadata for the credential. */
|
|
42587
|
+
assa_abloy_vostio_metadata?:
|
|
42588
|
+
| {
|
|
42589
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
42590
|
+
key_id?: string | undefined
|
|
42591
|
+
key_issuing_request_id?: string | undefined
|
|
42592
|
+
door_names?: string[] | undefined
|
|
42593
|
+
endpoint_id?: string | undefined
|
|
42594
|
+
}
|
|
42595
|
+
| undefined
|
|
39939
42596
|
is_managed: false
|
|
39940
42597
|
}
|
|
39941
42598
|
}
|
|
@@ -41314,11 +43971,20 @@ export interface Routes {
|
|
|
41314
43971
|
error_code: 'subscription_required'
|
|
41315
43972
|
}
|
|
41316
43973
|
)
|
|
41317
|
-
|
|
|
41318
|
-
|
|
41319
|
-
|
|
41320
|
-
|
|
41321
|
-
|
|
43974
|
+
| (
|
|
43975
|
+
| {
|
|
43976
|
+
message: string
|
|
43977
|
+
is_connected_account_error: true
|
|
43978
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43979
|
+
error_code: 'account_disconnected'
|
|
43980
|
+
}
|
|
43981
|
+
| {
|
|
43982
|
+
message: string
|
|
43983
|
+
is_connected_account_error: true
|
|
43984
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43985
|
+
error_code: 'invalid_credentials'
|
|
43986
|
+
}
|
|
43987
|
+
)
|
|
41322
43988
|
>
|
|
41323
43989
|
/** 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
43990
|
warnings: Array<
|
|
@@ -42169,11 +44835,20 @@ export interface Routes {
|
|
|
42169
44835
|
error_code: 'subscription_required'
|
|
42170
44836
|
}
|
|
42171
44837
|
)
|
|
42172
|
-
|
|
|
42173
|
-
|
|
42174
|
-
|
|
42175
|
-
|
|
42176
|
-
|
|
44838
|
+
| (
|
|
44839
|
+
| {
|
|
44840
|
+
message: string
|
|
44841
|
+
is_connected_account_error: true
|
|
44842
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44843
|
+
error_code: 'account_disconnected'
|
|
44844
|
+
}
|
|
44845
|
+
| {
|
|
44846
|
+
message: string
|
|
44847
|
+
is_connected_account_error: true
|
|
44848
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44849
|
+
error_code: 'invalid_credentials'
|
|
44850
|
+
}
|
|
44851
|
+
)
|
|
42177
44852
|
>
|
|
42178
44853
|
/** 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
44854
|
warnings: Array<
|
|
@@ -43002,6 +45677,18 @@ export interface Routes {
|
|
|
43002
45677
|
credential_id?: string | undefined
|
|
43003
45678
|
}
|
|
43004
45679
|
| undefined
|
|
45680
|
+
/** Vostio-specific metadata for the credential. */
|
|
45681
|
+
assa_abloy_vostio_metadata?:
|
|
45682
|
+
| {
|
|
45683
|
+
override_guest_acs_entrance_ids?:
|
|
45684
|
+
| string[]
|
|
45685
|
+
| undefined
|
|
45686
|
+
key_id?: string | undefined
|
|
45687
|
+
key_issuing_request_id?: string | undefined
|
|
45688
|
+
door_names?: string[] | undefined
|
|
45689
|
+
endpoint_id?: string | undefined
|
|
45690
|
+
}
|
|
45691
|
+
| undefined
|
|
43005
45692
|
is_managed: true
|
|
43006
45693
|
}
|
|
43007
45694
|
| {
|
|
@@ -43126,6 +45813,18 @@ export interface Routes {
|
|
|
43126
45813
|
credential_id?: string | undefined
|
|
43127
45814
|
}
|
|
43128
45815
|
| undefined
|
|
45816
|
+
/** Vostio-specific metadata for the credential. */
|
|
45817
|
+
assa_abloy_vostio_metadata?:
|
|
45818
|
+
| {
|
|
45819
|
+
override_guest_acs_entrance_ids?:
|
|
45820
|
+
| string[]
|
|
45821
|
+
| undefined
|
|
45822
|
+
key_id?: string | undefined
|
|
45823
|
+
key_issuing_request_id?: string | undefined
|
|
45824
|
+
door_names?: string[] | undefined
|
|
45825
|
+
endpoint_id?: string | undefined
|
|
45826
|
+
}
|
|
45827
|
+
| undefined
|
|
43129
45828
|
is_managed: false
|
|
43130
45829
|
}
|
|
43131
45830
|
)
|
|
@@ -43297,6 +45996,16 @@ export interface Routes {
|
|
|
43297
45996
|
credential_id?: string | undefined
|
|
43298
45997
|
}
|
|
43299
45998
|
| undefined
|
|
45999
|
+
/** Vostio-specific metadata for the credential. */
|
|
46000
|
+
assa_abloy_vostio_metadata?:
|
|
46001
|
+
| {
|
|
46002
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
46003
|
+
key_id?: string | undefined
|
|
46004
|
+
key_issuing_request_id?: string | undefined
|
|
46005
|
+
door_names?: string[] | undefined
|
|
46006
|
+
endpoint_id?: string | undefined
|
|
46007
|
+
}
|
|
46008
|
+
| undefined
|
|
43300
46009
|
is_managed: true
|
|
43301
46010
|
}
|
|
43302
46011
|
| {
|
|
@@ -43421,6 +46130,16 @@ export interface Routes {
|
|
|
43421
46130
|
credential_id?: string | undefined
|
|
43422
46131
|
}
|
|
43423
46132
|
| undefined
|
|
46133
|
+
/** Vostio-specific metadata for the credential. */
|
|
46134
|
+
assa_abloy_vostio_metadata?:
|
|
46135
|
+
| {
|
|
46136
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
46137
|
+
key_id?: string | undefined
|
|
46138
|
+
key_issuing_request_id?: string | undefined
|
|
46139
|
+
door_names?: string[] | undefined
|
|
46140
|
+
endpoint_id?: string | undefined
|
|
46141
|
+
}
|
|
46142
|
+
| undefined
|
|
43424
46143
|
is_managed: false
|
|
43425
46144
|
}
|
|
43426
46145
|
}
|