@seamapi/types 1.289.0 → 1.289.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +54 -38
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +172 -164
- 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/openapi.d.ts +6 -2
- package/lib/seam/connect/openapi.js +41 -25
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +148 -144
- 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/openapi.ts +46 -25
- package/src/lib/seam/connect/route-types.ts +148 -144
- 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
|
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. */
|
|
318
318
|
result:
|
|
@@ -466,7 +466,7 @@ export interface Routes {
|
|
|
466
466
|
action_attempt_id: string
|
|
467
467
|
status: 'error'
|
|
468
468
|
result: null
|
|
469
|
-
action_type: '
|
|
469
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
470
470
|
error:
|
|
471
471
|
| {
|
|
472
472
|
type: 'uncategorized_error'
|
|
@@ -1103,16 +1103,16 @@ export interface Routes {
|
|
|
1103
1103
|
status: 'pending'
|
|
1104
1104
|
result: null
|
|
1105
1105
|
error: null
|
|
1106
|
-
action_type: '
|
|
1106
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
1107
1107
|
}
|
|
1108
1108
|
| {
|
|
1109
1109
|
/** The ID of the action attempt. */
|
|
1110
1110
|
action_attempt_id: string
|
|
1111
1111
|
status: 'success'
|
|
1112
1112
|
error: null
|
|
1113
|
-
action_type: '
|
|
1113
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
1114
1114
|
result: {
|
|
1115
|
-
/** Snapshot of
|
|
1115
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
1116
1116
|
acs_credential_on_encoder: {
|
|
1117
1117
|
/** Date and time the credential was created. */
|
|
1118
1118
|
created_at: string | null
|
|
@@ -1301,7 +1301,7 @@ export interface Routes {
|
|
|
1301
1301
|
action_attempt_id: string
|
|
1302
1302
|
status: 'error'
|
|
1303
1303
|
result: null
|
|
1304
|
-
action_type: '
|
|
1304
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
1305
1305
|
error:
|
|
1306
1306
|
| {
|
|
1307
1307
|
type: 'uncategorized_error'
|
|
@@ -1322,14 +1322,14 @@ export interface Routes {
|
|
|
1322
1322
|
status: 'pending'
|
|
1323
1323
|
result: null
|
|
1324
1324
|
error: null
|
|
1325
|
-
action_type: '
|
|
1325
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
1326
1326
|
}
|
|
1327
1327
|
| {
|
|
1328
1328
|
/** The ID of the action attempt. */
|
|
1329
1329
|
action_attempt_id: string
|
|
1330
1330
|
status: 'success'
|
|
1331
1331
|
error: null
|
|
1332
|
-
action_type: '
|
|
1332
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
1333
1333
|
/** Means by which a user gains access at an entrance.
|
|
1334
1334
|
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. */
|
|
1335
1335
|
result:
|
|
@@ -1483,7 +1483,7 @@ export interface Routes {
|
|
|
1483
1483
|
action_attempt_id: string
|
|
1484
1484
|
status: 'error'
|
|
1485
1485
|
result: null
|
|
1486
|
-
action_type: '
|
|
1486
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
1487
1487
|
error:
|
|
1488
1488
|
| {
|
|
1489
1489
|
type: 'uncategorized_error'
|
|
@@ -2285,16 +2285,16 @@ export interface Routes {
|
|
|
2285
2285
|
status: 'pending'
|
|
2286
2286
|
result: null
|
|
2287
2287
|
error: null
|
|
2288
|
-
action_type: '
|
|
2288
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
2289
2289
|
}
|
|
2290
2290
|
| {
|
|
2291
2291
|
/** The ID of the action attempt. */
|
|
2292
2292
|
action_attempt_id: string
|
|
2293
2293
|
status: 'success'
|
|
2294
2294
|
error: null
|
|
2295
|
-
action_type: '
|
|
2295
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
2296
2296
|
result: {
|
|
2297
|
-
/** Snapshot of
|
|
2297
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
2298
2298
|
acs_credential_on_encoder: {
|
|
2299
2299
|
/** Date and time the credential was created. */
|
|
2300
2300
|
created_at: string | null
|
|
@@ -2483,7 +2483,7 @@ export interface Routes {
|
|
|
2483
2483
|
action_attempt_id: string
|
|
2484
2484
|
status: 'error'
|
|
2485
2485
|
result: null
|
|
2486
|
-
action_type: '
|
|
2486
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
2487
2487
|
error:
|
|
2488
2488
|
| {
|
|
2489
2489
|
type: 'uncategorized_error'
|
|
@@ -2504,14 +2504,14 @@ export interface Routes {
|
|
|
2504
2504
|
status: 'pending'
|
|
2505
2505
|
result: null
|
|
2506
2506
|
error: null
|
|
2507
|
-
action_type: '
|
|
2507
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
2508
2508
|
}
|
|
2509
2509
|
| {
|
|
2510
2510
|
/** The ID of the action attempt. */
|
|
2511
2511
|
action_attempt_id: string
|
|
2512
2512
|
status: 'success'
|
|
2513
2513
|
error: null
|
|
2514
|
-
action_type: '
|
|
2514
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
2515
2515
|
/** Means by which a user gains access at an entrance.
|
|
2516
2516
|
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. */
|
|
2517
2517
|
result:
|
|
@@ -2665,7 +2665,7 @@ export interface Routes {
|
|
|
2665
2665
|
action_attempt_id: string
|
|
2666
2666
|
status: 'error'
|
|
2667
2667
|
result: null
|
|
2668
|
-
action_type: '
|
|
2668
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
2669
2669
|
error:
|
|
2670
2670
|
| {
|
|
2671
2671
|
type: 'uncategorized_error'
|
|
@@ -3289,16 +3289,16 @@ export interface Routes {
|
|
|
3289
3289
|
status: 'pending'
|
|
3290
3290
|
result: null
|
|
3291
3291
|
error: null
|
|
3292
|
-
action_type: '
|
|
3292
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
3293
3293
|
}
|
|
3294
3294
|
| {
|
|
3295
3295
|
/** The ID of the action attempt. */
|
|
3296
3296
|
action_attempt_id: string
|
|
3297
3297
|
status: 'success'
|
|
3298
3298
|
error: null
|
|
3299
|
-
action_type: '
|
|
3299
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
3300
3300
|
result: {
|
|
3301
|
-
/** Snapshot of
|
|
3301
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
3302
3302
|
acs_credential_on_encoder: {
|
|
3303
3303
|
/** Date and time the credential was created. */
|
|
3304
3304
|
created_at: string | null
|
|
@@ -3487,7 +3487,7 @@ export interface Routes {
|
|
|
3487
3487
|
action_attempt_id: string
|
|
3488
3488
|
status: 'error'
|
|
3489
3489
|
result: null
|
|
3490
|
-
action_type: '
|
|
3490
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
3491
3491
|
error:
|
|
3492
3492
|
| {
|
|
3493
3493
|
type: 'uncategorized_error'
|
|
@@ -3508,14 +3508,14 @@ export interface Routes {
|
|
|
3508
3508
|
status: 'pending'
|
|
3509
3509
|
result: null
|
|
3510
3510
|
error: null
|
|
3511
|
-
action_type: '
|
|
3511
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
3512
3512
|
}
|
|
3513
3513
|
| {
|
|
3514
3514
|
/** The ID of the action attempt. */
|
|
3515
3515
|
action_attempt_id: string
|
|
3516
3516
|
status: 'success'
|
|
3517
3517
|
error: null
|
|
3518
|
-
action_type: '
|
|
3518
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
3519
3519
|
/** Means by which a user gains access at an entrance.
|
|
3520
3520
|
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. */
|
|
3521
3521
|
result:
|
|
@@ -3669,7 +3669,7 @@ export interface Routes {
|
|
|
3669
3669
|
action_attempt_id: string
|
|
3670
3670
|
status: 'error'
|
|
3671
3671
|
result: null
|
|
3672
|
-
action_type: '
|
|
3672
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
3673
3673
|
error:
|
|
3674
3674
|
| {
|
|
3675
3675
|
type: 'uncategorized_error'
|
|
@@ -5392,13 +5392,15 @@ export interface Routes {
|
|
|
5392
5392
|
}
|
|
5393
5393
|
}
|
|
5394
5394
|
}
|
|
5395
|
-
'/acs/encoders/
|
|
5396
|
-
route: '/acs/encoders/
|
|
5395
|
+
'/acs/encoders/encode_credential': {
|
|
5396
|
+
route: '/acs/encoders/encode_credential'
|
|
5397
5397
|
method: 'POST'
|
|
5398
5398
|
queryParams: {}
|
|
5399
5399
|
jsonBody: {}
|
|
5400
5400
|
commonParams: {
|
|
5401
|
+
/** ID of the encoder to use for the encoding. */
|
|
5401
5402
|
device_id: string
|
|
5403
|
+
/** ID of the acs_credential to encode on a physical card. */
|
|
5402
5404
|
acs_credential_id: string
|
|
5403
5405
|
}
|
|
5404
5406
|
formData: {}
|
|
@@ -5464,16 +5466,16 @@ export interface Routes {
|
|
|
5464
5466
|
status: 'pending'
|
|
5465
5467
|
result: null
|
|
5466
5468
|
error: null
|
|
5467
|
-
action_type: '
|
|
5469
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
5468
5470
|
}
|
|
5469
5471
|
| {
|
|
5470
5472
|
/** The ID of the action attempt. */
|
|
5471
5473
|
action_attempt_id: string
|
|
5472
5474
|
status: 'success'
|
|
5473
5475
|
error: null
|
|
5474
|
-
action_type: '
|
|
5476
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
5475
5477
|
result: {
|
|
5476
|
-
/** Snapshot of
|
|
5478
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
5477
5479
|
acs_credential_on_encoder: {
|
|
5478
5480
|
/** Date and time the credential was created. */
|
|
5479
5481
|
created_at: string | null
|
|
@@ -5662,7 +5664,7 @@ export interface Routes {
|
|
|
5662
5664
|
action_attempt_id: string
|
|
5663
5665
|
status: 'error'
|
|
5664
5666
|
result: null
|
|
5665
|
-
action_type: '
|
|
5667
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
5666
5668
|
error:
|
|
5667
5669
|
| {
|
|
5668
5670
|
type: 'uncategorized_error'
|
|
@@ -5683,14 +5685,14 @@ export interface Routes {
|
|
|
5683
5685
|
status: 'pending'
|
|
5684
5686
|
result: null
|
|
5685
5687
|
error: null
|
|
5686
|
-
action_type: '
|
|
5688
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
5687
5689
|
}
|
|
5688
5690
|
| {
|
|
5689
5691
|
/** The ID of the action attempt. */
|
|
5690
5692
|
action_attempt_id: string
|
|
5691
5693
|
status: 'success'
|
|
5692
5694
|
error: null
|
|
5693
|
-
action_type: '
|
|
5695
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
5694
5696
|
/** Means by which a user gains access at an entrance.
|
|
5695
5697
|
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. */
|
|
5696
5698
|
result:
|
|
@@ -5844,7 +5846,7 @@ export interface Routes {
|
|
|
5844
5846
|
action_attempt_id: string
|
|
5845
5847
|
status: 'error'
|
|
5846
5848
|
result: null
|
|
5847
|
-
action_type: '
|
|
5849
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
5848
5850
|
error:
|
|
5849
5851
|
| {
|
|
5850
5852
|
type: 'uncategorized_error'
|
|
@@ -6920,13 +6922,15 @@ export interface Routes {
|
|
|
6920
6922
|
}>
|
|
6921
6923
|
}
|
|
6922
6924
|
}
|
|
6923
|
-
'/acs/encoders/
|
|
6924
|
-
route: '/acs/encoders/
|
|
6925
|
+
'/acs/encoders/scan_credential': {
|
|
6926
|
+
route: '/acs/encoders/scan_credential'
|
|
6925
6927
|
method: 'POST'
|
|
6926
6928
|
queryParams: {}
|
|
6927
6929
|
jsonBody: {}
|
|
6928
6930
|
commonParams: {
|
|
6931
|
+
/** ID of the acs_system the encoder belongs to. */
|
|
6929
6932
|
acs_system_id: string
|
|
6933
|
+
/** ID of the encoder to use for the scan. */
|
|
6930
6934
|
device_id: string
|
|
6931
6935
|
}
|
|
6932
6936
|
formData: {}
|
|
@@ -6992,16 +6996,16 @@ export interface Routes {
|
|
|
6992
6996
|
status: 'pending'
|
|
6993
6997
|
result: null
|
|
6994
6998
|
error: null
|
|
6995
|
-
action_type: '
|
|
6999
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
6996
7000
|
}
|
|
6997
7001
|
| {
|
|
6998
7002
|
/** The ID of the action attempt. */
|
|
6999
7003
|
action_attempt_id: string
|
|
7000
7004
|
status: 'success'
|
|
7001
7005
|
error: null
|
|
7002
|
-
action_type: '
|
|
7006
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
7003
7007
|
result: {
|
|
7004
|
-
/** Snapshot of
|
|
7008
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
7005
7009
|
acs_credential_on_encoder: {
|
|
7006
7010
|
/** Date and time the credential was created. */
|
|
7007
7011
|
created_at: string | null
|
|
@@ -7190,7 +7194,7 @@ export interface Routes {
|
|
|
7190
7194
|
action_attempt_id: string
|
|
7191
7195
|
status: 'error'
|
|
7192
7196
|
result: null
|
|
7193
|
-
action_type: '
|
|
7197
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
7194
7198
|
error:
|
|
7195
7199
|
| {
|
|
7196
7200
|
type: 'uncategorized_error'
|
|
@@ -7211,14 +7215,14 @@ export interface Routes {
|
|
|
7211
7215
|
status: 'pending'
|
|
7212
7216
|
result: null
|
|
7213
7217
|
error: null
|
|
7214
|
-
action_type: '
|
|
7218
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
7215
7219
|
}
|
|
7216
7220
|
| {
|
|
7217
7221
|
/** The ID of the action attempt. */
|
|
7218
7222
|
action_attempt_id: string
|
|
7219
7223
|
status: 'success'
|
|
7220
7224
|
error: null
|
|
7221
|
-
action_type: '
|
|
7225
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
7222
7226
|
/** Means by which a user gains access at an entrance.
|
|
7223
7227
|
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. */
|
|
7224
7228
|
result:
|
|
@@ -7372,7 +7376,7 @@ export interface Routes {
|
|
|
7372
7376
|
action_attempt_id: string
|
|
7373
7377
|
status: 'error'
|
|
7374
7378
|
result: null
|
|
7375
|
-
action_type: '
|
|
7379
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
7376
7380
|
error:
|
|
7377
7381
|
| {
|
|
7378
7382
|
type: 'uncategorized_error'
|
|
@@ -9369,16 +9373,16 @@ export interface Routes {
|
|
|
9369
9373
|
status: 'pending'
|
|
9370
9374
|
result: null
|
|
9371
9375
|
error: null
|
|
9372
|
-
action_type: '
|
|
9376
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
9373
9377
|
}
|
|
9374
9378
|
| {
|
|
9375
9379
|
/** The ID of the action attempt. */
|
|
9376
9380
|
action_attempt_id: string
|
|
9377
9381
|
status: 'success'
|
|
9378
9382
|
error: null
|
|
9379
|
-
action_type: '
|
|
9383
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
9380
9384
|
result: {
|
|
9381
|
-
/** Snapshot of
|
|
9385
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
9382
9386
|
acs_credential_on_encoder: {
|
|
9383
9387
|
/** Date and time the credential was created. */
|
|
9384
9388
|
created_at: string | null
|
|
@@ -9567,7 +9571,7 @@ export interface Routes {
|
|
|
9567
9571
|
action_attempt_id: string
|
|
9568
9572
|
status: 'error'
|
|
9569
9573
|
result: null
|
|
9570
|
-
action_type: '
|
|
9574
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
9571
9575
|
error:
|
|
9572
9576
|
| {
|
|
9573
9577
|
type: 'uncategorized_error'
|
|
@@ -9588,14 +9592,14 @@ export interface Routes {
|
|
|
9588
9592
|
status: 'pending'
|
|
9589
9593
|
result: null
|
|
9590
9594
|
error: null
|
|
9591
|
-
action_type: '
|
|
9595
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
9592
9596
|
}
|
|
9593
9597
|
| {
|
|
9594
9598
|
/** The ID of the action attempt. */
|
|
9595
9599
|
action_attempt_id: string
|
|
9596
9600
|
status: 'success'
|
|
9597
9601
|
error: null
|
|
9598
|
-
action_type: '
|
|
9602
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
9599
9603
|
/** Means by which a user gains access at an entrance.
|
|
9600
9604
|
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. */
|
|
9601
9605
|
result:
|
|
@@ -9749,7 +9753,7 @@ export interface Routes {
|
|
|
9749
9753
|
action_attempt_id: string
|
|
9750
9754
|
status: 'error'
|
|
9751
9755
|
result: null
|
|
9752
|
-
action_type: '
|
|
9756
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
9753
9757
|
error:
|
|
9754
9758
|
| {
|
|
9755
9759
|
type: 'uncategorized_error'
|
|
@@ -10227,16 +10231,16 @@ export interface Routes {
|
|
|
10227
10231
|
status: 'pending'
|
|
10228
10232
|
result: null
|
|
10229
10233
|
error: null
|
|
10230
|
-
action_type: '
|
|
10234
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
10231
10235
|
}
|
|
10232
10236
|
| {
|
|
10233
10237
|
/** The ID of the action attempt. */
|
|
10234
10238
|
action_attempt_id: string
|
|
10235
10239
|
status: 'success'
|
|
10236
10240
|
error: null
|
|
10237
|
-
action_type: '
|
|
10241
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
10238
10242
|
result: {
|
|
10239
|
-
/** Snapshot of
|
|
10243
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
10240
10244
|
acs_credential_on_encoder: {
|
|
10241
10245
|
/** Date and time the credential was created. */
|
|
10242
10246
|
created_at: string | null
|
|
@@ -10425,7 +10429,7 @@ export interface Routes {
|
|
|
10425
10429
|
action_attempt_id: string
|
|
10426
10430
|
status: 'error'
|
|
10427
10431
|
result: null
|
|
10428
|
-
action_type: '
|
|
10432
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
10429
10433
|
error:
|
|
10430
10434
|
| {
|
|
10431
10435
|
type: 'uncategorized_error'
|
|
@@ -10446,14 +10450,14 @@ export interface Routes {
|
|
|
10446
10450
|
status: 'pending'
|
|
10447
10451
|
result: null
|
|
10448
10452
|
error: null
|
|
10449
|
-
action_type: '
|
|
10453
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
10450
10454
|
}
|
|
10451
10455
|
| {
|
|
10452
10456
|
/** The ID of the action attempt. */
|
|
10453
10457
|
action_attempt_id: string
|
|
10454
10458
|
status: 'success'
|
|
10455
10459
|
error: null
|
|
10456
|
-
action_type: '
|
|
10460
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
10457
10461
|
/** Means by which a user gains access at an entrance.
|
|
10458
10462
|
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. */
|
|
10459
10463
|
result:
|
|
@@ -10607,7 +10611,7 @@ export interface Routes {
|
|
|
10607
10611
|
action_attempt_id: string
|
|
10608
10612
|
status: 'error'
|
|
10609
10613
|
result: null
|
|
10610
|
-
action_type: '
|
|
10614
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
10611
10615
|
error:
|
|
10612
10616
|
| {
|
|
10613
10617
|
type: 'uncategorized_error'
|
|
@@ -16690,16 +16694,16 @@ export interface Routes {
|
|
|
16690
16694
|
status: 'pending'
|
|
16691
16695
|
result: null
|
|
16692
16696
|
error: null
|
|
16693
|
-
action_type: '
|
|
16697
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
16694
16698
|
}
|
|
16695
16699
|
| {
|
|
16696
16700
|
/** The ID of the action attempt. */
|
|
16697
16701
|
action_attempt_id: string
|
|
16698
16702
|
status: 'success'
|
|
16699
16703
|
error: null
|
|
16700
|
-
action_type: '
|
|
16704
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
16701
16705
|
result: {
|
|
16702
|
-
/** Snapshot of
|
|
16706
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
16703
16707
|
acs_credential_on_encoder: {
|
|
16704
16708
|
/** Date and time the credential was created. */
|
|
16705
16709
|
created_at: string | null
|
|
@@ -16888,7 +16892,7 @@ export interface Routes {
|
|
|
16888
16892
|
action_attempt_id: string
|
|
16889
16893
|
status: 'error'
|
|
16890
16894
|
result: null
|
|
16891
|
-
action_type: '
|
|
16895
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
16892
16896
|
error:
|
|
16893
16897
|
| {
|
|
16894
16898
|
type: 'uncategorized_error'
|
|
@@ -16909,14 +16913,14 @@ export interface Routes {
|
|
|
16909
16913
|
status: 'pending'
|
|
16910
16914
|
result: null
|
|
16911
16915
|
error: null
|
|
16912
|
-
action_type: '
|
|
16916
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
16913
16917
|
}
|
|
16914
16918
|
| {
|
|
16915
16919
|
/** The ID of the action attempt. */
|
|
16916
16920
|
action_attempt_id: string
|
|
16917
16921
|
status: 'success'
|
|
16918
16922
|
error: null
|
|
16919
|
-
action_type: '
|
|
16923
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
16920
16924
|
/** Means by which a user gains access at an entrance.
|
|
16921
16925
|
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. */
|
|
16922
16926
|
result:
|
|
@@ -17070,7 +17074,7 @@ export interface Routes {
|
|
|
17070
17074
|
action_attempt_id: string
|
|
17071
17075
|
status: 'error'
|
|
17072
17076
|
result: null
|
|
17073
|
-
action_type: '
|
|
17077
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
17074
17078
|
error:
|
|
17075
17079
|
| {
|
|
17076
17080
|
type: 'uncategorized_error'
|
|
@@ -17549,16 +17553,16 @@ export interface Routes {
|
|
|
17549
17553
|
status: 'pending'
|
|
17550
17554
|
result: null
|
|
17551
17555
|
error: null
|
|
17552
|
-
action_type: '
|
|
17556
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
17553
17557
|
}
|
|
17554
17558
|
| {
|
|
17555
17559
|
/** The ID of the action attempt. */
|
|
17556
17560
|
action_attempt_id: string
|
|
17557
17561
|
status: 'success'
|
|
17558
17562
|
error: null
|
|
17559
|
-
action_type: '
|
|
17563
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
17560
17564
|
result: {
|
|
17561
|
-
/** Snapshot of
|
|
17565
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
17562
17566
|
acs_credential_on_encoder: {
|
|
17563
17567
|
/** Date and time the credential was created. */
|
|
17564
17568
|
created_at: string | null
|
|
@@ -17747,7 +17751,7 @@ export interface Routes {
|
|
|
17747
17751
|
action_attempt_id: string
|
|
17748
17752
|
status: 'error'
|
|
17749
17753
|
result: null
|
|
17750
|
-
action_type: '
|
|
17754
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
17751
17755
|
error:
|
|
17752
17756
|
| {
|
|
17753
17757
|
type: 'uncategorized_error'
|
|
@@ -17768,14 +17772,14 @@ export interface Routes {
|
|
|
17768
17772
|
status: 'pending'
|
|
17769
17773
|
result: null
|
|
17770
17774
|
error: null
|
|
17771
|
-
action_type: '
|
|
17775
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
17772
17776
|
}
|
|
17773
17777
|
| {
|
|
17774
17778
|
/** The ID of the action attempt. */
|
|
17775
17779
|
action_attempt_id: string
|
|
17776
17780
|
status: 'success'
|
|
17777
17781
|
error: null
|
|
17778
|
-
action_type: '
|
|
17782
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
17779
17783
|
/** Means by which a user gains access at an entrance.
|
|
17780
17784
|
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. */
|
|
17781
17785
|
result:
|
|
@@ -17929,7 +17933,7 @@ export interface Routes {
|
|
|
17929
17933
|
action_attempt_id: string
|
|
17930
17934
|
status: 'error'
|
|
17931
17935
|
result: null
|
|
17932
|
-
action_type: '
|
|
17936
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
17933
17937
|
error:
|
|
17934
17938
|
| {
|
|
17935
17939
|
type: 'uncategorized_error'
|
|
@@ -19910,16 +19914,16 @@ export interface Routes {
|
|
|
19910
19914
|
status: 'pending'
|
|
19911
19915
|
result: null
|
|
19912
19916
|
error: null
|
|
19913
|
-
action_type: '
|
|
19917
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
19914
19918
|
}
|
|
19915
19919
|
| {
|
|
19916
19920
|
/** The ID of the action attempt. */
|
|
19917
19921
|
action_attempt_id: string
|
|
19918
19922
|
status: 'success'
|
|
19919
19923
|
error: null
|
|
19920
|
-
action_type: '
|
|
19924
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
19921
19925
|
result: {
|
|
19922
|
-
/** Snapshot of
|
|
19926
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
19923
19927
|
acs_credential_on_encoder: {
|
|
19924
19928
|
/** Date and time the credential was created. */
|
|
19925
19929
|
created_at: string | null
|
|
@@ -20108,7 +20112,7 @@ export interface Routes {
|
|
|
20108
20112
|
action_attempt_id: string
|
|
20109
20113
|
status: 'error'
|
|
20110
20114
|
result: null
|
|
20111
|
-
action_type: '
|
|
20115
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
20112
20116
|
error:
|
|
20113
20117
|
| {
|
|
20114
20118
|
type: 'uncategorized_error'
|
|
@@ -20129,14 +20133,14 @@ export interface Routes {
|
|
|
20129
20133
|
status: 'pending'
|
|
20130
20134
|
result: null
|
|
20131
20135
|
error: null
|
|
20132
|
-
action_type: '
|
|
20136
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
20133
20137
|
}
|
|
20134
20138
|
| {
|
|
20135
20139
|
/** The ID of the action attempt. */
|
|
20136
20140
|
action_attempt_id: string
|
|
20137
20141
|
status: 'success'
|
|
20138
20142
|
error: null
|
|
20139
|
-
action_type: '
|
|
20143
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
20140
20144
|
/** Means by which a user gains access at an entrance.
|
|
20141
20145
|
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. */
|
|
20142
20146
|
result:
|
|
@@ -20290,7 +20294,7 @@ export interface Routes {
|
|
|
20290
20294
|
action_attempt_id: string
|
|
20291
20295
|
status: 'error'
|
|
20292
20296
|
result: null
|
|
20293
|
-
action_type: '
|
|
20297
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
20294
20298
|
error:
|
|
20295
20299
|
| {
|
|
20296
20300
|
type: 'uncategorized_error'
|
|
@@ -20779,16 +20783,16 @@ export interface Routes {
|
|
|
20779
20783
|
status: 'pending'
|
|
20780
20784
|
result: null
|
|
20781
20785
|
error: null
|
|
20782
|
-
action_type: '
|
|
20786
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
20783
20787
|
}
|
|
20784
20788
|
| {
|
|
20785
20789
|
/** The ID of the action attempt. */
|
|
20786
20790
|
action_attempt_id: string
|
|
20787
20791
|
status: 'success'
|
|
20788
20792
|
error: null
|
|
20789
|
-
action_type: '
|
|
20793
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
20790
20794
|
result: {
|
|
20791
|
-
/** Snapshot of
|
|
20795
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
20792
20796
|
acs_credential_on_encoder: {
|
|
20793
20797
|
/** Date and time the credential was created. */
|
|
20794
20798
|
created_at: string | null
|
|
@@ -20977,7 +20981,7 @@ export interface Routes {
|
|
|
20977
20981
|
action_attempt_id: string
|
|
20978
20982
|
status: 'error'
|
|
20979
20983
|
result: null
|
|
20980
|
-
action_type: '
|
|
20984
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
20981
20985
|
error:
|
|
20982
20986
|
| {
|
|
20983
20987
|
type: 'uncategorized_error'
|
|
@@ -20998,14 +21002,14 @@ export interface Routes {
|
|
|
20998
21002
|
status: 'pending'
|
|
20999
21003
|
result: null
|
|
21000
21004
|
error: null
|
|
21001
|
-
action_type: '
|
|
21005
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
21002
21006
|
}
|
|
21003
21007
|
| {
|
|
21004
21008
|
/** The ID of the action attempt. */
|
|
21005
21009
|
action_attempt_id: string
|
|
21006
21010
|
status: 'success'
|
|
21007
21011
|
error: null
|
|
21008
|
-
action_type: '
|
|
21012
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
21009
21013
|
/** Means by which a user gains access at an entrance.
|
|
21010
21014
|
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. */
|
|
21011
21015
|
result:
|
|
@@ -21159,7 +21163,7 @@ export interface Routes {
|
|
|
21159
21163
|
action_attempt_id: string
|
|
21160
21164
|
status: 'error'
|
|
21161
21165
|
result: null
|
|
21162
|
-
action_type: '
|
|
21166
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
21163
21167
|
error:
|
|
21164
21168
|
| {
|
|
21165
21169
|
type: 'uncategorized_error'
|
|
@@ -21687,16 +21691,16 @@ export interface Routes {
|
|
|
21687
21691
|
status: 'pending'
|
|
21688
21692
|
result: null
|
|
21689
21693
|
error: null
|
|
21690
|
-
action_type: '
|
|
21694
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
21691
21695
|
}
|
|
21692
21696
|
| {
|
|
21693
21697
|
/** The ID of the action attempt. */
|
|
21694
21698
|
action_attempt_id: string
|
|
21695
21699
|
status: 'success'
|
|
21696
21700
|
error: null
|
|
21697
|
-
action_type: '
|
|
21701
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
21698
21702
|
result: {
|
|
21699
|
-
/** Snapshot of
|
|
21703
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
21700
21704
|
acs_credential_on_encoder: {
|
|
21701
21705
|
/** Date and time the credential was created. */
|
|
21702
21706
|
created_at: string | null
|
|
@@ -21885,7 +21889,7 @@ export interface Routes {
|
|
|
21885
21889
|
action_attempt_id: string
|
|
21886
21890
|
status: 'error'
|
|
21887
21891
|
result: null
|
|
21888
|
-
action_type: '
|
|
21892
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
21889
21893
|
error:
|
|
21890
21894
|
| {
|
|
21891
21895
|
type: 'uncategorized_error'
|
|
@@ -21906,14 +21910,14 @@ export interface Routes {
|
|
|
21906
21910
|
status: 'pending'
|
|
21907
21911
|
result: null
|
|
21908
21912
|
error: null
|
|
21909
|
-
action_type: '
|
|
21913
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
21910
21914
|
}
|
|
21911
21915
|
| {
|
|
21912
21916
|
/** The ID of the action attempt. */
|
|
21913
21917
|
action_attempt_id: string
|
|
21914
21918
|
status: 'success'
|
|
21915
21919
|
error: null
|
|
21916
|
-
action_type: '
|
|
21920
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
21917
21921
|
/** Means by which a user gains access at an entrance.
|
|
21918
21922
|
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. */
|
|
21919
21923
|
result:
|
|
@@ -22067,7 +22071,7 @@ export interface Routes {
|
|
|
22067
22071
|
action_attempt_id: string
|
|
22068
22072
|
status: 'error'
|
|
22069
22073
|
result: null
|
|
22070
|
-
action_type: '
|
|
22074
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
22071
22075
|
error:
|
|
22072
22076
|
| {
|
|
22073
22077
|
type: 'uncategorized_error'
|
|
@@ -22752,16 +22756,16 @@ export interface Routes {
|
|
|
22752
22756
|
status: 'pending'
|
|
22753
22757
|
result: null
|
|
22754
22758
|
error: null
|
|
22755
|
-
action_type: '
|
|
22759
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
22756
22760
|
}
|
|
22757
22761
|
| {
|
|
22758
22762
|
/** The ID of the action attempt. */
|
|
22759
22763
|
action_attempt_id: string
|
|
22760
22764
|
status: 'success'
|
|
22761
22765
|
error: null
|
|
22762
|
-
action_type: '
|
|
22766
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
22763
22767
|
result: {
|
|
22764
|
-
/** Snapshot of
|
|
22768
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
22765
22769
|
acs_credential_on_encoder: {
|
|
22766
22770
|
/** Date and time the credential was created. */
|
|
22767
22771
|
created_at: string | null
|
|
@@ -22950,7 +22954,7 @@ export interface Routes {
|
|
|
22950
22954
|
action_attempt_id: string
|
|
22951
22955
|
status: 'error'
|
|
22952
22956
|
result: null
|
|
22953
|
-
action_type: '
|
|
22957
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
22954
22958
|
error:
|
|
22955
22959
|
| {
|
|
22956
22960
|
type: 'uncategorized_error'
|
|
@@ -22971,14 +22975,14 @@ export interface Routes {
|
|
|
22971
22975
|
status: 'pending'
|
|
22972
22976
|
result: null
|
|
22973
22977
|
error: null
|
|
22974
|
-
action_type: '
|
|
22978
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
22975
22979
|
}
|
|
22976
22980
|
| {
|
|
22977
22981
|
/** The ID of the action attempt. */
|
|
22978
22982
|
action_attempt_id: string
|
|
22979
22983
|
status: 'success'
|
|
22980
22984
|
error: null
|
|
22981
|
-
action_type: '
|
|
22985
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
22982
22986
|
/** Means by which a user gains access at an entrance.
|
|
22983
22987
|
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. */
|
|
22984
22988
|
result:
|
|
@@ -23132,7 +23136,7 @@ export interface Routes {
|
|
|
23132
23136
|
action_attempt_id: string
|
|
23133
23137
|
status: 'error'
|
|
23134
23138
|
result: null
|
|
23135
|
-
action_type: '
|
|
23139
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
23136
23140
|
error:
|
|
23137
23141
|
| {
|
|
23138
23142
|
type: 'uncategorized_error'
|
|
@@ -23616,16 +23620,16 @@ export interface Routes {
|
|
|
23616
23620
|
status: 'pending'
|
|
23617
23621
|
result: null
|
|
23618
23622
|
error: null
|
|
23619
|
-
action_type: '
|
|
23623
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
23620
23624
|
}
|
|
23621
23625
|
| {
|
|
23622
23626
|
/** The ID of the action attempt. */
|
|
23623
23627
|
action_attempt_id: string
|
|
23624
23628
|
status: 'success'
|
|
23625
23629
|
error: null
|
|
23626
|
-
action_type: '
|
|
23630
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
23627
23631
|
result: {
|
|
23628
|
-
/** Snapshot of
|
|
23632
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
23629
23633
|
acs_credential_on_encoder: {
|
|
23630
23634
|
/** Date and time the credential was created. */
|
|
23631
23635
|
created_at: string | null
|
|
@@ -23814,7 +23818,7 @@ export interface Routes {
|
|
|
23814
23818
|
action_attempt_id: string
|
|
23815
23819
|
status: 'error'
|
|
23816
23820
|
result: null
|
|
23817
|
-
action_type: '
|
|
23821
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
23818
23822
|
error:
|
|
23819
23823
|
| {
|
|
23820
23824
|
type: 'uncategorized_error'
|
|
@@ -23835,14 +23839,14 @@ export interface Routes {
|
|
|
23835
23839
|
status: 'pending'
|
|
23836
23840
|
result: null
|
|
23837
23841
|
error: null
|
|
23838
|
-
action_type: '
|
|
23842
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
23839
23843
|
}
|
|
23840
23844
|
| {
|
|
23841
23845
|
/** The ID of the action attempt. */
|
|
23842
23846
|
action_attempt_id: string
|
|
23843
23847
|
status: 'success'
|
|
23844
23848
|
error: null
|
|
23845
|
-
action_type: '
|
|
23849
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
23846
23850
|
/** Means by which a user gains access at an entrance.
|
|
23847
23851
|
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. */
|
|
23848
23852
|
result:
|
|
@@ -23996,7 +24000,7 @@ export interface Routes {
|
|
|
23996
24000
|
action_attempt_id: string
|
|
23997
24001
|
status: 'error'
|
|
23998
24002
|
result: null
|
|
23999
|
-
action_type: '
|
|
24003
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
24000
24004
|
error:
|
|
24001
24005
|
| {
|
|
24002
24006
|
type: 'uncategorized_error'
|
|
@@ -25173,16 +25177,16 @@ export interface Routes {
|
|
|
25173
25177
|
status: 'pending'
|
|
25174
25178
|
result: null
|
|
25175
25179
|
error: null
|
|
25176
|
-
action_type: '
|
|
25180
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
25177
25181
|
}
|
|
25178
25182
|
| {
|
|
25179
25183
|
/** The ID of the action attempt. */
|
|
25180
25184
|
action_attempt_id: string
|
|
25181
25185
|
status: 'success'
|
|
25182
25186
|
error: null
|
|
25183
|
-
action_type: '
|
|
25187
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
25184
25188
|
result: {
|
|
25185
|
-
/** Snapshot of
|
|
25189
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
25186
25190
|
acs_credential_on_encoder: {
|
|
25187
25191
|
/** Date and time the credential was created. */
|
|
25188
25192
|
created_at: string | null
|
|
@@ -25371,7 +25375,7 @@ export interface Routes {
|
|
|
25371
25375
|
action_attempt_id: string
|
|
25372
25376
|
status: 'error'
|
|
25373
25377
|
result: null
|
|
25374
|
-
action_type: '
|
|
25378
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
25375
25379
|
error:
|
|
25376
25380
|
| {
|
|
25377
25381
|
type: 'uncategorized_error'
|
|
@@ -25392,14 +25396,14 @@ export interface Routes {
|
|
|
25392
25396
|
status: 'pending'
|
|
25393
25397
|
result: null
|
|
25394
25398
|
error: null
|
|
25395
|
-
action_type: '
|
|
25399
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
25396
25400
|
}
|
|
25397
25401
|
| {
|
|
25398
25402
|
/** The ID of the action attempt. */
|
|
25399
25403
|
action_attempt_id: string
|
|
25400
25404
|
status: 'success'
|
|
25401
25405
|
error: null
|
|
25402
|
-
action_type: '
|
|
25406
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
25403
25407
|
/** Means by which a user gains access at an entrance.
|
|
25404
25408
|
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. */
|
|
25405
25409
|
result:
|
|
@@ -25553,7 +25557,7 @@ export interface Routes {
|
|
|
25553
25557
|
action_attempt_id: string
|
|
25554
25558
|
status: 'error'
|
|
25555
25559
|
result: null
|
|
25556
|
-
action_type: '
|
|
25560
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
25557
25561
|
error:
|
|
25558
25562
|
| {
|
|
25559
25563
|
type: 'uncategorized_error'
|
|
@@ -26041,16 +26045,16 @@ export interface Routes {
|
|
|
26041
26045
|
status: 'pending'
|
|
26042
26046
|
result: null
|
|
26043
26047
|
error: null
|
|
26044
|
-
action_type: '
|
|
26048
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
26045
26049
|
}
|
|
26046
26050
|
| {
|
|
26047
26051
|
/** The ID of the action attempt. */
|
|
26048
26052
|
action_attempt_id: string
|
|
26049
26053
|
status: 'success'
|
|
26050
26054
|
error: null
|
|
26051
|
-
action_type: '
|
|
26055
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
26052
26056
|
result: {
|
|
26053
|
-
/** Snapshot of
|
|
26057
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
26054
26058
|
acs_credential_on_encoder: {
|
|
26055
26059
|
/** Date and time the credential was created. */
|
|
26056
26060
|
created_at: string | null
|
|
@@ -26239,7 +26243,7 @@ export interface Routes {
|
|
|
26239
26243
|
action_attempt_id: string
|
|
26240
26244
|
status: 'error'
|
|
26241
26245
|
result: null
|
|
26242
|
-
action_type: '
|
|
26246
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
26243
26247
|
error:
|
|
26244
26248
|
| {
|
|
26245
26249
|
type: 'uncategorized_error'
|
|
@@ -26260,14 +26264,14 @@ export interface Routes {
|
|
|
26260
26264
|
status: 'pending'
|
|
26261
26265
|
result: null
|
|
26262
26266
|
error: null
|
|
26263
|
-
action_type: '
|
|
26267
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
26264
26268
|
}
|
|
26265
26269
|
| {
|
|
26266
26270
|
/** The ID of the action attempt. */
|
|
26267
26271
|
action_attempt_id: string
|
|
26268
26272
|
status: 'success'
|
|
26269
26273
|
error: null
|
|
26270
|
-
action_type: '
|
|
26274
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
26271
26275
|
/** Means by which a user gains access at an entrance.
|
|
26272
26276
|
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. */
|
|
26273
26277
|
result:
|
|
@@ -26421,7 +26425,7 @@ export interface Routes {
|
|
|
26421
26425
|
action_attempt_id: string
|
|
26422
26426
|
status: 'error'
|
|
26423
26427
|
result: null
|
|
26424
|
-
action_type: '
|
|
26428
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
26425
26429
|
error:
|
|
26426
26430
|
| {
|
|
26427
26431
|
type: 'uncategorized_error'
|
|
@@ -28364,16 +28368,16 @@ export interface Routes {
|
|
|
28364
28368
|
status: 'pending'
|
|
28365
28369
|
result: null
|
|
28366
28370
|
error: null
|
|
28367
|
-
action_type: '
|
|
28371
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
28368
28372
|
}
|
|
28369
28373
|
| {
|
|
28370
28374
|
/** The ID of the action attempt. */
|
|
28371
28375
|
action_attempt_id: string
|
|
28372
28376
|
status: 'success'
|
|
28373
28377
|
error: null
|
|
28374
|
-
action_type: '
|
|
28378
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
28375
28379
|
result: {
|
|
28376
|
-
/** Snapshot of
|
|
28380
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
28377
28381
|
acs_credential_on_encoder: {
|
|
28378
28382
|
/** Date and time the credential was created. */
|
|
28379
28383
|
created_at: string | null
|
|
@@ -28562,7 +28566,7 @@ export interface Routes {
|
|
|
28562
28566
|
action_attempt_id: string
|
|
28563
28567
|
status: 'error'
|
|
28564
28568
|
result: null
|
|
28565
|
-
action_type: '
|
|
28569
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
28566
28570
|
error:
|
|
28567
28571
|
| {
|
|
28568
28572
|
type: 'uncategorized_error'
|
|
@@ -28583,14 +28587,14 @@ export interface Routes {
|
|
|
28583
28587
|
status: 'pending'
|
|
28584
28588
|
result: null
|
|
28585
28589
|
error: null
|
|
28586
|
-
action_type: '
|
|
28590
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
28587
28591
|
}
|
|
28588
28592
|
| {
|
|
28589
28593
|
/** The ID of the action attempt. */
|
|
28590
28594
|
action_attempt_id: string
|
|
28591
28595
|
status: 'success'
|
|
28592
28596
|
error: null
|
|
28593
|
-
action_type: '
|
|
28597
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
28594
28598
|
/** Means by which a user gains access at an entrance.
|
|
28595
28599
|
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. */
|
|
28596
28600
|
result:
|
|
@@ -28744,7 +28748,7 @@ export interface Routes {
|
|
|
28744
28748
|
action_attempt_id: string
|
|
28745
28749
|
status: 'error'
|
|
28746
28750
|
result: null
|
|
28747
|
-
action_type: '
|
|
28751
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
28748
28752
|
error:
|
|
28749
28753
|
| {
|
|
28750
28754
|
type: 'uncategorized_error'
|
|
@@ -29346,16 +29350,16 @@ export interface Routes {
|
|
|
29346
29350
|
status: 'pending'
|
|
29347
29351
|
result: null
|
|
29348
29352
|
error: null
|
|
29349
|
-
action_type: '
|
|
29353
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
29350
29354
|
}
|
|
29351
29355
|
| {
|
|
29352
29356
|
/** The ID of the action attempt. */
|
|
29353
29357
|
action_attempt_id: string
|
|
29354
29358
|
status: 'success'
|
|
29355
29359
|
error: null
|
|
29356
|
-
action_type: '
|
|
29360
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
29357
29361
|
result: {
|
|
29358
|
-
/** Snapshot of
|
|
29362
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
29359
29363
|
acs_credential_on_encoder: {
|
|
29360
29364
|
/** Date and time the credential was created. */
|
|
29361
29365
|
created_at: string | null
|
|
@@ -29544,7 +29548,7 @@ export interface Routes {
|
|
|
29544
29548
|
action_attempt_id: string
|
|
29545
29549
|
status: 'error'
|
|
29546
29550
|
result: null
|
|
29547
|
-
action_type: '
|
|
29551
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
29548
29552
|
error:
|
|
29549
29553
|
| {
|
|
29550
29554
|
type: 'uncategorized_error'
|
|
@@ -29565,14 +29569,14 @@ export interface Routes {
|
|
|
29565
29569
|
status: 'pending'
|
|
29566
29570
|
result: null
|
|
29567
29571
|
error: null
|
|
29568
|
-
action_type: '
|
|
29572
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
29569
29573
|
}
|
|
29570
29574
|
| {
|
|
29571
29575
|
/** The ID of the action attempt. */
|
|
29572
29576
|
action_attempt_id: string
|
|
29573
29577
|
status: 'success'
|
|
29574
29578
|
error: null
|
|
29575
|
-
action_type: '
|
|
29579
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
29576
29580
|
/** Means by which a user gains access at an entrance.
|
|
29577
29581
|
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. */
|
|
29578
29582
|
result:
|
|
@@ -29726,7 +29730,7 @@ export interface Routes {
|
|
|
29726
29730
|
action_attempt_id: string
|
|
29727
29731
|
status: 'error'
|
|
29728
29732
|
result: null
|
|
29729
|
-
action_type: '
|
|
29733
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
29730
29734
|
error:
|
|
29731
29735
|
| {
|
|
29732
29736
|
type: 'uncategorized_error'
|
|
@@ -32170,16 +32174,16 @@ export interface Routes {
|
|
|
32170
32174
|
status: 'pending'
|
|
32171
32175
|
result: null
|
|
32172
32176
|
error: null
|
|
32173
|
-
action_type: '
|
|
32177
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
32174
32178
|
}
|
|
32175
32179
|
| {
|
|
32176
32180
|
/** The ID of the action attempt. */
|
|
32177
32181
|
action_attempt_id: string
|
|
32178
32182
|
status: 'success'
|
|
32179
32183
|
error: null
|
|
32180
|
-
action_type: '
|
|
32184
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
32181
32185
|
result: {
|
|
32182
|
-
/** Snapshot of
|
|
32186
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
32183
32187
|
acs_credential_on_encoder: {
|
|
32184
32188
|
/** Date and time the credential was created. */
|
|
32185
32189
|
created_at: string | null
|
|
@@ -32368,7 +32372,7 @@ export interface Routes {
|
|
|
32368
32372
|
action_attempt_id: string
|
|
32369
32373
|
status: 'error'
|
|
32370
32374
|
result: null
|
|
32371
|
-
action_type: '
|
|
32375
|
+
action_type: 'SCAN_CREDENTIAL'
|
|
32372
32376
|
error:
|
|
32373
32377
|
| {
|
|
32374
32378
|
type: 'uncategorized_error'
|
|
@@ -32389,14 +32393,14 @@ export interface Routes {
|
|
|
32389
32393
|
status: 'pending'
|
|
32390
32394
|
result: null
|
|
32391
32395
|
error: null
|
|
32392
|
-
action_type: '
|
|
32396
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
32393
32397
|
}
|
|
32394
32398
|
| {
|
|
32395
32399
|
/** The ID of the action attempt. */
|
|
32396
32400
|
action_attempt_id: string
|
|
32397
32401
|
status: 'success'
|
|
32398
32402
|
error: null
|
|
32399
|
-
action_type: '
|
|
32403
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
32400
32404
|
/** Means by which a user gains access at an entrance.
|
|
32401
32405
|
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. */
|
|
32402
32406
|
result:
|
|
@@ -32550,7 +32554,7 @@ export interface Routes {
|
|
|
32550
32554
|
action_attempt_id: string
|
|
32551
32555
|
status: 'error'
|
|
32552
32556
|
result: null
|
|
32553
|
-
action_type: '
|
|
32557
|
+
action_type: 'ENCODE_CREDENTIAL'
|
|
32554
32558
|
error:
|
|
32555
32559
|
| {
|
|
32556
32560
|
type: 'uncategorized_error'
|