@seamapi/types 1.287.3 → 1.288.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.
Files changed (32) hide show
  1. package/dist/connect.cjs +56 -60
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +206 -189
  4. package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
  5. package/lib/seam/connect/models/acs/acs-system.js +1 -1
  6. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  7. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +18 -18
  8. package/lib/seam/connect/models/action-attempts/action-attempt.js +4 -4
  9. package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
  10. package/lib/seam/connect/models/action-attempts/{encode-credential.d.ts → encode-card.d.ts} +11 -11
  11. package/lib/seam/connect/models/action-attempts/{encode-credential.js → encode-card.js} +6 -6
  12. package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -0
  13. package/lib/seam/connect/models/action-attempts/{scan-credential.d.ts → scan-card.d.ts} +11 -11
  14. package/lib/seam/connect/models/action-attempts/{scan-credential.js → scan-card.js} +7 -7
  15. package/lib/seam/connect/models/action-attempts/scan-card.js.map +1 -0
  16. package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
  17. package/lib/seam/connect/models/devices/device-provider.js +1 -1
  18. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  19. package/lib/seam/connect/openapi.d.ts +21 -6
  20. package/lib/seam/connect/openapi.js +41 -45
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +160 -158
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/models/acs/acs-system.ts +1 -1
  25. package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +4 -4
  26. package/src/lib/seam/connect/models/action-attempts/{encode-credential.ts → encode-card.ts} +6 -8
  27. package/src/lib/seam/connect/models/action-attempts/{scan-credential.ts → scan-card.ts} +7 -9
  28. package/src/lib/seam/connect/models/devices/device-provider.ts +1 -1
  29. package/src/lib/seam/connect/openapi.ts +42 -50
  30. package/src/lib/seam/connect/route-types.ts +162 -158
  31. package/lib/seam/connect/models/action-attempts/encode-credential.js.map +0 -1
  32. package/lib/seam/connect/models/action-attempts/scan-credential.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: 'SCAN_CREDENTIAL'
89
+ action_type: 'SCAN_CARD'
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: 'SCAN_CREDENTIAL'
96
+ action_type: 'SCAN_CARD'
97
97
  result: {
98
- /** Snapshot of credential data read from physical encoder. */
98
+ /** Snapshot of the card data read from the 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: 'SCAN_CREDENTIAL'
287
+ action_type: 'SCAN_CARD'
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: 'ENCODE_CREDENTIAL'
308
+ action_type: 'ENCODE_CARD'
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: 'ENCODE_CREDENTIAL'
315
+ action_type: 'ENCODE_CARD'
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: 'ENCODE_CREDENTIAL'
469
+ action_type: 'ENCODE_CARD'
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: 'SCAN_CREDENTIAL'
1106
+ action_type: 'SCAN_CARD'
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: 'SCAN_CREDENTIAL'
1113
+ action_type: 'SCAN_CARD'
1114
1114
  result: {
1115
- /** Snapshot of credential data read from physical encoder. */
1115
+ /** Snapshot of the card data read from the 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: 'SCAN_CREDENTIAL'
1304
+ action_type: 'SCAN_CARD'
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: 'ENCODE_CREDENTIAL'
1325
+ action_type: 'ENCODE_CARD'
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: 'ENCODE_CREDENTIAL'
1332
+ action_type: 'ENCODE_CARD'
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: 'ENCODE_CREDENTIAL'
1486
+ action_type: 'ENCODE_CARD'
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: 'SCAN_CREDENTIAL'
2288
+ action_type: 'SCAN_CARD'
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: 'SCAN_CREDENTIAL'
2295
+ action_type: 'SCAN_CARD'
2296
2296
  result: {
2297
- /** Snapshot of credential data read from physical encoder. */
2297
+ /** Snapshot of the card data read from the 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: 'SCAN_CREDENTIAL'
2486
+ action_type: 'SCAN_CARD'
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: 'ENCODE_CREDENTIAL'
2507
+ action_type: 'ENCODE_CARD'
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: 'ENCODE_CREDENTIAL'
2514
+ action_type: 'ENCODE_CARD'
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: 'ENCODE_CREDENTIAL'
2668
+ action_type: 'ENCODE_CARD'
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: 'SCAN_CREDENTIAL'
3292
+ action_type: 'SCAN_CARD'
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: 'SCAN_CREDENTIAL'
3299
+ action_type: 'SCAN_CARD'
3300
3300
  result: {
3301
- /** Snapshot of credential data read from physical encoder. */
3301
+ /** Snapshot of the card data read from the 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: 'SCAN_CREDENTIAL'
3490
+ action_type: 'SCAN_CARD'
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: 'ENCODE_CREDENTIAL'
3511
+ action_type: 'ENCODE_CARD'
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: 'ENCODE_CREDENTIAL'
3518
+ action_type: 'ENCODE_CARD'
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: 'ENCODE_CREDENTIAL'
3672
+ action_type: 'ENCODE_CARD'
3673
3673
  error:
3674
3674
  | {
3675
3675
  type: 'uncategorized_error'
@@ -4673,6 +4673,14 @@ export interface Routes {
4673
4673
  joiner_acs_credential_ids?: string[] | undefined
4674
4674
  }
4675
4675
  | undefined
4676
+ /** Vostio-specific metadata for the new credential. */
4677
+ assa_abloy_vostio_metadata?:
4678
+ | {
4679
+ override_all_guest_acs_entrances?: boolean | undefined
4680
+ join_all_guest_acs_entrances?: boolean | undefined
4681
+ override_guest_acs_entrance_ids?: string[] | undefined
4682
+ }
4683
+ | undefined
4676
4684
  /** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
4677
4685
  starts_at?: string | undefined
4678
4686
  /** Date and time at which the validity of the new credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
@@ -5384,15 +5392,13 @@ export interface Routes {
5384
5392
  }
5385
5393
  }
5386
5394
  }
5387
- '/acs/encoders/encode_credential': {
5388
- route: '/acs/encoders/encode_credential'
5395
+ '/acs/encoders/encode_card': {
5396
+ route: '/acs/encoders/encode_card'
5389
5397
  method: 'POST'
5390
5398
  queryParams: {}
5391
5399
  jsonBody: {}
5392
5400
  commonParams: {
5393
- /** ID of the encoder to use for the encoding. */
5394
5401
  device_id: string
5395
- /** ID of the acs_credential to encode on a physical card. */
5396
5402
  acs_credential_id: string
5397
5403
  }
