@seamapi/types 1.286.1 → 1.286.2
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 +189 -52
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +450 -211
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +14 -14
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +18 -18
- package/lib/seam/connect/models/action-attempts/action-attempt.js +4 -4
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/{encode-card.d.ts → encode-credential.d.ts} +11 -11
- package/lib/seam/connect/models/action-attempts/{encode-card.js → encode-credential.js} +6 -6
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -0
- package/lib/seam/connect/models/action-attempts/{scan-card.d.ts → scan-credential.d.ts} +11 -11
- package/lib/seam/connect/models/action-attempts/{scan-card.js → scan-credential.js} +7 -7
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +5 -3
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +22 -3
- package/lib/seam/connect/models/devices/phone.d.ts +14 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +16 -3
- package/lib/seam/connect/models/events/acs/credentials.d.ts +61 -0
- package/lib/seam/connect/models/events/acs/credentials.js +9 -1
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +177 -0
- package/lib/seam/connect/models/events/action-attempts.js +16 -0
- package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +147 -1
- package/lib/seam/connect/models/events/seam-event.js +2 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -2
- package/lib/seam/connect/openapi.js +125 -37
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +217 -170
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +4 -4
- package/src/lib/seam/connect/models/action-attempts/{encode-card.ts → encode-credential.ts} +8 -6
- package/src/lib/seam/connect/models/action-attempts/{scan-card.ts → scan-credential.ts} +9 -7
- package/src/lib/seam/connect/models/devices/device-metadata.ts +3 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +10 -1
- package/src/lib/seam/connect/models/events/action-attempts.ts +19 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +130 -37
- package/src/lib/seam/connect/route-types.ts +245 -170
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/scan-card.js.map +0 -1
|
@@ -86,16 +86,16 @@ export interface Routes {
|
|
|
86
86
|
status: 'pending'
|
|
87
87
|
result: null
|
|
88
88
|
error: null
|
|
89
|
-
action_type: '
|
|
89
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
90
90
|
}
|
|
91
91
|
| {
|
|
92
92
|
/** The ID of the action attempt. */
|
|
93
93
|
action_attempt_id: string
|
|
94
94
|
status: 'success'
|
|
95
95
|
error: null
|
|
96
|
-
action_type: '
|
|
96
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
97
97
|
result: {
|
|
98
|
-
/** Snapshot of
|
|
98
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
99
99
|
acs_credential_on_encoder: {
|
|
100
100
|
/** Date and time the credential was created. */
|
|
101
101
|
created_at: string | null
|
|
@@ -284,7 +284,7 @@ export interface Routes {
|
|
|
284
284
|
action_attempt_id: string
|
|
285
285
|
status: 'error'
|
|
286
286
|
result: null
|
|
287
|
-
action_type: '
|
|
287
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
288
288
|
error:
|
|
289
289
|
| {
|
|
290
290
|
type: 'uncategorized_error'
|
|
@@ -305,14 +305,14 @@ export interface Routes {
|
|
|
305
305
|
status: 'pending'
|
|
306
306
|
result: null
|
|
307
307
|
error: null
|
|
308
|
-
action_type: '
|
|
308
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
309
309
|
}
|
|
310
310
|
| {
|
|
311
311
|
/** The ID of the action attempt. */
|
|
312
312
|
action_attempt_id: string
|
|
313
313
|
status: 'success'
|
|
314
314
|
error: null
|
|
315
|
-
action_type: '
|
|
315
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
316
316
|
/** Means by which a user gains access at an entrance.
|
|
317
317
|
|
|
318
318
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -467,7 +467,7 @@ export interface Routes {
|
|
|
467
467
|
action_attempt_id: string
|
|
468
468
|
status: 'error'
|
|
469
469
|
result: null
|
|
470
|
-
action_type: '
|
|
470
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
471
471
|
error:
|
|
472
472
|
| {
|
|
473
473
|
type: 'uncategorized_error'
|
|
@@ -1104,16 +1104,16 @@ export interface Routes {
|
|
|
1104
1104
|
status: 'pending'
|
|
1105
1105
|
result: null
|
|
1106
1106
|
error: null
|
|
1107
|
-
action_type: '
|
|
1107
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
1108
1108
|
}
|
|
1109
1109
|
| {
|
|
1110
1110
|
/** The ID of the action attempt. */
|
|
1111
1111
|
action_attempt_id: string
|
|
1112
1112
|
status: 'success'
|
|
1113
1113
|
error: null
|
|
1114
|
-
action_type: '
|
|
1114
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
1115
1115
|
result: {
|
|
1116
|
-
/** Snapshot of
|
|
1116
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
1117
1117
|
acs_credential_on_encoder: {
|
|
1118
1118
|
/** Date and time the credential was created. */
|
|
1119
1119
|
created_at: string | null
|
|
@@ -1302,7 +1302,7 @@ export interface Routes {
|
|
|
1302
1302
|
action_attempt_id: string
|
|
1303
1303
|
status: 'error'
|
|
1304
1304
|
result: null
|
|
1305
|
-
action_type: '
|
|
1305
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
1306
1306
|
error:
|
|
1307
1307
|
| {
|
|
1308
1308
|
type: 'uncategorized_error'
|
|
@@ -1323,14 +1323,14 @@ export interface Routes {
|
|
|
1323
1323
|
status: 'pending'
|
|
1324
1324
|
result: null
|
|
1325
1325
|
error: null
|
|
1326
|
-
action_type: '
|
|
1326
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
1327
1327
|
}
|
|
1328
1328
|
| {
|
|
1329
1329
|
/** The ID of the action attempt. */
|
|
1330
1330
|
action_attempt_id: string
|
|
1331
1331
|
status: 'success'
|
|
1332
1332
|
error: null
|
|
1333
|
-
action_type: '
|
|
1333
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
1334
1334
|
/** Means by which a user gains access at an entrance.
|
|
1335
1335
|
|
|
1336
1336
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -1485,7 +1485,7 @@ export interface Routes {
|
|
|
1485
1485
|
action_attempt_id: string
|
|
1486
1486
|
status: 'error'
|
|
1487
1487
|
result: null
|
|
1488
|
-
action_type: '
|
|
1488
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
1489
1489
|
error:
|
|
1490
1490
|
| {
|
|
1491
1491
|
type: 'uncategorized_error'
|
|
@@ -2287,16 +2287,16 @@ export interface Routes {
|
|
|
2287
2287
|
status: 'pending'
|
|
2288
2288
|
result: null
|
|
2289
2289
|
error: null
|
|
2290
|
-
action_type: '
|
|
2290
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
2291
2291
|
}
|
|
2292
2292
|
| {
|
|
2293
2293
|
/** The ID of the action attempt. */
|
|
2294
2294
|
action_attempt_id: string
|
|
2295
2295
|
status: 'success'
|
|
2296
2296
|
error: null
|
|
2297
|
-
action_type: '
|
|
2297
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
2298
2298
|
result: {
|
|
2299
|
-
/** Snapshot of
|
|
2299
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
2300
2300
|
acs_credential_on_encoder: {
|
|
2301
2301
|
/** Date and time the credential was created. */
|
|
2302
2302
|
created_at: string | null
|
|
@@ -2485,7 +2485,7 @@ export interface Routes {
|
|
|
2485
2485
|
action_attempt_id: string
|
|
2486
2486
|
status: 'error'
|
|
2487
2487
|
result: null
|
|
2488
|
-
action_type: '
|
|
2488
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
2489
2489
|
error:
|
|
2490
2490
|
| {
|
|
2491
2491
|
type: 'uncategorized_error'
|
|
@@ -2506,14 +2506,14 @@ export interface Routes {
|
|
|
2506
2506
|
status: 'pending'
|
|
2507
2507
|
result: null
|
|
2508
2508
|
error: null
|
|
2509
|
-
action_type: '
|
|
2509
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
2510
2510
|
}
|
|
2511
2511
|
| {
|
|
2512
2512
|
/** The ID of the action attempt. */
|
|
2513
2513
|
action_attempt_id: string
|
|
2514
2514
|
status: 'success'
|
|
2515
2515
|
error: null
|
|
2516
|
-
action_type: '
|
|
2516
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
2517
2517
|
/** Means by which a user gains access at an entrance.
|
|
2518
2518
|
|
|
2519
2519
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -2668,7 +2668,7 @@ export interface Routes {
|
|
|
2668
2668
|
action_attempt_id: string
|
|
2669
2669
|
status: 'error'
|
|
2670
2670
|
result: null
|
|
2671
|
-
action_type: '
|
|
2671
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
2672
2672
|
error:
|
|
2673
2673
|
| {
|
|
2674
2674
|
type: 'uncategorized_error'
|
|
@@ -3292,16 +3292,16 @@ export interface Routes {
|
|
|
3292
3292
|
status: 'pending'
|
|
3293
3293
|
result: null
|
|
3294
3294
|
error: null
|
|
3295
|
-
action_type: '
|
|
3295
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
3296
3296
|
}
|
|
3297
3297
|
| {
|
|
3298
3298
|
/** The ID of the action attempt. */
|
|
3299
3299
|
action_attempt_id: string
|
|
3300
3300
|
status: 'success'
|
|
3301
3301
|
error: null
|
|
3302
|
-
action_type: '
|
|
3302
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
3303
3303
|
result: {
|
|
3304
|
-
/** Snapshot of
|
|
3304
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
3305
3305
|
acs_credential_on_encoder: {
|
|
3306
3306
|
/** Date and time the credential was created. */
|
|
3307
3307
|
created_at: string | null
|
|
@@ -3490,7 +3490,7 @@ export interface Routes {
|
|
|
3490
3490
|
action_attempt_id: string
|
|
3491
3491
|
status: 'error'
|
|
3492
3492
|
result: null
|
|
3493
|
-
action_type: '
|
|
3493
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
3494
3494
|
error:
|
|
3495
3495
|
| {
|
|
3496
3496
|
type: 'uncategorized_error'
|
|
@@ -3511,14 +3511,14 @@ export interface Routes {
|
|
|
3511
3511
|
status: 'pending'
|
|
3512
3512
|
result: null
|
|
3513
3513
|
error: null
|
|
3514
|
-
action_type: '
|
|
3514
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
3515
3515
|
}
|
|
3516
3516
|
| {
|
|
3517
3517
|
/** The ID of the action attempt. */
|
|
3518
3518
|
action_attempt_id: string
|
|
3519
3519
|
status: 'success'
|
|
3520
3520
|
error: null
|
|
3521
|
-
action_type: '
|
|
3521
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
3522
3522
|
/** Means by which a user gains access at an entrance.
|
|
3523
3523
|
|
|
3524
3524
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -3673,7 +3673,7 @@ export interface Routes {
|
|
|
3673
3673
|
action_attempt_id: string
|
|
3674
3674
|
status: 'error'
|
|
3675
3675
|
result: null
|
|
3676
|
-
action_type: '
|
|
3676
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
3677
3677
|
error:
|
|
3678
3678
|
| {
|
|
3679
3679
|
type: 'uncategorized_error'
|
|
@@ -4669,6 +4669,7 @@ export interface Routes {
|
|
|
4669
4669
|
/** Visionline-specific metadata for the new credential. */
|
|
4670
4670
|
visionline_metadata?:
|
|
4671
4671
|
| {
|
|
4672
|
+
/** DEPRECATED: DO NOT USE */
|
|
4672
4673
|
assa_abloy_credential_service_mobile_endpoint_id?:
|
|
4673
4674
|
| string
|
|
4674
4675
|
| undefined
|
|
@@ -5398,13 +5399,15 @@ export interface Routes {
|
|
|
5398
5399
|
}
|
|
5399
5400
|
}
|
|
5400
5401
|
}
|
|
5401
|
-
'/acs/encoders/
|
|
5402
|
-
route: '/acs/encoders/
|
|
5402
|
+
'/acs/encoders/encode_credential': {
|
|
5403
|
+
route: '/acs/encoders/encode_credential'
|
|
5403
5404
|
method: 'POST'
|
|
5404
5405
|
queryParams: {}
|
|
5405
5406
|
jsonBody: {}
|
|
5406
5407
|
commonParams: {
|
|
5408
|
+
/** ID of the encoder to use for the encoding. */
|
|
5407
5409
|
device_id: string
|
|
5410
|
+
/** ID of the acs_credential to encode on a physical card. */
|
|
5408
5411
|
acs_credential_id: string
|
|
5409
5412
|
}
|
|
5410
5413
|
formData: {}
|
|
@@ -5470,16 +5473,16 @@ export interface Routes {
|
|
|
5470
5473
|
status: 'pending'
|
|
5471
5474
|
result: null
|
|
5472
5475
|
error: null
|
|
5473
|
-
action_type: '
|
|
5476
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
5474
5477
|
}
|
|
5475
5478
|
| {
|
|
5476
5479
|
/** The ID of the action attempt. */
|
|
5477
5480
|
action_attempt_id: string
|
|
5478
5481
|
status: 'success'
|
|
5479
5482
|
error: null
|
|
5480
|
-
action_type: '
|
|
5483
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
5481
5484
|
result: {
|
|
5482
|
-
/** Snapshot of
|
|
5485
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
5483
5486
|
acs_credential_on_encoder: {
|
|
5484
5487
|
/** Date and time the credential was created. */
|
|
5485
5488
|
created_at: string | null
|
|
@@ -5668,7 +5671,7 @@ export interface Routes {
|
|
|
5668
5671
|
action_attempt_id: string
|
|
5669
5672
|
status: 'error'
|
|
5670
5673
|
result: null
|
|
5671
|
-
action_type: '
|
|
5674
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
5672
5675
|
error:
|
|
5673
5676
|
| {
|
|
5674
5677
|
type: 'uncategorized_error'
|
|
@@ -5689,14 +5692,14 @@ export interface Routes {
|
|
|
5689
5692
|
status: 'pending'
|
|
5690
5693
|
result: null
|
|
5691
5694
|
error: null
|
|
5692
|
-
action_type: '
|
|
5695
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
5693
5696
|
}
|
|
5694
5697
|
| {
|
|
5695
5698
|
/** The ID of the action attempt. */
|
|
5696
5699
|
action_attempt_id: string
|
|
5697
5700
|
status: 'success'
|
|
5698
5701
|
error: null
|
|
5699
|
-
action_type: '
|
|
5702
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
5700
5703
|
/** Means by which a user gains access at an entrance.
|
|
5701
5704
|
|
|
5702
5705
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -5851,7 +5854,7 @@ export interface Routes {
|
|
|
5851
5854
|
action_attempt_id: string
|
|
5852
5855
|
status: 'error'
|
|
5853
5856
|
result: null
|
|
5854
|
-
action_type: '
|
|
5857
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
5855
5858
|
error:
|
|
5856
5859
|
| {
|
|
5857
5860
|
type: 'uncategorized_error'
|
|
@@ -6320,7 +6323,7 @@ export interface Routes {
|
|
|
6320
6323
|
| 'honeywell_resideo_thermostat'
|
|
6321
6324
|
)
|
|
6322
6325
|
| ('ios_phone' | 'android_phone')
|
|
6323
|
-
| 'visionline_encoder'
|
|
6326
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
6324
6327
|
/** Optional nickname to describe the device, settable through Seam */
|
|
6325
6328
|
nickname?: string | undefined
|
|
6326
6329
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -6707,6 +6710,11 @@ export interface Routes {
|
|
|
6707
6710
|
_member_group_id?: string | undefined
|
|
6708
6711
|
}
|
|
6709
6712
|
| undefined
|
|
6713
|
+
assa_abloy_vostio_metadata?:
|
|
6714
|
+
| {
|
|
6715
|
+
encoder_id: string
|
|
6716
|
+
}
|
|
6717
|
+
| undefined
|
|
6710
6718
|
}) &
|
|
6711
6719
|
({
|
|
6712
6720
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -6921,13 +6929,15 @@ export interface Routes {
|
|
|
6921
6929
|
}>
|
|
6922
6930
|
}
|
|
6923
6931
|
}
|
|
6924
|
-
'/acs/encoders/
|
|
6925
|
-
route: '/acs/encoders/
|
|
6932
|
+
'/acs/encoders/scan_credential': {
|
|
6933
|
+
route: '/acs/encoders/scan_credential'
|
|
6926
6934
|
method: 'POST'
|
|
6927
6935
|
queryParams: {}
|
|
6928
6936
|
jsonBody: {}
|
|
6929
6937
|
commonParams: {
|
|
6938
|
+
/** ID of the acs_system the encoder belongs to. */
|
|
6930
6939
|
acs_system_id: string
|
|
6940
|
+
/** ID of the encoder to use for the scan. */
|
|
6931
6941
|
device_id: string
|
|
6932
6942
|
}
|
|
6933
6943
|
formData: {}
|
|
@@ -6993,16 +7003,16 @@ export interface Routes {
|
|
|
6993
7003
|
status: 'pending'
|
|
6994
7004
|
result: null
|
|
6995
7005
|
error: null
|
|
6996
|
-
action_type: '
|
|
7006
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
6997
7007
|
}
|
|
6998
7008
|
| {
|
|
6999
7009
|
/** The ID of the action attempt. */
|
|
7000
7010
|
action_attempt_id: string
|
|
7001
7011
|
status: 'success'
|
|
7002
7012
|
error: null
|
|
7003
|
-
action_type: '
|
|
7013
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
7004
7014
|
result: {
|
|
7005
|
-
/** Snapshot of
|
|
7015
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
7006
7016
|
acs_credential_on_encoder: {
|
|
7007
7017
|
/** Date and time the credential was created. */
|
|
7008
7018
|
created_at: string | null
|
|
@@ -7191,7 +7201,7 @@ export interface Routes {
|
|
|
7191
7201
|
action_attempt_id: string
|
|
7192
7202
|
status: 'error'
|
|
7193
7203
|
result: null
|
|
7194
|
-
action_type: '
|
|
7204
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
7195
7205
|
error:
|
|
7196
7206
|
| {
|
|
7197
7207
|
type: 'uncategorized_error'
|
|
@@ -7212,14 +7222,14 @@ export interface Routes {
|
|
|
7212
7222
|
status: 'pending'
|
|
7213
7223
|
result: null
|
|
7214
7224
|
error: null
|
|
7215
|
-
action_type: '
|
|
7225
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
7216
7226
|
}
|
|
7217
7227
|
| {
|
|
7218
7228
|
/** The ID of the action attempt. */
|
|
7219
7229
|
action_attempt_id: string
|
|
7220
7230
|
status: 'success'
|
|
7221
7231
|
error: null
|
|
7222
|
-
action_type: '
|
|
7232
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
7223
7233
|
/** Means by which a user gains access at an entrance.
|
|
7224
7234
|
|
|
7225
7235
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -7374,7 +7384,7 @@ export interface Routes {
|
|
|
7374
7384
|
action_attempt_id: string
|
|
7375
7385
|
status: 'error'
|
|
7376
7386
|
result: null
|
|
7377
|
-
action_type: '
|
|
7387
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
7378
7388
|
error:
|
|
7379
7389
|
| {
|
|
7380
7390
|
type: 'uncategorized_error'
|
|
@@ -9360,16 +9370,16 @@ export interface Routes {
|
|
|
9360
9370
|
status: 'pending'
|
|
9361
9371
|
result: null
|
|
9362
9372
|
error: null
|
|
9363
|
-
action_type: '
|
|
9373
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
9364
9374
|
}
|
|
9365
9375
|
| {
|
|
9366
9376
|
/** The ID of the action attempt. */
|
|
9367
9377
|
action_attempt_id: string
|
|
9368
9378
|
status: 'success'
|
|
9369
9379
|
error: null
|
|
9370
|
-
action_type: '
|
|
9380
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
9371
9381
|
result: {
|
|
9372
|
-
/** Snapshot of
|
|
9382
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
9373
9383
|
acs_credential_on_encoder: {
|
|
9374
9384
|
/** Date and time the credential was created. */
|
|
9375
9385
|
created_at: string | null
|
|
@@ -9558,7 +9568,7 @@ export interface Routes {
|
|
|
9558
9568
|
action_attempt_id: string
|
|
9559
9569
|
status: 'error'
|
|
9560
9570
|
result: null
|
|
9561
|
-
action_type: '
|
|
9571
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
9562
9572
|
error:
|
|
9563
9573
|
| {
|
|
9564
9574
|
type: 'uncategorized_error'
|
|
@@ -9579,14 +9589,14 @@ export interface Routes {
|
|
|
9579
9589
|
status: 'pending'
|
|
9580
9590
|
result: null
|
|
9581
9591
|
error: null
|
|
9582
|
-
action_type: '
|
|
9592
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
9583
9593
|
}
|
|
9584
9594
|
| {
|
|
9585
9595
|
/** The ID of the action attempt. */
|
|
9586
9596
|
action_attempt_id: string
|
|
9587
9597
|
status: 'success'
|
|
9588
9598
|
error: null
|
|
9589
|
-
action_type: '
|
|
9599
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
9590
9600
|
/** Means by which a user gains access at an entrance.
|
|
9591
9601
|
|
|
9592
9602
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -9741,7 +9751,7 @@ export interface Routes {
|
|
|
9741
9751
|
action_attempt_id: string
|
|
9742
9752
|
status: 'error'
|
|
9743
9753
|
result: null
|
|
9744
|
-
action_type: '
|
|
9754
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
9745
9755
|
error:
|
|
9746
9756
|
| {
|
|
9747
9757
|
type: 'uncategorized_error'
|
|
@@ -10219,16 +10229,16 @@ export interface Routes {
|
|
|
10219
10229
|
status: 'pending'
|
|
10220
10230
|
result: null
|
|
10221
10231
|
error: null
|
|
10222
|
-
action_type: '
|
|
10232
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
10223
10233
|
}
|
|
10224
10234
|
| {
|
|
10225
10235
|
/** The ID of the action attempt. */
|
|
10226
10236
|
action_attempt_id: string
|
|
10227
10237
|
status: 'success'
|
|
10228
10238
|
error: null
|
|
10229
|
-
action_type: '
|
|
10239
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
10230
10240
|
result: {
|
|
10231
|
-
/** Snapshot of
|
|
10241
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
10232
10242
|
acs_credential_on_encoder: {
|
|
10233
10243
|
/** Date and time the credential was created. */
|
|
10234
10244
|
created_at: string | null
|
|
@@ -10417,7 +10427,7 @@ export interface Routes {
|
|
|
10417
10427
|
action_attempt_id: string
|
|
10418
10428
|
status: 'error'
|
|
10419
10429
|
result: null
|
|
10420
|
-
action_type: '
|
|
10430
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
10421
10431
|
error:
|
|
10422
10432
|
| {
|
|
10423
10433
|
type: 'uncategorized_error'
|
|
@@ -10438,14 +10448,14 @@ export interface Routes {
|
|
|
10438
10448
|
status: 'pending'
|
|
10439
10449
|
result: null
|
|
10440
10450
|
error: null
|
|
10441
|
-
action_type: '
|
|
10451
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
10442
10452
|
}
|
|
10443
10453
|
| {
|
|
10444
10454
|
/** The ID of the action attempt. */
|
|
10445
10455
|
action_attempt_id: string
|
|
10446
10456
|
status: 'success'
|
|
10447
10457
|
error: null
|
|
10448
|
-
action_type: '
|
|
10458
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
10449
10459
|
/** Means by which a user gains access at an entrance.
|
|
10450
10460
|
|
|
10451
10461
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -10600,7 +10610,7 @@ export interface Routes {
|
|
|
10600
10610
|
action_attempt_id: string
|
|
10601
10611
|
status: 'error'
|
|
10602
10612
|
result: null
|
|
10603
|
-
action_type: '
|
|
10613
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
10604
10614
|
error:
|
|
10605
10615
|
| {
|
|
10606
10616
|
type: 'uncategorized_error'
|
|
@@ -11550,7 +11560,7 @@ export interface Routes {
|
|
|
11550
11560
|
| 'honeywell_resideo_thermostat'
|
|
11551
11561
|
)
|
|
11552
11562
|
| ('ios_phone' | 'android_phone')
|
|
11553
|
-
| 'visionline_encoder'
|
|
11563
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
11554
11564
|
/** Optional nickname to describe the device, settable through Seam */
|
|
11555
11565
|
nickname?: string | undefined
|
|
11556
11566
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -11937,6 +11947,11 @@ export interface Routes {
|
|
|
11937
11947
|
_member_group_id?: string | undefined
|
|
11938
11948
|
}
|
|
11939
11949
|
| undefined
|
|
11950
|
+
assa_abloy_vostio_metadata?:
|
|
11951
|
+
| {
|
|
11952
|
+
encoder_id: string
|
|
11953
|
+
}
|
|
11954
|
+
| undefined
|
|
11940
11955
|
}) &
|
|
11941
11956
|
({
|
|
11942
11957
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -12199,7 +12214,7 @@ export interface Routes {
|
|
|
12199
12214
|
| 'honeywell_resideo_thermostat'
|
|
12200
12215
|
)
|
|
12201
12216
|
| ('ios_phone' | 'android_phone')
|
|
12202
|
-
| 'visionline_encoder'
|
|
12217
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
12203
12218
|
)
|
|
12204
12219
|
| undefined
|
|
12205
12220
|
device_types?:
|
|
@@ -12240,7 +12255,7 @@ export interface Routes {
|
|
|
12240
12255
|
| 'honeywell_resideo_thermostat'
|
|
12241
12256
|
)
|
|
12242
12257
|
| ('ios_phone' | 'android_phone')
|
|
12243
|
-
| 'visionline_encoder'
|
|
12258
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
12244
12259
|
>
|
|
12245
12260
|
| undefined
|
|
12246
12261
|
manufacturer?:
|
|
@@ -12361,7 +12376,7 @@ export interface Routes {
|
|
|
12361
12376
|
| 'honeywell_resideo_thermostat'
|
|
12362
12377
|
)
|
|
12363
12378
|
| ('ios_phone' | 'android_phone')
|
|
12364
|
-
| 'visionline_encoder'
|
|
12379
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
12365
12380
|
/** Optional nickname to describe the device, settable through Seam */
|
|
12366
12381
|
nickname?: string | undefined
|
|
12367
12382
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -12748,6 +12763,11 @@ export interface Routes {
|
|
|
12748
12763
|
_member_group_id?: string | undefined
|
|
12749
12764
|
}
|
|
12750
12765
|
| undefined
|
|
12766
|
+
assa_abloy_vostio_metadata?:
|
|
12767
|
+
| {
|
|
12768
|
+
encoder_id: string
|
|
12769
|
+
}
|
|
12770
|
+
| undefined
|
|
12751
12771
|
}) &
|
|
12752
12772
|
({
|
|
12753
12773
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -13132,7 +13152,7 @@ export interface Routes {
|
|
|
13132
13152
|
| 'honeywell_resideo_thermostat'
|
|
13133
13153
|
)
|
|
13134
13154
|
| ('ios_phone' | 'android_phone')
|
|
13135
|
-
| 'visionline_encoder'
|
|
13155
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
13136
13156
|
/** Unique identifier for the account associated with the device. */
|
|
13137
13157
|
connected_account_id: string
|
|
13138
13158
|
/** Location information for the device. */
|
|
@@ -13292,7 +13312,7 @@ export interface Routes {
|
|
|
13292
13312
|
| 'honeywell_resideo_thermostat'
|
|
13293
13313
|
)
|
|
13294
13314
|
| ('ios_phone' | 'android_phone')
|
|
13295
|
-
| 'visionline_encoder'
|
|
13315
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
13296
13316
|
)
|
|
13297
13317
|
| undefined
|
|
13298
13318
|
device_types?:
|
|
@@ -13333,7 +13353,7 @@ export interface Routes {
|
|
|
13333
13353
|
| 'honeywell_resideo_thermostat'
|
|
13334
13354
|
)
|
|
13335
13355
|
| ('ios_phone' | 'android_phone')
|
|
13336
|
-
| 'visionline_encoder'
|
|
13356
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
13337
13357
|
>
|
|
13338
13358
|
| undefined
|
|
13339
13359
|
manufacturer?:
|
|
@@ -13454,7 +13474,7 @@ export interface Routes {
|
|
|
13454
13474
|
| 'honeywell_resideo_thermostat'
|
|
13455
13475
|
)
|
|
13456
13476
|
| ('ios_phone' | 'android_phone')
|
|
13457
|
-
| 'visionline_encoder'
|
|
13477
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
13458
13478
|
/** Unique identifier for the account associated with the device. */
|
|
13459
13479
|
connected_account_id: string
|
|
13460
13480
|
/** Location information for the device. */
|
|
@@ -13883,7 +13903,7 @@ export interface Routes {
|
|
|
13883
13903
|
| 'honeywell_resideo_thermostat'
|
|
13884
13904
|
)
|
|
13885
13905
|
| ('ios_phone' | 'android_phone')
|
|
13886
|
-
| 'visionline_encoder'
|
|
13906
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
13887
13907
|
/** Optional nickname to describe the device, settable through Seam */
|
|
13888
13908
|
nickname?: string | undefined
|
|
13889
13909
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -14270,6 +14290,11 @@ export interface Routes {
|
|
|
14270
14290
|
_member_group_id?: string | undefined
|
|
14271
14291
|
}
|
|
14272
14292
|
| undefined
|
|
14293
|
+
assa_abloy_vostio_metadata?:
|
|
14294
|
+
| {
|
|
14295
|
+
encoder_id: string
|
|
14296
|
+
}
|
|
14297
|
+
| undefined
|
|
14273
14298
|
}) &
|
|
14274
14299
|
({
|
|
14275
14300
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -14523,7 +14548,7 @@ export interface Routes {
|
|
|
14523
14548
|
| 'honeywell_resideo_thermostat'
|
|
14524
14549
|
)
|
|
14525
14550
|
| ('ios_phone' | 'android_phone')
|
|
14526
|
-
| 'visionline_encoder'
|
|
14551
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
14527
14552
|
/** Optional nickname to describe the device, settable through Seam */
|
|
14528
14553
|
nickname?: string | undefined
|
|
14529
14554
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -14910,6 +14935,11 @@ export interface Routes {
|
|
|
14910
14935
|
_member_group_id?: string | undefined
|
|
14911
14936
|
}
|
|
14912
14937
|
| undefined
|
|
14938
|
+
assa_abloy_vostio_metadata?:
|
|
14939
|
+
| {
|
|
14940
|
+
encoder_id: string
|
|
14941
|
+
}
|
|
14942
|
+
| undefined
|
|
14913
14943
|
}) &
|
|
14914
14944
|
({
|
|
14915
14945
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -15172,7 +15202,7 @@ export interface Routes {
|
|
|
15172
15202
|
| 'honeywell_resideo_thermostat'
|
|
15173
15203
|
)
|
|
15174
15204
|
| ('ios_phone' | 'android_phone')
|
|
15175
|
-
| 'visionline_encoder'
|
|
15205
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
15176
15206
|
)
|
|
15177
15207
|
| undefined
|
|
15178
15208
|
device_types?:
|
|
@@ -15213,7 +15243,7 @@ export interface Routes {
|
|
|
15213
15243
|
| 'honeywell_resideo_thermostat'
|
|
15214
15244
|
)
|
|
15215
15245
|
| ('ios_phone' | 'android_phone')
|
|
15216
|
-
| 'visionline_encoder'
|
|
15246
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
15217
15247
|
>
|
|
15218
15248
|
| undefined
|
|
15219
15249
|
manufacturer?:
|
|
@@ -15334,7 +15364,7 @@ export interface Routes {
|
|
|
15334
15364
|
| 'honeywell_resideo_thermostat'
|
|
15335
15365
|
)
|
|
15336
15366
|
| ('ios_phone' | 'android_phone')
|
|
15337
|
-
| 'visionline_encoder'
|
|
15367
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
15338
15368
|
/** Optional nickname to describe the device, settable through Seam */
|
|
15339
15369
|
nickname?: string | undefined
|
|
15340
15370
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -15721,6 +15751,11 @@ export interface Routes {
|
|
|
15721
15751
|
_member_group_id?: string | undefined
|
|
15722
15752
|
}
|
|
15723
15753
|
| undefined
|
|
15754
|
+
assa_abloy_vostio_metadata?:
|
|
15755
|
+
| {
|
|
15756
|
+
encoder_id: string
|
|
15757
|
+
}
|
|
15758
|
+
| undefined
|
|
15724
15759
|
}) &
|
|
15725
15760
|
({
|
|
15726
15761
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -15974,7 +16009,7 @@ export interface Routes {
|
|
|
15974
16009
|
| 'honeywell_resideo_thermostat'
|
|
15975
16010
|
)
|
|
15976
16011
|
| ('ios_phone' | 'android_phone')
|
|
15977
|
-
| 'visionline_encoder'
|
|
16012
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
15978
16013
|
/** Optional nickname to describe the device, settable through Seam */
|
|
15979
16014
|
nickname?: string | undefined
|
|
15980
16015
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -16361,6 +16396,11 @@ export interface Routes {
|
|
|
16361
16396
|
_member_group_id?: string | undefined
|
|
16362
16397
|
}
|
|
16363
16398
|
| undefined
|
|
16399
|
+
assa_abloy_vostio_metadata?:
|
|
16400
|
+
| {
|
|
16401
|
+
encoder_id: string
|
|
16402
|
+
}
|
|
16403
|
+
| undefined
|
|
16364
16404
|
}) &
|
|
16365
16405
|
({
|
|
16366
16406
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -16647,16 +16687,16 @@ export interface Routes {
|
|
|
16647
16687
|
status: 'pending'
|
|
16648
16688
|
result: null
|
|
16649
16689
|
error: null
|
|
16650
|
-
action_type: '
|
|
16690
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
16651
16691
|
}
|
|
16652
16692
|
| {
|
|
16653
16693
|
/** The ID of the action attempt. */
|
|
16654
16694
|
action_attempt_id: string
|
|
16655
16695
|
status: 'success'
|
|
16656
16696
|
error: null
|
|
16657
|
-
action_type: '
|
|
16697
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
16658
16698
|
result: {
|
|
16659
|
-
/** Snapshot of
|
|
16699
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
16660
16700
|
acs_credential_on_encoder: {
|
|
16661
16701
|
/** Date and time the credential was created. */
|
|
16662
16702
|
created_at: string | null
|
|
@@ -16845,7 +16885,7 @@ export interface Routes {
|
|
|
16845
16885
|
action_attempt_id: string
|
|
16846
16886
|
status: 'error'
|
|
16847
16887
|
result: null
|
|
16848
|
-
action_type: '
|
|
16888
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
16849
16889
|
error:
|
|
16850
16890
|
| {
|
|
16851
16891
|
type: 'uncategorized_error'
|
|
@@ -16866,14 +16906,14 @@ export interface Routes {
|
|
|
16866
16906
|
status: 'pending'
|
|
16867
16907
|
result: null
|
|
16868
16908
|
error: null
|
|
16869
|
-
action_type: '
|
|
16909
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
16870
16910
|
}
|
|
16871
16911
|
| {
|
|
16872
16912
|
/** The ID of the action attempt. */
|
|
16873
16913
|
action_attempt_id: string
|
|
16874
16914
|
status: 'success'
|
|
16875
16915
|
error: null
|
|
16876
|
-
action_type: '
|
|
16916
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
16877
16917
|
/** Means by which a user gains access at an entrance.
|
|
16878
16918
|
|
|
16879
16919
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -17028,7 +17068,7 @@ export interface Routes {
|
|
|
17028
17068
|
action_attempt_id: string
|
|
17029
17069
|
status: 'error'
|
|
17030
17070
|
result: null
|
|
17031
|
-
action_type: '
|
|
17071
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
17032
17072
|
error:
|
|
17033
17073
|
| {
|
|
17034
17074
|
type: 'uncategorized_error'
|
|
@@ -17507,16 +17547,16 @@ export interface Routes {
|
|
|
17507
17547
|
status: 'pending'
|
|
17508
17548
|
result: null
|
|
17509
17549
|
error: null
|
|
17510
|
-
action_type: '
|
|
17550
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
17511
17551
|
}
|
|
17512
17552
|
| {
|
|
17513
17553
|
/** The ID of the action attempt. */
|
|
17514
17554
|
action_attempt_id: string
|
|
17515
17555
|
status: 'success'
|
|
17516
17556
|
error: null
|
|
17517
|
-
action_type: '
|
|
17557
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
17518
17558
|
result: {
|
|
17519
|
-
/** Snapshot of
|
|
17559
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
17520
17560
|
acs_credential_on_encoder: {
|
|
17521
17561
|
/** Date and time the credential was created. */
|
|
17522
17562
|
created_at: string | null
|
|
@@ -17705,7 +17745,7 @@ export interface Routes {
|
|
|
17705
17745
|
action_attempt_id: string
|
|
17706
17746
|
status: 'error'
|
|
17707
17747
|
result: null
|
|
17708
|
-
action_type: '
|
|
17748
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
17709
17749
|
error:
|
|
17710
17750
|
| {
|
|
17711
17751
|
type: 'uncategorized_error'
|
|
@@ -17726,14 +17766,14 @@ export interface Routes {
|
|
|
17726
17766
|
status: 'pending'
|
|
17727
17767
|
result: null
|
|
17728
17768
|
error: null
|
|
17729
|
-
action_type: '
|
|
17769
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
17730
17770
|
}
|
|
17731
17771
|
| {
|
|
17732
17772
|
/** The ID of the action attempt. */
|
|
17733
17773
|
action_attempt_id: string
|
|
17734
17774
|
status: 'success'
|
|
17735
17775
|
error: null
|
|
17736
|
-
action_type: '
|
|
17776
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
17737
17777
|
/** Means by which a user gains access at an entrance.
|
|
17738
17778
|
|
|
17739
17779
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -17888,7 +17928,7 @@ export interface Routes {
|
|
|
17888
17928
|
action_attempt_id: string
|
|
17889
17929
|
status: 'error'
|
|
17890
17930
|
result: null
|
|
17891
|
-
action_type: '
|
|
17931
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
17892
17932
|
error:
|
|
17893
17933
|
| {
|
|
17894
17934
|
type: 'uncategorized_error'
|
|
@@ -18377,7 +18417,7 @@ export interface Routes {
|
|
|
18377
18417
|
| 'honeywell_resideo_thermostat'
|
|
18378
18418
|
)
|
|
18379
18419
|
| ('ios_phone' | 'android_phone')
|
|
18380
|
-
| 'visionline_encoder'
|
|
18420
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
18381
18421
|
)
|
|
18382
18422
|
| undefined
|
|
18383
18423
|
device_types?:
|
|
@@ -18418,7 +18458,7 @@ export interface Routes {
|
|
|
18418
18458
|
| 'honeywell_resideo_thermostat'
|
|
18419
18459
|
)
|
|
18420
18460
|
| ('ios_phone' | 'android_phone')
|
|
18421
|
-
| 'visionline_encoder'
|
|
18461
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
18422
18462
|
>
|
|
18423
18463
|
| undefined
|
|
18424
18464
|
manufacturer?:
|
|
@@ -18539,7 +18579,7 @@ export interface Routes {
|
|
|
18539
18579
|
| 'honeywell_resideo_thermostat'
|
|
18540
18580
|
)
|
|
18541
18581
|
| ('ios_phone' | 'android_phone')
|
|
18542
|
-
| 'visionline_encoder'
|
|
18582
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
18543
18583
|
/** Optional nickname to describe the device, settable through Seam */
|
|
18544
18584
|
nickname?: string | undefined
|
|
18545
18585
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -18926,6 +18966,11 @@ export interface Routes {
|
|
|
18926
18966
|
_member_group_id?: string | undefined
|
|
18927
18967
|
}
|
|
18928
18968
|
| undefined
|
|
18969
|
+
assa_abloy_vostio_metadata?:
|
|
18970
|
+
| {
|
|
18971
|
+
encoder_id: string
|
|
18972
|
+
}
|
|
18973
|
+
| undefined
|
|
18929
18974
|
}) &
|
|
18930
18975
|
({
|
|
18931
18976
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -19179,7 +19224,7 @@ export interface Routes {
|
|
|
19179
19224
|
| 'honeywell_resideo_thermostat'
|
|
19180
19225
|
)
|
|
19181
19226
|
| ('ios_phone' | 'android_phone')
|
|
19182
|
-
| 'visionline_encoder'
|
|
19227
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
19183
19228
|
/** Optional nickname to describe the device, settable through Seam */
|
|
19184
19229
|
nickname?: string | undefined
|
|
19185
19230
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -19566,6 +19611,11 @@ export interface Routes {
|
|
|
19566
19611
|
_member_group_id?: string | undefined
|
|
19567
19612
|
}
|
|
19568
19613
|
| undefined
|
|
19614
|
+
assa_abloy_vostio_metadata?:
|
|
19615
|
+
| {
|
|
19616
|
+
encoder_id: string
|
|
19617
|
+
}
|
|
19618
|
+
| undefined
|
|
19569
19619
|
}) &
|
|
19570
19620
|
({
|
|
19571
19621
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -19857,16 +19907,16 @@ export interface Routes {
|
|
|
19857
19907
|
status: 'pending'
|
|
19858
19908
|
result: null
|
|
19859
19909
|
error: null
|
|
19860
|
-
action_type: '
|
|
19910
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
19861
19911
|
}
|
|
19862
19912
|
| {
|
|
19863
19913
|
/** The ID of the action attempt. */
|
|
19864
19914
|
action_attempt_id: string
|
|
19865
19915
|
status: 'success'
|
|
19866
19916
|
error: null
|
|
19867
|
-
action_type: '
|
|
19917
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
19868
19918
|
result: {
|
|
19869
|
-
/** Snapshot of
|
|
19919
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
19870
19920
|
acs_credential_on_encoder: {
|
|
19871
19921
|
/** Date and time the credential was created. */
|
|
19872
19922
|
created_at: string | null
|
|
@@ -20055,7 +20105,7 @@ export interface Routes {
|
|
|
20055
20105
|
action_attempt_id: string
|
|
20056
20106
|
status: 'error'
|
|
20057
20107
|
result: null
|
|
20058
|
-
action_type: '
|
|
20108
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
20059
20109
|
error:
|
|
20060
20110
|
| {
|
|
20061
20111
|
type: 'uncategorized_error'
|
|
@@ -20076,14 +20126,14 @@ export interface Routes {
|
|
|
20076
20126
|
status: 'pending'
|
|
20077
20127
|
result: null
|
|
20078
20128
|
error: null
|
|
20079
|
-
action_type: '
|
|
20129
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
20080
20130
|
}
|
|
20081
20131
|
| {
|
|
20082
20132
|
/** The ID of the action attempt. */
|
|
20083
20133
|
action_attempt_id: string
|
|
20084
20134
|
status: 'success'
|
|
20085
20135
|
error: null
|
|
20086
|
-
action_type: '
|
|
20136
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
20087
20137
|
/** Means by which a user gains access at an entrance.
|
|
20088
20138
|
|
|
20089
20139
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -20238,7 +20288,7 @@ export interface Routes {
|
|
|
20238
20288
|
action_attempt_id: string
|
|
20239
20289
|
status: 'error'
|
|
20240
20290
|
result: null
|
|
20241
|
-
action_type: '
|
|
20291
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
20242
20292
|
error:
|
|
20243
20293
|
| {
|
|
20244
20294
|
type: 'uncategorized_error'
|
|
@@ -20727,16 +20777,16 @@ export interface Routes {
|
|
|
20727
20777
|
status: 'pending'
|
|
20728
20778
|
result: null
|
|
20729
20779
|
error: null
|
|
20730
|
-
action_type: '
|
|
20780
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
20731
20781
|
}
|
|
20732
20782
|
| {
|
|
20733
20783
|
/** The ID of the action attempt. */
|
|
20734
20784
|
action_attempt_id: string
|
|
20735
20785
|
status: 'success'
|
|
20736
20786
|
error: null
|
|
20737
|
-
action_type: '
|
|
20787
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
20738
20788
|
result: {
|
|
20739
|
-
/** Snapshot of
|
|
20789
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
20740
20790
|
acs_credential_on_encoder: {
|
|
20741
20791
|
/** Date and time the credential was created. */
|
|
20742
20792
|
created_at: string | null
|
|
@@ -20925,7 +20975,7 @@ export interface Routes {
|
|
|
20925
20975
|
action_attempt_id: string
|
|
20926
20976
|
status: 'error'
|
|
20927
20977
|
result: null
|
|
20928
|
-
action_type: '
|
|
20978
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
20929
20979
|
error:
|
|
20930
20980
|
| {
|
|
20931
20981
|
type: 'uncategorized_error'
|
|
@@ -20946,14 +20996,14 @@ export interface Routes {
|
|
|
20946
20996
|
status: 'pending'
|
|
20947
20997
|
result: null
|
|
20948
20998
|
error: null
|
|
20949
|
-
action_type: '
|
|
20999
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
20950
21000
|
}
|
|
20951
21001
|
| {
|
|
20952
21002
|
/** The ID of the action attempt. */
|
|
20953
21003
|
action_attempt_id: string
|
|
20954
21004
|
status: 'success'
|
|
20955
21005
|
error: null
|
|
20956
|
-
action_type: '
|
|
21006
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
20957
21007
|
/** Means by which a user gains access at an entrance.
|
|
20958
21008
|
|
|
20959
21009
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -21108,7 +21158,7 @@ export interface Routes {
|
|
|
21108
21158
|
action_attempt_id: string
|
|
21109
21159
|
status: 'error'
|
|
21110
21160
|
result: null
|
|
21111
|
-
action_type: '
|
|
21161
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
21112
21162
|
error:
|
|
21113
21163
|
| {
|
|
21114
21164
|
type: 'uncategorized_error'
|
|
@@ -21636,16 +21686,16 @@ export interface Routes {
|
|
|
21636
21686
|
status: 'pending'
|
|
21637
21687
|
result: null
|
|
21638
21688
|
error: null
|
|
21639
|
-
action_type: '
|
|
21689
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
21640
21690
|
}
|
|
21641
21691
|
| {
|
|
21642
21692
|
/** The ID of the action attempt. */
|
|
21643
21693
|
action_attempt_id: string
|
|
21644
21694
|
status: 'success'
|
|
21645
21695
|
error: null
|
|
21646
|
-
action_type: '
|
|
21696
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
21647
21697
|
result: {
|
|
21648
|
-
/** Snapshot of
|
|
21698
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
21649
21699
|
acs_credential_on_encoder: {
|
|
21650
21700
|
/** Date and time the credential was created. */
|
|
21651
21701
|
created_at: string | null
|
|
@@ -21834,7 +21884,7 @@ export interface Routes {
|
|
|
21834
21884
|
action_attempt_id: string
|
|
21835
21885
|
status: 'error'
|
|
21836
21886
|
result: null
|
|
21837
|
-
action_type: '
|
|
21887
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
21838
21888
|
error:
|
|
21839
21889
|
| {
|
|
21840
21890
|
type: 'uncategorized_error'
|
|
@@ -21855,14 +21905,14 @@ export interface Routes {
|
|
|
21855
21905
|
status: 'pending'
|
|
21856
21906
|
result: null
|
|
21857
21907
|
error: null
|
|
21858
|
-
action_type: '
|
|
21908
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
21859
21909
|
}
|
|
21860
21910
|
| {
|
|
21861
21911
|
/** The ID of the action attempt. */
|
|
21862
21912
|
action_attempt_id: string
|
|
21863
21913
|
status: 'success'
|
|
21864
21914
|
error: null
|
|
21865
|
-
action_type: '
|
|
21915
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
21866
21916
|
/** Means by which a user gains access at an entrance.
|
|
21867
21917
|
|
|
21868
21918
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -22017,7 +22067,7 @@ export interface Routes {
|
|
|
22017
22067
|
action_attempt_id: string
|
|
22018
22068
|
status: 'error'
|
|
22019
22069
|
result: null
|
|
22020
|
-
action_type: '
|
|
22070
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
22021
22071
|
error:
|
|
22022
22072
|
| {
|
|
22023
22073
|
type: 'uncategorized_error'
|
|
@@ -22702,16 +22752,16 @@ export interface Routes {
|
|
|
22702
22752
|
status: 'pending'
|
|
22703
22753
|
result: null
|
|
22704
22754
|
error: null
|
|
22705
|
-
action_type: '
|
|
22755
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
22706
22756
|
}
|
|
22707
22757
|
| {
|
|
22708
22758
|
/** The ID of the action attempt. */
|
|
22709
22759
|
action_attempt_id: string
|
|
22710
22760
|
status: 'success'
|
|
22711
22761
|
error: null
|
|
22712
|
-
action_type: '
|
|
22762
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
22713
22763
|
result: {
|
|
22714
|
-
/** Snapshot of
|
|
22764
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
22715
22765
|
acs_credential_on_encoder: {
|
|
22716
22766
|
/** Date and time the credential was created. */
|
|
22717
22767
|
created_at: string | null
|
|
@@ -22900,7 +22950,7 @@ export interface Routes {
|
|
|
22900
22950
|
action_attempt_id: string
|
|
22901
22951
|
status: 'error'
|
|
22902
22952
|
result: null
|
|
22903
|
-
action_type: '
|
|
22953
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
22904
22954
|
error:
|
|
22905
22955
|
| {
|
|
22906
22956
|
type: 'uncategorized_error'
|
|
@@ -22921,14 +22971,14 @@ export interface Routes {
|
|
|
22921
22971
|
status: 'pending'
|
|
22922
22972
|
result: null
|
|
22923
22973
|
error: null
|
|
22924
|
-
action_type: '
|
|
22974
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
22925
22975
|
}
|
|
22926
22976
|
| {
|
|
22927
22977
|
/** The ID of the action attempt. */
|
|
22928
22978
|
action_attempt_id: string
|
|
22929
22979
|
status: 'success'
|
|
22930
22980
|
error: null
|
|
22931
|
-
action_type: '
|
|
22981
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
22932
22982
|
/** Means by which a user gains access at an entrance.
|
|
22933
22983
|
|
|
22934
22984
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -23083,7 +23133,7 @@ export interface Routes {
|
|
|
23083
23133
|
action_attempt_id: string
|
|
23084
23134
|
status: 'error'
|
|
23085
23135
|
result: null
|
|
23086
|
-
action_type: '
|
|
23136
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
23087
23137
|
error:
|
|
23088
23138
|
| {
|
|
23089
23139
|
type: 'uncategorized_error'
|
|
@@ -23564,16 +23614,16 @@ export interface Routes {
|
|
|
23564
23614
|
status: 'pending'
|
|
23565
23615
|
result: null
|
|
23566
23616
|
error: null
|
|
23567
|
-
action_type: '
|
|
23617
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
23568
23618
|
}
|
|
23569
23619
|
| {
|
|
23570
23620
|
/** The ID of the action attempt. */
|
|
23571
23621
|
action_attempt_id: string
|
|
23572
23622
|
status: 'success'
|
|
23573
23623
|
error: null
|
|
23574
|
-
action_type: '
|
|
23624
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
23575
23625
|
result: {
|
|
23576
|
-
/** Snapshot of
|
|
23626
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
23577
23627
|
acs_credential_on_encoder: {
|
|
23578
23628
|
/** Date and time the credential was created. */
|
|
23579
23629
|
created_at: string | null
|
|
@@ -23762,7 +23812,7 @@ export interface Routes {
|
|
|
23762
23812
|
action_attempt_id: string
|
|
23763
23813
|
status: 'error'
|
|
23764
23814
|
result: null
|
|
23765
|
-
action_type: '
|
|
23815
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
23766
23816
|
error:
|
|
23767
23817
|
| {
|
|
23768
23818
|
type: 'uncategorized_error'
|
|
@@ -23783,14 +23833,14 @@ export interface Routes {
|
|
|
23783
23833
|
status: 'pending'
|
|
23784
23834
|
result: null
|
|
23785
23835
|
error: null
|
|
23786
|
-
action_type: '
|
|
23836
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
23787
23837
|
}
|
|
23788
23838
|
| {
|
|
23789
23839
|
/** The ID of the action attempt. */
|
|
23790
23840
|
action_attempt_id: string
|
|
23791
23841
|
status: 'success'
|
|
23792
23842
|
error: null
|
|
23793
|
-
action_type: '
|
|
23843
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
23794
23844
|
/** Means by which a user gains access at an entrance.
|
|
23795
23845
|
|
|
23796
23846
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -23945,7 +23995,7 @@ export interface Routes {
|
|
|
23945
23995
|
action_attempt_id: string
|
|
23946
23996
|
status: 'error'
|
|
23947
23997
|
result: null
|
|
23948
|
-
action_type: '
|
|
23998
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
23949
23999
|
error:
|
|
23950
24000
|
| {
|
|
23951
24001
|
type: 'uncategorized_error'
|
|
@@ -24436,7 +24486,7 @@ export interface Routes {
|
|
|
24436
24486
|
| 'honeywell_resideo_thermostat'
|
|
24437
24487
|
)
|
|
24438
24488
|
| ('ios_phone' | 'android_phone')
|
|
24439
|
-
| 'visionline_encoder'
|
|
24489
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
24440
24490
|
/** Optional nickname to describe the device, settable through Seam */
|
|
24441
24491
|
nickname?: string | undefined
|
|
24442
24492
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -24823,6 +24873,11 @@ export interface Routes {
|
|
|
24823
24873
|
_member_group_id?: string | undefined
|
|
24824
24874
|
}
|
|
24825
24875
|
| undefined
|
|
24876
|
+
assa_abloy_vostio_metadata?:
|
|
24877
|
+
| {
|
|
24878
|
+
encoder_id: string
|
|
24879
|
+
}
|
|
24880
|
+
| undefined
|
|
24826
24881
|
}) &
|
|
24827
24882
|
({
|
|
24828
24883
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -25111,16 +25166,16 @@ export interface Routes {
|
|
|
25111
25166
|
status: 'pending'
|
|
25112
25167
|
result: null
|
|
25113
25168
|
error: null
|
|
25114
|
-
action_type: '
|
|
25169
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
25115
25170
|
}
|
|
25116
25171
|
| {
|
|
25117
25172
|
/** The ID of the action attempt. */
|
|
25118
25173
|
action_attempt_id: string
|
|
25119
25174
|
status: 'success'
|
|
25120
25175
|
error: null
|
|
25121
|
-
action_type: '
|
|
25176
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
25122
25177
|
result: {
|
|
25123
|
-
/** Snapshot of
|
|
25178
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
25124
25179
|
acs_credential_on_encoder: {
|
|
25125
25180
|
/** Date and time the credential was created. */
|
|
25126
25181
|
created_at: string | null
|
|
@@ -25309,7 +25364,7 @@ export interface Routes {
|
|
|
25309
25364
|
action_attempt_id: string
|
|
25310
25365
|
status: 'error'
|
|
25311
25366
|
result: null
|
|
25312
|
-
action_type: '
|
|
25367
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
25313
25368
|
error:
|
|
25314
25369
|
| {
|
|
25315
25370
|
type: 'uncategorized_error'
|
|
@@ -25330,14 +25385,14 @@ export interface Routes {
|
|
|
25330
25385
|
status: 'pending'
|
|
25331
25386
|
result: null
|
|
25332
25387
|
error: null
|
|
25333
|
-
action_type: '
|
|
25388
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
25334
25389
|
}
|
|
25335
25390
|
| {
|
|
25336
25391
|
/** The ID of the action attempt. */
|
|
25337
25392
|
action_attempt_id: string
|
|
25338
25393
|
status: 'success'
|
|
25339
25394
|
error: null
|
|
25340
|
-
action_type: '
|
|
25395
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
25341
25396
|
/** Means by which a user gains access at an entrance.
|
|
25342
25397
|
|
|
25343
25398
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -25492,7 +25547,7 @@ export interface Routes {
|
|
|
25492
25547
|
action_attempt_id: string
|
|
25493
25548
|
status: 'error'
|
|
25494
25549
|
result: null
|
|
25495
|
-
action_type: '
|
|
25550
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
25496
25551
|
error:
|
|
25497
25552
|
| {
|
|
25498
25553
|
type: 'uncategorized_error'
|
|
@@ -25975,16 +26030,16 @@ export interface Routes {
|
|
|
25975
26030
|
status: 'pending'
|
|
25976
26031
|
result: null
|
|
25977
26032
|
error: null
|
|
25978
|
-
action_type: '
|
|
26033
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
25979
26034
|
}
|
|
25980
26035
|
| {
|
|
25981
26036
|
/** The ID of the action attempt. */
|
|
25982
26037
|
action_attempt_id: string
|
|
25983
26038
|
status: 'success'
|
|
25984
26039
|
error: null
|
|
25985
|
-
action_type: '
|
|
26040
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
25986
26041
|
result: {
|
|
25987
|
-
/** Snapshot of
|
|
26042
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
25988
26043
|
acs_credential_on_encoder: {
|
|
25989
26044
|
/** Date and time the credential was created. */
|
|
25990
26045
|
created_at: string | null
|
|
@@ -26173,7 +26228,7 @@ export interface Routes {
|
|
|
26173
26228
|
action_attempt_id: string
|
|
26174
26229
|
status: 'error'
|
|
26175
26230
|
result: null
|
|
26176
|
-
action_type: '
|
|
26231
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
26177
26232
|
error:
|
|
26178
26233
|
| {
|
|
26179
26234
|
type: 'uncategorized_error'
|
|
@@ -26194,14 +26249,14 @@ export interface Routes {
|
|
|
26194
26249
|
status: 'pending'
|
|
26195
26250
|
result: null
|
|
26196
26251
|
error: null
|
|
26197
|
-
action_type: '
|
|
26252
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
26198
26253
|
}
|
|
26199
26254
|
| {
|
|
26200
26255
|
/** The ID of the action attempt. */
|
|
26201
26256
|
action_attempt_id: string
|
|
26202
26257
|
status: 'success'
|
|
26203
26258
|
error: null
|
|
26204
|
-
action_type: '
|
|
26259
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
26205
26260
|
/** Means by which a user gains access at an entrance.
|
|
26206
26261
|
|
|
26207
26262
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -26356,7 +26411,7 @@ export interface Routes {
|
|
|
26356
26411
|
action_attempt_id: string
|
|
26357
26412
|
status: 'error'
|
|
26358
26413
|
result: null
|
|
26359
|
-
action_type: '
|
|
26414
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
26360
26415
|
error:
|
|
26361
26416
|
| {
|
|
26362
26417
|
type: 'uncategorized_error'
|
|
@@ -26811,7 +26866,7 @@ export interface Routes {
|
|
|
26811
26866
|
| 'honeywell_resideo_thermostat'
|
|
26812
26867
|
)
|
|
26813
26868
|
| ('ios_phone' | 'android_phone')
|
|
26814
|
-
| 'visionline_encoder'
|
|
26869
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
26815
26870
|
)
|
|
26816
26871
|
| undefined
|
|
26817
26872
|
device_types?:
|
|
@@ -26852,7 +26907,7 @@ export interface Routes {
|
|
|
26852
26907
|
| 'honeywell_resideo_thermostat'
|
|
26853
26908
|
)
|
|
26854
26909
|
| ('ios_phone' | 'android_phone')
|
|
26855
|
-
| 'visionline_encoder'
|
|
26910
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
26856
26911
|
>
|
|
26857
26912
|
| undefined
|
|
26858
26913
|
manufacturer?:
|
|
@@ -26973,7 +27028,7 @@ export interface Routes {
|
|
|
26973
27028
|
| 'honeywell_resideo_thermostat'
|
|
26974
27029
|
)
|
|
26975
27030
|
| ('ios_phone' | 'android_phone')
|
|
26976
|
-
| 'visionline_encoder'
|
|
27031
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
26977
27032
|
/** Optional nickname to describe the device, settable through Seam */
|
|
26978
27033
|
nickname?: string | undefined
|
|
26979
27034
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -27360,6 +27415,11 @@ export interface Routes {
|
|
|
27360
27415
|
_member_group_id?: string | undefined
|
|
27361
27416
|
}
|
|
27362
27417
|
| undefined
|
|
27418
|
+
assa_abloy_vostio_metadata?:
|
|
27419
|
+
| {
|
|
27420
|
+
encoder_id: string
|
|
27421
|
+
}
|
|
27422
|
+
| undefined
|
|
27363
27423
|
}) &
|
|
27364
27424
|
({
|
|
27365
27425
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -27613,7 +27673,7 @@ export interface Routes {
|
|
|
27613
27673
|
| 'honeywell_resideo_thermostat'
|
|
27614
27674
|
)
|
|
27615
27675
|
| ('ios_phone' | 'android_phone')
|
|
27616
|
-
| 'visionline_encoder'
|
|
27676
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
27617
27677
|
/** Optional nickname to describe the device, settable through Seam */
|
|
27618
27678
|
nickname?: string | undefined
|
|
27619
27679
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -28000,6 +28060,11 @@ export interface Routes {
|
|
|
28000
28060
|
_member_group_id?: string | undefined
|
|
28001
28061
|
}
|
|
28002
28062
|
| undefined
|
|
28063
|
+
assa_abloy_vostio_metadata?:
|
|
28064
|
+
| {
|
|
28065
|
+
encoder_id: string
|
|
28066
|
+
}
|
|
28067
|
+
| undefined
|
|
28003
28068
|
}) &
|
|
28004
28069
|
({
|
|
28005
28070
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -28286,16 +28351,16 @@ export interface Routes {
|
|
|
28286
28351
|
status: 'pending'
|
|
28287
28352
|
result: null
|
|
28288
28353
|
error: null
|
|
28289
|
-
action_type: '
|
|
28354
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
28290
28355
|
}
|
|
28291
28356
|
| {
|
|
28292
28357
|
/** The ID of the action attempt. */
|
|
28293
28358
|
action_attempt_id: string
|
|
28294
28359
|
status: 'success'
|
|
28295
28360
|
error: null
|
|
28296
|
-
action_type: '
|
|
28361
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
28297
28362
|
result: {
|
|
28298
|
-
/** Snapshot of
|
|
28363
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
28299
28364
|
acs_credential_on_encoder: {
|
|
28300
28365
|
/** Date and time the credential was created. */
|
|
28301
28366
|
created_at: string | null
|
|
@@ -28484,7 +28549,7 @@ export interface Routes {
|
|
|
28484
28549
|
action_attempt_id: string
|
|
28485
28550
|
status: 'error'
|
|
28486
28551
|
result: null
|
|
28487
|
-
action_type: '
|
|
28552
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
28488
28553
|
error:
|
|
28489
28554
|
| {
|
|
28490
28555
|
type: 'uncategorized_error'
|
|
@@ -28505,14 +28570,14 @@ export interface Routes {
|
|
|
28505
28570
|
status: 'pending'
|
|
28506
28571
|
result: null
|
|
28507
28572
|
error: null
|
|
28508
|
-
action_type: '
|
|
28573
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
28509
28574
|
}
|
|
28510
28575
|
| {
|
|
28511
28576
|
/** The ID of the action attempt. */
|
|
28512
28577
|
action_attempt_id: string
|
|
28513
28578
|
status: 'success'
|
|
28514
28579
|
error: null
|
|
28515
|
-
action_type: '
|
|
28580
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
28516
28581
|
/** Means by which a user gains access at an entrance.
|
|
28517
28582
|
|
|
28518
28583
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -28667,7 +28732,7 @@ export interface Routes {
|
|
|
28667
28732
|
action_attempt_id: string
|
|
28668
28733
|
status: 'error'
|
|
28669
28734
|
result: null
|
|
28670
|
-
action_type: '
|
|
28735
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
28671
28736
|
error:
|
|
28672
28737
|
| {
|
|
28673
28738
|
type: 'uncategorized_error'
|
|
@@ -29267,16 +29332,16 @@ export interface Routes {
|
|
|
29267
29332
|
status: 'pending'
|
|
29268
29333
|
result: null
|
|
29269
29334
|
error: null
|
|
29270
|
-
action_type: '
|
|
29335
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
29271
29336
|
}
|
|
29272
29337
|
| {
|
|
29273
29338
|
/** The ID of the action attempt. */
|
|
29274
29339
|
action_attempt_id: string
|
|
29275
29340
|
status: 'success'
|
|
29276
29341
|
error: null
|
|
29277
|
-
action_type: '
|
|
29342
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
29278
29343
|
result: {
|
|
29279
|
-
/** Snapshot of
|
|
29344
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
29280
29345
|
acs_credential_on_encoder: {
|
|
29281
29346
|
/** Date and time the credential was created. */
|
|
29282
29347
|
created_at: string | null
|
|
@@ -29465,7 +29530,7 @@ export interface Routes {
|
|
|
29465
29530
|
action_attempt_id: string
|
|
29466
29531
|
status: 'error'
|
|
29467
29532
|
result: null
|
|
29468
|
-
action_type: '
|
|
29533
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
29469
29534
|
error:
|
|
29470
29535
|
| {
|
|
29471
29536
|
type: 'uncategorized_error'
|
|
@@ -29486,14 +29551,14 @@ export interface Routes {
|
|
|
29486
29551
|
status: 'pending'
|
|
29487
29552
|
result: null
|
|
29488
29553
|
error: null
|
|
29489
|
-
action_type: '
|
|
29554
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
29490
29555
|
}
|
|
29491
29556
|
| {
|
|
29492
29557
|
/** The ID of the action attempt. */
|
|
29493
29558
|
action_attempt_id: string
|
|
29494
29559
|
status: 'success'
|
|
29495
29560
|
error: null
|
|
29496
|
-
action_type: '
|
|
29561
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
29497
29562
|
/** Means by which a user gains access at an entrance.
|
|
29498
29563
|
|
|
29499
29564
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -29648,7 +29713,7 @@ export interface Routes {
|
|
|
29648
29713
|
action_attempt_id: string
|
|
29649
29714
|
status: 'error'
|
|
29650
29715
|
result: null
|
|
29651
|
-
action_type: '
|
|
29716
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
29652
29717
|
error:
|
|
29653
29718
|
| {
|
|
29654
29719
|
type: 'uncategorized_error'
|
|
@@ -30322,7 +30387,7 @@ export interface Routes {
|
|
|
30322
30387
|
| 'honeywell_resideo_thermostat'
|
|
30323
30388
|
)
|
|
30324
30389
|
| ('ios_phone' | 'android_phone')
|
|
30325
|
-
| 'visionline_encoder'
|
|
30390
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
30326
30391
|
/** Optional nickname to describe the device, settable through Seam */
|
|
30327
30392
|
nickname?: string | undefined
|
|
30328
30393
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -30709,6 +30774,11 @@ export interface Routes {
|
|
|
30709
30774
|
_member_group_id?: string | undefined
|
|
30710
30775
|
}
|
|
30711
30776
|
| undefined
|
|
30777
|
+
assa_abloy_vostio_metadata?:
|
|
30778
|
+
| {
|
|
30779
|
+
encoder_id: string
|
|
30780
|
+
}
|
|
30781
|
+
| undefined
|
|
30712
30782
|
}) &
|
|
30713
30783
|
({
|
|
30714
30784
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -30964,7 +31034,7 @@ export interface Routes {
|
|
|
30964
31034
|
| 'honeywell_resideo_thermostat'
|
|
30965
31035
|
)
|
|
30966
31036
|
| ('ios_phone' | 'android_phone')
|
|
30967
|
-
| 'visionline_encoder'
|
|
31037
|
+
| ('visionline_encoder' | 'assa_abloy_vostio_encoder')
|
|
30968
31038
|
/** Optional nickname to describe the device, settable through Seam */
|
|
30969
31039
|
nickname?: string | undefined
|
|
30970
31040
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -31351,6 +31421,11 @@ export interface Routes {
|
|
|
31351
31421
|
_member_group_id?: string | undefined
|
|
31352
31422
|
}
|
|
31353
31423
|
| undefined
|
|
31424
|
+
assa_abloy_vostio_metadata?:
|
|
31425
|
+
| {
|
|
31426
|
+
encoder_id: string
|
|
31427
|
+
}
|
|
31428
|
+
| undefined
|
|
31354
31429
|
}) &
|
|
31355
31430
|
({
|
|
31356
31431
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -32078,16 +32153,16 @@ export interface Routes {
|
|
|
32078
32153
|
status: 'pending'
|
|
32079
32154
|
result: null
|
|
32080
32155
|
error: null
|
|
32081
|
-
action_type: '
|
|
32156
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
32082
32157
|
}
|
|
32083
32158
|
| {
|
|
32084
32159
|
/** The ID of the action attempt. */
|
|
32085
32160
|
action_attempt_id: string
|
|
32086
32161
|
status: 'success'
|
|
32087
32162
|
error: null
|
|
32088
|
-
action_type: '
|
|
32163
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
32089
32164
|
result: {
|
|
32090
|
-
/** Snapshot of
|
|
32165
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
32091
32166
|
acs_credential_on_encoder: {
|
|
32092
32167
|
/** Date and time the credential was created. */
|
|
32093
32168
|
created_at: string | null
|
|
@@ -32276,7 +32351,7 @@ export interface Routes {
|
|
|
32276
32351
|
action_attempt_id: string
|
|
32277
32352
|
status: 'error'
|
|
32278
32353
|
result: null
|
|
32279
|
-
action_type: '
|
|
32354
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
32280
32355
|
error:
|
|
32281
32356
|
| {
|
|
32282
32357
|
type: 'uncategorized_error'
|
|
@@ -32297,14 +32372,14 @@ export interface Routes {
|
|
|
32297
32372
|
status: 'pending'
|
|
32298
32373
|
result: null
|
|
32299
32374
|
error: null
|
|
32300
|
-
action_type: '
|
|
32375
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
32301
32376
|
}
|
|
32302
32377
|
| {
|
|
32303
32378
|
/** The ID of the action attempt. */
|
|
32304
32379
|
action_attempt_id: string
|
|
32305
32380
|
status: 'success'
|
|
32306
32381
|
error: null
|
|
32307
|
-
action_type: '
|
|
32382
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
32308
32383
|
/** Means by which a user gains access at an entrance.
|
|
32309
32384
|
|
|
32310
32385
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -32459,7 +32534,7 @@ export interface Routes {
|
|
|
32459
32534
|
action_attempt_id: string
|
|
32460
32535
|
status: 'error'
|
|
32461
32536
|
result: null
|
|
32462
|
-
action_type: '
|
|
32537
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
32463
32538
|
error:
|
|
32464
32539
|
| {
|
|
32465
32540
|
type: 'uncategorized_error'
|