5398
5404
  formData: {}
@@ -5458,16 +5464,16 @@ export interface Routes {
5458
5464
  status: 'pending'
5459
5465
  result: null
5460
5466
  error: null
5461
- action_type: 'SCAN_CREDENTIAL'
5467
+ action_type: 'SCAN_CARD'
5462
5468
  }
5463
5469
  | {
5464
5470
  /** The ID of the action attempt. */
5465
5471
  action_attempt_id: string
5466
5472
  status: 'success'
5467
5473
  error: null
5468
- action_type: 'SCAN_CREDENTIAL'
5474
+ action_type: 'SCAN_CARD'
5469
5475
  result: {
5470
- /** Snapshot of credential data read from physical encoder. */
5476
+ /** Snapshot of the card data read from the physical encoder. */
5471
5477
  acs_credential_on_encoder: {
5472
5478
  /** Date and time the credential was created. */
5473
5479
  created_at: string | null
@@ -5656,7 +5662,7 @@ export interface Routes {
5656
5662
  action_attempt_id: string
5657
5663
  status: 'error'
5658
5664
  result: null
5659
- action_type: 'SCAN_CREDENTIAL'
5665
+ action_type: 'SCAN_CARD'
5660
5666
  error:
5661
5667
  | {
5662
5668
  type: 'uncategorized_error'
@@ -5677,14 +5683,14 @@ export interface Routes {
5677
5683
  status: 'pending'
5678
5684
  result: null
5679
5685
  error: null
5680
- action_type: 'ENCODE_CREDENTIAL'
5686
+ action_type: 'ENCODE_CARD'
5681
5687
  }
5682
5688
  | {
5683
5689
  /** The ID of the action attempt. */
5684
5690
  action_attempt_id: string
5685
5691
  status: 'success'
5686
5692
  error: null
5687
- action_type: 'ENCODE_CREDENTIAL'
5693
+ action_type: 'ENCODE_CARD'
5688
5694
  /** Means by which a user gains access at an entrance.
5689
5695
  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. */
5690
5696
  result:
@@ -5838,7 +5844,7 @@ export interface Routes {
5838
5844
  action_attempt_id: string
5839
5845
  status: 'error'
5840
5846
  result: null
5841
- action_type: 'ENCODE_CREDENTIAL'
5847
+ action_type: 'ENCODE_CARD'
5842
5848
  error:
5843
5849
  | {
5844
5850
  type: 'uncategorized_error'
@@ -6914,15 +6920,13 @@ export interface Routes {
6914
6920
  }>
6915
6921
  }
6916
6922
  }
6917
- '/acs/encoders/scan_credential': {
6918
- route: '/acs/encoders/scan_credential'
6923
+ '/acs/encoders/scan_card': {
6924
+ route: '/acs/encoders/scan_card'
6919
6925
  method: 'POST'
6920
6926
  queryParams: {}
6921
6927
  jsonBody: {}
6922
6928
  commonParams: {
6923
- /** ID of the acs_system the encoder belongs to. */
6924
6929
  acs_system_id: string
6925
- /** ID of the encoder to use for the scan. */
6926
6930
  device_id: string
6927
6931
  }
6928
6932
  formData: {}
@@ -6988,16 +6992,16 @@ export interface Routes {
6988
6992
  status: 'pending'
6989
6993
  result: null
6990
6994
  error: null
6991
- action_type: 'SCAN_CREDENTIAL'
6995
+ action_type: 'SCAN_CARD'
6992
6996
  }
6993
6997
  | {
6994
6998
  /** The ID of the action attempt. */
6995
6999
  action_attempt_id: string
6996
7000
  status: 'success'
6997
7001
  error: null
6998
- action_type: 'SCAN_CREDENTIAL'
7002
+ action_type: 'SCAN_CARD'
6999
7003
  result: {
7000
- /** Snapshot of credential data read from physical encoder. */
7004
+ /** Snapshot of the card data read from the physical encoder. */
7001
7005
  acs_credential_on_encoder: {
7002
7006
  /** Date and time the credential was created. */
7003
7007
  created_at: string | null
@@ -7186,7 +7190,7 @@ export interface Routes {
7186
7190
  action_attempt_id: string
7187
7191
  status: 'error'
7188
7192
  result: null
7189
- action_type: 'SCAN_CREDENTIAL'
7193
+ action_type: 'SCAN_CARD'
7190
7194
  error:
7191
7195
  | {
7192
7196
  type: 'uncategorized_error'
@@ -7207,14 +7211,14 @@ export interface Routes {
7207
7211
  status: 'pending'
7208
7212
  result: null
7209
7213
  error: null
7210
- action_type: 'ENCODE_CREDENTIAL'
7214
+ action_type: 'ENCODE_CARD'
7211
7215
  }
7212
7216
  | {
7213
7217
  /** The ID of the action attempt. */
7214
7218
  action_attempt_id: string
7215
7219
  status: 'success'
7216
7220
  error: null
7217
- action_type: 'ENCODE_CREDENTIAL'
7221
+ action_type: 'ENCODE_CARD'
7218
7222
  /** Means by which a user gains access at an entrance.
7219
7223
  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. */
7220
7224
  result:
@@ -7368,7 +7372,7 @@ export interface Routes {
7368
7372
  action_attempt_id: string
7369
7373
  status: 'error'
7370
7374
  result: null
7371
- action_type: 'ENCODE_CREDENTIAL'
7375
+ action_type: 'ENCODE_CARD'
7372
7376
  error:
7373
7377
  | {
7374
7378
  type: 'uncategorized_error'
@@ -8063,7 +8067,7 @@ export interface Routes {
8063
8067
  | 'dormakaba_community'
8064
8068
  | 'legic_connect'
8065
8069
  | 'assa_abloy_vostio'
8066
- | 'vostio_credential_service'
8070
+ | 'assa_abloy_vostio_credential_service'
8067
8071
  )
8068
8072
  | undefined
8069
8073
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
@@ -8095,7 +8099,7 @@ export interface Routes {
8095
8099
  | 'dormakaba_community'
8096
8100
  | 'legic_connect'
8097
8101
  | 'assa_abloy_vostio'
8098
- | 'vostio_credential_service'
8102
+ | 'assa_abloy_vostio_credential_service'
8099
8103
  )
8100
8104
  | undefined
8101
8105
  /**
@@ -8206,7 +8210,7 @@ export interface Routes {
8206
8210
  | 'dormakaba_community'
8207
8211
  | 'legic_connect'
8208
8212
  | 'assa_abloy_vostio'
8209
- | 'vostio_credential_service'
8213
+ | 'assa_abloy_vostio_credential_service'
8210
8214
  )
8211
8215
  | undefined
8212
8216
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
@@ -8238,7 +8242,7 @@ export interface Routes {
8238
8242
  | 'dormakaba_community'
8239
8243
  | 'legic_connect'
8240
8244
  | 'assa_abloy_vostio'
8241
- | 'vostio_credential_service'
8245
+ | 'assa_abloy_vostio_credential_service'
8242
8246
  )
8243
8247
  | undefined
8244
8248
  /**
@@ -8349,7 +8353,7 @@ export interface Routes {
8349
8353
  | 'dormakaba_community'
8350
8354
  | 'legic_connect'
8351
8355
  | 'assa_abloy_vostio'
8352
- | 'vostio_credential_service'
8356
+ | 'assa_abloy_vostio_credential_service'
8353
8357
  )
8354
8358
  | undefined
8355
8359
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
@@ -8381,7 +8385,7 @@ export interface Routes {
8381
8385
  | 'dormakaba_community'
8382
8386
  | 'legic_connect'
8383
8387
  | 'assa_abloy_vostio'
8384
- | 'vostio_credential_service'
8388
+ | 'assa_abloy_vostio_credential_service'
8385
8389
  )
8386
8390
  | undefined
8387
8391
  /**
@@ -9365,16 +9369,16 @@ export interface Routes {
9365
9369
  status: 'pending'
9366
9370
  result: null
9367
9371
  error: null
9368
- action_type: 'SCAN_CREDENTIAL'
9372
+ action_type: 'SCAN_CARD'
9369
9373
  }
9370
9374
  | {
9371
9375
  /** The ID of the action attempt. */
9372
9376
  action_attempt_id: string
9373
9377
  status: 'success'
9374
9378
  error: null
9375
- action_type: 'SCAN_CREDENTIAL'
9379
+ action_type: 'SCAN_CARD'
9376
9380
  result: {
9377
- /** Snapshot of credential data read from physical encoder. */
9381
+ /** Snapshot of the card data read from the physical encoder. */
9378
9382
  acs_credential_on_encoder: {
9379
9383
  /** Date and time the credential was created. */
9380
9384
  created_at: string | null
@@ -9563,7 +9567,7 @@ export interface Routes {
9563
9567
  action_attempt_id: string
9564
9568
  status: 'error'
9565
9569
  result: null
9566
- action_type: 'SCAN_CREDENTIAL'
9570
+ action_type: 'SCAN_CARD'
9567
9571
  error:
9568
9572
  | {
9569
9573
  type: 'uncategorized_error'
@@ -9584,14 +9588,14 @@ export interface Routes {
9584
9588
  status: 'pending'
9585
9589
  result: null
9586
9590
  error: null
9587
- action_type: 'ENCODE_CREDENTIAL'
9591
+ action_type: 'ENCODE_CARD'
9588
9592
  }
9589
9593
  | {
9590
9594
  /** The ID of the action attempt. */
9591
9595
  action_attempt_id: string
9592
9596
  status: 'success'
9593
9597
  error: null
9594
- action_type: 'ENCODE_CREDENTIAL'
9598
+ action_type: 'ENCODE_CARD'
9595
9599
  /** Means by which a user gains access at an entrance.
9596
9600
  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. */
9597
9601
  result:
@@ -9745,7 +9749,7 @@ export interface Routes {
9745
9749
  action_attempt_id: string
9746
9750
  status: 'error'
9747
9751
  result: null
9748
- action_type: 'ENCODE_CREDENTIAL'
9752
+ action_type: 'ENCODE_CARD'
9749
9753
  error:
9750
9754
  | {
9751
9755
  type: 'uncategorized_error'
@@ -10223,16 +10227,16 @@ export interface Routes {
10223
10227
  status: 'pending'
10224
10228
  result: null
10225
10229
  error: null
10226
- action_type: 'SCAN_CREDENTIAL'
10230
+ action_type: 'SCAN_CARD'
10227
10231
  }
10228
10232
  | {
10229
10233
  /** The ID of the action attempt. */
10230
10234
  action_attempt_id: string
10231
10235
  status: 'success'
10232
10236
  error: null
10233
- action_type: 'SCAN_CREDENTIAL'
10237
+ action_type: 'SCAN_CARD'
10234
10238
  result: {
10235
- /** Snapshot of credential data read from physical encoder. */
10239
+ /** Snapshot of the card data read from the physical encoder. */
10236
10240
  acs_credential_on_encoder: {
10237
10241
  /** Date and time the credential was created. */
10238
10242
  created_at: string | null
@@ -10421,7 +10425,7 @@ export interface Routes {
10421
10425
  action_attempt_id: string
10422
10426
  status: 'error'
10423
10427
  result: null
10424
- action_type: 'SCAN_CREDENTIAL'
10428
+ action_type: 'SCAN_CARD'
10425
10429
  error:
10426
10430
  | {
10427
10431
  type: 'uncategorized_error'
@@ -10442,14 +10446,14 @@ export interface Routes {
10442
10446
  status: 'pending'
10443
10447
  result: null
10444
10448
  error: null
10445
- action_type: 'ENCODE_CREDENTIAL'
10449
+ action_type: 'ENCODE_CARD'
10446
10450
  }
10447
10451
  | {
10448
10452
  /** The ID of the action attempt. */
10449
10453
  action_attempt_id: string
10450
10454
  status: 'success'
10451
10455
  error: null
10452
- action_type: 'ENCODE_CREDENTIAL'
10456
+ action_type: 'ENCODE_CARD'
10453
10457
  /** Means by which a user gains access at an entrance.
10454
10458
  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. */
10455
10459
  result:
@@ -10603,7 +10607,7 @@ export interface Routes {
10603
10607
  action_attempt_id: string
10604
10608
  status: 'error'
10605
10609
  result: null
10606
- action_type: 'ENCODE_CREDENTIAL'
10610
+ action_type: 'ENCODE_CARD'
10607
10611
  error:
10608
10612
  | {
10609
10613
  type: 'uncategorized_error'
@@ -11216,7 +11220,7 @@ export interface Routes {
11216
11220
  | 'latch'
11217
11221
  | 'akiles'
11218
11222
  | 'assa_abloy_vostio'
11219
- | 'vostio_credential_service'
11223
+ | 'assa_abloy_vostio_credential_service'
11220
11224
  | 'yale_access'
11221
11225
  | 'hid_cm'
11222
11226
  | 'google_nest'
@@ -13038,7 +13042,7 @@ export interface Routes {
13038
13042
  | 'latch'
13039
13043
  | 'akiles'
13040
13044
  | 'assa_abloy_vostio'
13041
- | 'vostio_credential_service'
13045
+ | 'assa_abloy_vostio_credential_service'
13042
13046
  display_name: string
13043
13047
  image_url: string
13044
13048
  provider_categories: Array<
@@ -16686,16 +16690,16 @@ export interface Routes {
16686
16690
  status: 'pending'
16687
16691
  result: null
16688
16692
  error: null
16689
- action_type: 'SCAN_CREDENTIAL'
16693
+ action_type: 'SCAN_CARD'
16690
16694
  }
16691
16695
  | {
16692
16696
  /** The ID of the action attempt. */
16693
16697
  action_attempt_id: string
16694
16698
  status: 'success'
16695
16699
  error: null
16696
- action_type: 'SCAN_CREDENTIAL'
16700
+ action_type: 'SCAN_CARD'
16697
16701
  result: {
16698
- /** Snapshot of credential data read from physical encoder. */
16702
+ /** Snapshot of the card data read from the physical encoder. */
16699
16703
  acs_credential_on_encoder: {
16700
16704
  /** Date and time the credential was created. */
16701
16705
  created_at: string | null
@@ -16884,7 +16888,7 @@ export interface Routes {
16884
16888
  action_attempt_id: string
16885
16889
  status: 'error'
16886
16890
  result: null
16887
- action_type: 'SCAN_CREDENTIAL'
16891
+ action_type: 'SCAN_CARD'
16888
16892
  error:
16889
16893
  | {
16890
16894
  type: 'uncategorized_error'
@@ -16905,14 +16909,14 @@ export interface Routes {
16905
16909
  status: 'pending'
16906
16910
  result: null
16907
16911
  error: null
16908
- action_type: 'ENCODE_CREDENTIAL'
16912
+ action_type: 'ENCODE_CARD'
16909
16913
  }
16910
16914
  | {
16911
16915
  /** The ID of the action attempt. */
16912
16916
  action_attempt_id: string
16913
16917
  status: 'success'
16914
16918
  error: null
16915
- action_type: 'ENCODE_CREDENTIAL'
16919
+ action_type: 'ENCODE_CARD'
16916
16920
  /** Means by which a user gains access at an entrance.
16917
16921
  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. */
16918
16922
  result:
@@ -17066,7 +17070,7 @@ export interface Routes {
17066
17070
  action_attempt_id: string
17067
17071
  status: 'error'
17068
17072
  result: null
17069
- action_type: 'ENCODE_CREDENTIAL'
17073
+ action_type: 'ENCODE_CARD'
17070
17074
  error:
17071
17075
  | {
17072
17076
  type: 'uncategorized_error'
@@ -17545,16 +17549,16 @@ export interface Routes {
17545
17549
  status: 'pending'
17546
17550
  result: null
17547
17551
  error: null
17548
- action_type: 'SCAN_CREDENTIAL'
17552
+ action_type: 'SCAN_CARD'
17549
17553
  }
17550
17554
  | {
17551
17555
  /** The ID of the action attempt. */
17552
17556
  action_attempt_id: string
17553
17557
  status: 'success'
17554
17558
  error: null
17555
- action_type: 'SCAN_CREDENTIAL'
17559
+ action_type: 'SCAN_CARD'
17556
17560
  result: {
17557
- /** Snapshot of credential data read from physical encoder. */
17561
+ /** Snapshot of the card data read from the physical encoder. */
17558
17562
  acs_credential_on_encoder: {
17559
17563
  /** Date and time the credential was created. */
17560
17564
  created_at: string | null
@@ -17743,7 +17747,7 @@ export interface Routes {
17743
17747
  action_attempt_id: string
17744
17748
  status: 'error'
17745
17749
  result: null
17746
- action_type: 'SCAN_CREDENTIAL'
17750
+ action_type: 'SCAN_CARD'
17747
17751
  error:
17748
17752
  | {
17749
17753
  type: 'uncategorized_error'
@@ -17764,14 +17768,14 @@ export interface Routes {
17764
17768
  status: 'pending'
17765
17769
  result: null
17766
17770
  error: null
17767
- action_type: 'ENCODE_CREDENTIAL'
17771
+ action_type: 'ENCODE_CARD'
17768
17772
  }
17769
17773
  | {
17770
17774
  /** The ID of the action attempt. */
17771
17775
  action_attempt_id: string
17772
17776
  status: 'success'
17773
17777
  error: null
17774
- action_type: 'ENCODE_CREDENTIAL'
17778
+ action_type: 'ENCODE_CARD'
17775
17779
  /** Means by which a user gains access at an entrance.
17776
17780
  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. */
17777
17781
  result:
@@ -17925,7 +17929,7 @@ export interface Routes {
17925
17929
  action_attempt_id: string
17926
17930
  status: 'error'
17927
17931
  result: null
17928
- action_type: 'ENCODE_CREDENTIAL'
17932
+ action_type: 'ENCODE_CARD'
17929
17933
  error:
17930
17934
  | {
17931
17935
  type: 'uncategorized_error'
@@ -19906,16 +19910,16 @@ export interface Routes {
19906
19910
  status: 'pending'
19907
19911
  result: null
19908
19912
  error: null
19909
- action_type: 'SCAN_CREDENTIAL'
19913
+ action_type: 'SCAN_CARD'
19910
19914
  }
19911
19915
  | {
19912
19916
  /** The ID of the action attempt. */
19913
19917
  action_attempt_id: string
19914
19918
  status: 'success'
19915
19919
  error: null
19916
- action_type: 'SCAN_CREDENTIAL'
19920
+ action_type: 'SCAN_CARD'
19917
19921
  result: {
19918
- /** Snapshot of credential data read from physical encoder. */
19922
+ /** Snapshot of the card data read from the physical encoder. */
19919
19923
  acs_credential_on_encoder: {
19920
19924
  /** Date and time the credential was created. */
19921
19925
  created_at: string | null
@@ -20104,7 +20108,7 @@ export interface Routes {
20104
20108
  action_attempt_id: string
20105
20109
  status: 'error'
20106
20110
  result: null
20107
- action_type: 'SCAN_CREDENTIAL'
20111
+ action_type: 'SCAN_CARD'
20108
20112
  error:
20109
20113
  | {
20110
20114
  type: 'uncategorized_error'
@@ -20125,14 +20129,14 @@ export interface Routes {
20125
20129
  status: 'pending'
20126
20130
  result: null
20127
20131
  error: null
20128
- action_type: 'ENCODE_CREDENTIAL'
20132
+ action_type: 'ENCODE_CARD'
20129
20133
  }
20130
20134
  | {
20131
20135
  /** The ID of the action attempt. */
20132
20136
  action_attempt_id: string
20133
20137
  status: 'success'
20134
20138
  error: null
20135
- action_type: 'ENCODE_CREDENTIAL'
20139
+ action_type: 'ENCODE_CARD'
20136
20140
  /** Means by which a user gains access at an entrance.
20137
20141
  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. */
20138
20142
  result:
@@ -20286,7 +20290,7 @@ export interface Routes {
20286
20290
  action_attempt_id: string
20287
20291
  status: 'error'
20288
20292
  result: null
20289
- action_type: 'ENCODE_CREDENTIAL'
20293
+ action_type: 'ENCODE_CARD'
20290
20294
  error:
20291
20295
  | {
20292
20296
  type: 'uncategorized_error'
@@ -20775,16 +20779,16 @@ export interface Routes {
20775
20779
  status: 'pending'
20776
20780
  result: null
20777
20781
  error: null
20778
- action_type: 'SCAN_CREDENTIAL'
20782
+ action_type: 'SCAN_CARD'
20779
20783
  }
20780
20784
  | {
20781
20785
  /** The ID of the action attempt. */
20782
20786
  action_attempt_id: string
20783
20787
  status: 'success'
20784
20788
  error: null
20785
- action_type: 'SCAN_CREDENTIAL'
20789
+ action_type: 'SCAN_CARD'
20786
20790
  result: {
20787
- /** Snapshot of credential data read from physical encoder. */
20791
+ /** Snapshot of the card data read from the physical encoder. */
20788
20792
  acs_credential_on_encoder: {
20789
20793
  /** Date and time the credential was created. */
20790
20794
  created_at: string | null
@@ -20973,7 +20977,7 @@ export interface Routes {
20973
20977
  action_attempt_id: string
20974
20978
  status: 'error'
20975
20979
  result: null
20976
- action_type: 'SCAN_CREDENTIAL'
20980
+ action_type: 'SCAN_CARD'
20977
20981
  error:
20978
20982
  | {
20979
20983
  type: 'uncategorized_error'
@@ -20994,14 +20998,14 @@ export interface Routes {
20994
20998
  status: 'pending'
20995
20999
  result: null
20996
21000
  error: null
20997
- action_type: 'ENCODE_CREDENTIAL'
21001
+ action_type: 'ENCODE_CARD'
20998
21002
  }
20999
21003
  | {
21000
21004
  /** The ID of the action attempt. */
21001
21005
  action_attempt_id: string
21002
21006
  status: 'success'
21003
21007
  error: null
21004
- action_type: 'ENCODE_CREDENTIAL'
21008
+ action_type: 'ENCODE_CARD'
21005
21009
  /** Means by which a user gains access at an entrance.
21006
21010
  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. */
21007
21011
  result:
@@ -21155,7 +21159,7 @@ export interface Routes {
21155
21159
  action_attempt_id: string
21156
21160
  status: 'error'
21157
21161
  result: null
21158
- action_type: 'ENCODE_CREDENTIAL'
21162
+ action_type: 'ENCODE_CARD'
21159
21163
  error:
21160
21164
  | {
21161
21165
  type: 'uncategorized_error'
@@ -21683,16 +21687,16 @@ export interface Routes {
21683
21687
  status: 'pending'
21684
21688
  result: null
21685
21689
  error: null
21686
- action_type: 'SCAN_CREDENTIAL'
21690
+ action_type: 'SCAN_CARD'
21687
21691
  }
21688
21692
  | {
21689
21693
  /** The ID of the action attempt. */
21690
21694
  action_attempt_id: string
21691
21695
  status: 'success'
21692
21696
  error: null
21693
- action_type: 'SCAN_CREDENTIAL'
21697
+ action_type: 'SCAN_CARD'
21694
21698
  result: {
21695
- /** Snapshot of credential data read from physical encoder. */
21699
+ /** Snapshot of the card data read from the physical encoder. */
21696
21700
  acs_credential_on_encoder: {
21697
21701
  /** Date and time the credential was created. */
21698
21702
  created_at: string | null
@@ -21881,7 +21885,7 @@ export interface Routes {
21881
21885
  action_attempt_id: string
21882
21886
  status: 'error'
21883
21887
  result: null
21884
- action_type: 'SCAN_CREDENTIAL'
21888
+ action_type: 'SCAN_CARD'
21885
21889
  error:
21886
21890
  | {
21887
21891
  type: 'uncategorized_error'
@@ -21902,14 +21906,14 @@ export interface Routes {
21902
21906
  status: 'pending'
21903
21907
  result: null
21904
21908
  error: null
21905
- action_type: 'ENCODE_CREDENTIAL'
21909
+ action_type: 'ENCODE_CARD'
21906
21910
  }
21907
21911
  | {
21908
21912
  /** The ID of the action attempt. */
21909
21913
  action_attempt_id: string
21910
21914
  status: 'success'
21911
21915
  error: null
21912
- action_type: 'ENCODE_CREDENTIAL'
21916
+ action_type: 'ENCODE_CARD'
21913
21917
  /** Means by which a user gains access at an entrance.
21914
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. */
21915
21919
  result:
@@ -22063,7 +22067,7 @@ export interface Routes {
22063
22067
  action_attempt_id: string
22064
22068
  status: 'error'
22065
22069
  result: null
22066
- action_type: 'ENCODE_CREDENTIAL'
22070
+ action_type: 'ENCODE_CARD'
22067
22071
  error:
22068
22072
  | {
22069
22073
  type: 'uncategorized_error'
@@ -22748,16 +22752,16 @@ export interface Routes {
22748
22752
  status: 'pending'
22749
22753
  result: null
22750
22754
  error: null
22751
- action_type: 'SCAN_CREDENTIAL'
22755
+ action_type: 'SCAN_CARD'
22752
22756
  }
22753
22757
  | {
22754
22758
  /** The ID of the action attempt. */
22755
22759
  action_attempt_id: string
22756
22760
  status: 'success'
22757
22761
  error: null
22758
- action_type: 'SCAN_CREDENTIAL'
22762
+ action_type: 'SCAN_CARD'
22759
22763
  result: {
22760
- /** Snapshot of credential data read from physical encoder. */
22764
+ /** Snapshot of the card data read from the physical encoder. */
22761
22765
  acs_credential_on_encoder: {
22762
22766
  /** Date and time the credential was created. */
22763
22767
  created_at: string | null
@@ -22946,7 +22950,7 @@ export interface Routes {
22946
22950
  action_attempt_id: string
22947
22951
  status: 'error'
22948
22952
  result: null
22949
- action_type: 'SCAN_CREDENTIAL'
22953
+ action_type: 'SCAN_CARD'
22950
22954
  error:
22951
22955
  | {
22952
22956
  type: 'uncategorized_error'
@@ -22967,14 +22971,14 @@ export interface Routes {
22967
22971
  status: 'pending'
22968
22972
  result: null
22969
22973
  error: null
22970
- action_type: 'ENCODE_CREDENTIAL'
22974
+ action_type: 'ENCODE_CARD'
22971
22975
  }
22972
22976
  | {
22973
22977
  /** The ID of the action attempt. */
22974
22978
  action_attempt_id: string
22975
22979
  status: 'success'
22976
22980
  error: null
22977
- action_type: 'ENCODE_CREDENTIAL'
22981
+ action_type: 'ENCODE_CARD'
22978
22982
  /** Means by which a user gains access at an entrance.
22979
22983
  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. */
22980
22984
  result:
@@ -23128,7 +23132,7 @@ export interface Routes {
23128
23132
  action_attempt_id: string
23129
23133
  status: 'error'
23130
23134
  result: null
23131
- action_type: 'ENCODE_CREDENTIAL'
23135
+ action_type: 'ENCODE_CARD'
23132
23136
  error:
23133
23137
  | {
23134
23138
  type: 'uncategorized_error'
@@ -23609,16 +23613,16 @@ export interface Routes {
23609
23613
  status: 'pending'
23610
23614
  result: null
23611
23615
  error: null
23612
- action_type: 'SCAN_CREDENTIAL'
23616
+ action_type: 'SCAN_CARD'
23613
23617
  }
23614
23618
  | {
23615
23619
  /** The ID of the action attempt. */
23616
23620
  action_attempt_id: string
23617
23621
  status: 'success'
23618
23622
  error: null
23619
- action_type: 'SCAN_CREDENTIAL'
23623
+ action_type: 'SCAN_CARD'
23620
23624
  result: {
23621
- /** Snapshot of credential data read from physical encoder. */
23625
+ /** Snapshot of the card data read from the physical encoder. */
23622
23626
  acs_credential_on_encoder: {
23623
23627
  /** Date and time the credential was created. */
23624
23628
  created_at: string | null
@@ -23807,7 +23811,7 @@ export interface Routes {
23807
23811
  action_attempt_id: string
23808
23812
  status: 'error'
23809
23813
  result: null
23810
- action_type: 'SCAN_CREDENTIAL'
23814
+ action_type: 'SCAN_CARD'
23811
23815
  error:
23812
23816
  | {
23813
23817
  type: 'uncategorized_error'
@@ -23828,14 +23832,14 @@ export interface Routes {
23828
23832
  status: 'pending'
23829
23833
  result: null
23830
23834
  error: null
23831
- action_type: 'ENCODE_CREDENTIAL'
23835
+ action_type: 'ENCODE_CARD'
23832
23836
  }
23833
23837
  | {
23834
23838
  /** The ID of the action attempt. */
23835
23839
  action_attempt_id: string
23836
23840
  status: 'success'
23837
23841
  error: null
23838
- action_type: 'ENCODE_CREDENTIAL'
23842
+ action_type: 'ENCODE_CARD'
23839
23843
  /** Means by which a user gains access at an entrance.
23840
23844
  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. */
23841
23845
  result:
@@ -23989,7 +23993,7 @@ export interface Routes {
23989
23993
  action_attempt_id: string
23990
23994
  status: 'error'
23991
23995
  result: null
23992
- action_type: 'ENCODE_CREDENTIAL'
23996
+ action_type: 'ENCODE_CARD'
23993
23997
  error:
23994
23998
  | {
23995
23999
  type: 'uncategorized_error'
@@ -25161,16 +25165,16 @@ export interface Routes {
25161
25165
  status: 'pending'
25162
25166
  result: null
25163
25167
  error: null
25164
- action_type: 'SCAN_CREDENTIAL'
25168
+ action_type: 'SCAN_CARD'
25165
25169
  }
25166
25170
  | {
25167
25171
  /** The ID of the action attempt. */
25168
25172
  action_attempt_id: string
25169
25173
  status: 'success'
25170
25174
  error: null
25171
- action_type: 'SCAN_CREDENTIAL'
25175
+ action_type: 'SCAN_CARD'
25172
25176
  result: {
25173
- /** Snapshot of credential data read from physical encoder. */
25177
+ /** Snapshot of the card data read from the physical encoder. */
25174
25178
  acs_credential_on_encoder: {
25175
25179
  /** Date and time the credential was created. */
25176
25180
  created_at: string | null
@@ -25359,7 +25363,7 @@ export interface Routes {
25359
25363
  action_attempt_id: string
25360
25364
  status: 'error'
25361
25365
  result: null
25362
- action_type: 'SCAN_CREDENTIAL'
25366
+ action_type: 'SCAN_CARD'
25363
25367
  error:
25364
25368
  | {
25365
25369
  type: 'uncategorized_error'
@@ -25380,14 +25384,14 @@ export interface Routes {
25380
25384
  status: 'pending'
25381
25385
  result: null
25382
25386
  error: null
25383
- action_type: 'ENCODE_CREDENTIAL'
25387
+ action_type: 'ENCODE_CARD'
25384
25388
  }
25385
25389
  | {
25386
25390
  /** The ID of the action attempt. */
25387
25391
  action_attempt_id: string
25388
25392
  status: 'success'
25389
25393
  error: null
25390
- action_type: 'ENCODE_CREDENTIAL'
25394
+ action_type: 'ENCODE_CARD'
25391
25395
  /** Means by which a user gains access at an entrance.
25392
25396
  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. */
25393
25397
  result:
@@ -25541,7 +25545,7 @@ export interface Routes {
25541
25545
  action_attempt_id: string
25542
25546
  status: 'error'
25543
25547
  result: null
25544
- action_type: 'ENCODE_CREDENTIAL'
25548
+ action_type: 'ENCODE_CARD'
25545
25549
  error:
25546
25550
  | {
25547
25551
  type: 'uncategorized_error'
@@ -26024,16 +26028,16 @@ export interface Routes {
26024
26028
  status: 'pending'
26025
26029
  result: null
26026
26030
  error: null
26027
- action_type: 'SCAN_CREDENTIAL'
26031
+ action_type: 'SCAN_CARD'
26028
26032
  }
26029
26033
  | {
26030
26034
  /** The ID of the action attempt. */
26031
26035
  action_attempt_id: string
26032
26036
  status: 'success'
26033
26037
  error: null
26034
- action_type: 'SCAN_CREDENTIAL'
26038
+ action_type: 'SCAN_CARD'
26035
26039
  result: {
26036
- /** Snapshot of credential data read from physical encoder. */
26040
+ /** Snapshot of the card data read from the physical encoder. */
26037
26041
  acs_credential_on_encoder: {
26038
26042
  /** Date and time the credential was created. */
26039
26043
  created_at: string | null
@@ -26222,7 +26226,7 @@ export interface Routes {
26222
26226
  action_attempt_id: string
26223
26227
  status: 'error'
26224
26228
  result: null
26225
- action_type: 'SCAN_CREDENTIAL'
26229
+ action_type: 'SCAN_CARD'
26226
26230
  error:
26227
26231
  | {
26228
26232
  type: 'uncategorized_error'
@@ -26243,14 +26247,14 @@ export interface Routes {
26243
26247
  status: 'pending'
26244
26248
  result: null
26245
26249
  error: null
26246
- action_type: 'ENCODE_CREDENTIAL'
26250
+ action_type: 'ENCODE_CARD'
26247
26251
  }
26248
26252
  | {
26249
26253
  /** The ID of the action attempt. */
26250
26254
  action_attempt_id: string
26251
26255
  status: 'success'
26252
26256
  error: null
26253
- action_type: 'ENCODE_CREDENTIAL'
26257
+ action_type: 'ENCODE_CARD'
26254
26258
  /** Means by which a user gains access at an entrance.
26255
26259
  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. */
26256
26260
  result:
@@ -26404,7 +26408,7 @@ export interface Routes {
26404
26408
  action_attempt_id: string
26405
26409
  status: 'error'
26406
26410
  result: null
26407
- action_type: 'ENCODE_CREDENTIAL'
26411
+ action_type: 'ENCODE_CARD'
26408
26412
  error:
26409
26413
  | {
26410
26414
  type: 'uncategorized_error'
@@ -28346,16 +28350,16 @@ export interface Routes {
28346
28350
  status: 'pending'
28347
28351
  result: null
28348
28352
  error: null
28349
- action_type: 'SCAN_CREDENTIAL'
28353
+ action_type: 'SCAN_CARD'
28350
28354
  }
28351
28355
  | {
28352
28356
  /** The ID of the action attempt. */
28353
28357
  action_attempt_id: string
28354
28358
  status: 'success'
28355
28359
  error: null
28356
- action_type: 'SCAN_CREDENTIAL'
28360
+ action_type: 'SCAN_CARD'
28357
28361
  result: {
28358
- /** Snapshot of credential data read from physical encoder. */
28362
+ /** Snapshot of the card data read from the physical encoder. */
28359
28363
  acs_credential_on_encoder: {
28360
28364
  /** Date and time the credential was created. */
28361
28365
  created_at: string | null
@@ -28544,7 +28548,7 @@ export interface Routes {
28544
28548
  action_attempt_id: string
28545
28549
  status: 'error'
28546
28550
  result: null
28547
- action_type: 'SCAN_CREDENTIAL'
28551
+ action_type: 'SCAN_CARD'
28548
28552
  error:
28549
28553
  | {
28550
28554
  type: 'uncategorized_error'
@@ -28565,14 +28569,14 @@ export interface Routes {
28565
28569
  status: 'pending'
28566
28570
  result: null
28567
28571
  error: null
28568
- action_type: 'ENCODE_CREDENTIAL'
28572
+ action_type: 'ENCODE_CARD'
28569
28573
  }
28570
28574
  | {
28571
28575
  /** The ID of the action attempt. */
28572
28576
  action_attempt_id: string
28573
28577
  status: 'success'
28574
28578
  error: null
28575
- action_type: 'ENCODE_CREDENTIAL'
28579
+ action_type: 'ENCODE_CARD'
28576
28580
  /** Means by which a user gains access at an entrance.
28577
28581
  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. */
28578
28582
  result:
@@ -28726,7 +28730,7 @@ export interface Routes {
28726
28730
  action_attempt_id: string
28727
28731
  status: 'error'
28728
28732
  result: null
28729
- action_type: 'ENCODE_CREDENTIAL'
28733
+ action_type: 'ENCODE_CARD'
28730
28734
  error:
28731
28735
  | {
28732
28736
  type: 'uncategorized_error'
@@ -29326,16 +29330,16 @@ export interface Routes {
29326
29330
  status: 'pending'
29327
29331
  result: null
29328
29332
  error: null
29329
- action_type: 'SCAN_CREDENTIAL'
29333
+ action_type: 'SCAN_CARD'
29330
29334
  }
29331
29335
  | {
29332
29336
  /** The ID of the action attempt. */
29333
29337
  action_attempt_id: string
29334
29338
  status: 'success'
29335
29339
  error: null
29336
- action_type: 'SCAN_CREDENTIAL'
29340
+ action_type: 'SCAN_CARD'
29337
29341
  result: {
29338
- /** Snapshot of credential data read from physical encoder. */
29342
+ /** Snapshot of the card data read from the physical encoder. */
29339
29343
  acs_credential_on_encoder: {
29340
29344
  /** Date and time the credential was created. */
29341
29345
  created_at: string | null
@@ -29524,7 +29528,7 @@ export interface Routes {
29524
29528
  action_attempt_id: string
29525
29529
  status: 'error'
29526
29530
  result: null
29527
- action_type: 'SCAN_CREDENTIAL'
29531
+ action_type: 'SCAN_CARD'
29528
29532
  error:
29529
29533
  | {
29530
29534
  type: 'uncategorized_error'
@@ -29545,14 +29549,14 @@ export interface Routes {
29545
29549
  status: 'pending'
29546
29550
  result: null
29547
29551
  error: null
29548
- action_type: 'ENCODE_CREDENTIAL'
29552
+ action_type: 'ENCODE_CARD'
29549
29553
  }
29550
29554
  | {
29551
29555
  /** The ID of the action attempt. */
29552
29556
  action_attempt_id: string
29553
29557
  status: 'success'
29554
29558
  error: null
29555
- action_type: 'ENCODE_CREDENTIAL'
29559
+ action_type: 'ENCODE_CARD'
29556
29560
  /** Means by which a user gains access at an entrance.
29557
29561
  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. */
29558
29562
  result:
@@ -29706,7 +29710,7 @@ export interface Routes {
29706
29710
  action_attempt_id: string
29707
29711
  status: 'error'
29708
29712
  result: null
29709
- action_type: 'ENCODE_CREDENTIAL'
29713
+ action_type: 'ENCODE_CARD'
29710
29714
  error:
29711
29715
  | {
29712
29716
  type: 'uncategorized_error'
@@ -31664,7 +31668,7 @@ export interface Routes {
31664
31668
  | 'dormakaba_community'
31665
31669
  | 'legic_connect'
31666
31670
  | 'assa_abloy_vostio'
31667
- | 'vostio_credential_service'
31671
+ | 'assa_abloy_vostio_credential_service'
31668
31672
  )
31669
31673
  | undefined
31670
31674
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
@@ -31696,7 +31700,7 @@ export interface Routes {
31696
31700
  | 'dormakaba_community'
31697
31701
  | 'legic_connect'
31698
31702
  | 'assa_abloy_vostio'
31699
- | 'vostio_credential_service'
31703
+ | 'assa_abloy_vostio_credential_service'
31700
31704
  )
31701
31705
  | undefined
31702
31706
  /**
@@ -32150,16 +32154,16 @@ export interface Routes {
32150
32154
  status: 'pending'
32151
32155
  result: null
32152
32156
  error: null
32153
- action_type: 'SCAN_CREDENTIAL'
32157
+ action_type: 'SCAN_CARD'
32154
32158
  }
32155
32159
  | {
32156
32160
  /** The ID of the action attempt. */
32157
32161
  action_attempt_id: string
32158
32162
  status: 'success'
32159
32163
  error: null
32160
- action_type: 'SCAN_CREDENTIAL'
32164
+ action_type: 'SCAN_CARD'
32161
32165
  result: {
32162
- /** Snapshot of credential data read from physical encoder. */
32166
+ /** Snapshot of the card data read from the physical encoder. */
32163
32167
  acs_credential_on_encoder: {
32164
32168
  /** Date and time the credential was created. */
32165
32169
  created_at: string | null
@@ -32348,7 +32352,7 @@ export interface Routes {
32348
32352
  action_attempt_id: string
32349
32353
  status: 'error'
32350
32354
  result: null
32351
- action_type: 'SCAN_CREDENTIAL'
32355
+ action_type: 'SCAN_CARD'
32352
32356
  error:
32353
32357
  | {
32354
32358
  type: 'uncategorized_error'
@@ -32369,14 +32373,14 @@ export interface Routes {
32369
32373
  status: 'pending'
32370
32374
  result: null
32371
32375
  error: null
32372
- action_type: 'ENCODE_CREDENTIAL'
32376
+ action_type: 'ENCODE_CARD'
32373
32377
  }
32374
32378
  | {
32375
32379
  /** The ID of the action attempt. */
32376
32380
  action_attempt_id: string
32377
32381
  status: 'success'
32378
32382
  error: null
32379
- action_type: 'ENCODE_CREDENTIAL'
32383
+ action_type: 'ENCODE_CARD'
32380
32384
  /** Means by which a user gains access at an entrance.
32381
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. */
32382
32386
  result:
@@ -32530,7 +32534,7 @@ export interface Routes {
32530
32534
  action_attempt_id: string
32531
32535
  status: 'error'
32532
32536
  result: null
32533
- action_type: 'ENCODE_CREDENTIAL'
32537
+ action_type: 'ENCODE_CARD'
32534
32538
  error:
32535
32539
  | {
32536
32540
  type: 'uncategorized_error'