@seamapi/types 1.276.0 → 1.278.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/connect.cjs +81 -19
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +352 -56
  4. package/lib/seam/connect/models/acs/acs-entrance.d.ts +13 -0
  5. package/lib/seam/connect/models/acs/acs-entrance.js +2 -1
  6. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
  8. package/lib/seam/connect/models/acs/acs-system.js +1 -0
  9. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-user.d.ts +7 -7
  11. package/lib/seam/connect/models/acs/acs-user.js +1 -0
  12. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  13. package/lib/seam/connect/models/acs/metadata/dormakaba_community.d.ts +9 -0
  14. package/lib/seam/connect/models/acs/metadata/dormakaba_community.js +5 -0
  15. package/lib/seam/connect/models/acs/metadata/dormakaba_community.js.map +1 -0
  16. package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
  17. package/lib/seam/connect/models/acs/metadata/index.js +1 -0
  18. package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
  19. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -7
  20. package/lib/seam/connect/models/action-attempts/encode-card.d.ts +22 -7
  21. package/lib/seam/connect/models/action-attempts/encode-card.js +10 -2
  22. package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
  23. package/lib/seam/connect/models/action-attempts/scan-card.d.ts +26 -0
  24. package/lib/seam/connect/models/action-attempts/scan-card.js +5 -0
  25. package/lib/seam/connect/models/action-attempts/scan-card.js.map +1 -1
  26. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  27. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  28. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  29. package/lib/seam/connect/openapi.d.ts +86 -0
  30. package/lib/seam/connect/openapi.js +48 -6
  31. package/lib/seam/connect/openapi.js.map +1 -1
  32. package/lib/seam/connect/route-types.d.ts +192 -37
  33. package/package.json +1 -1
  34. package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
  35. package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
  36. package/src/lib/seam/connect/models/acs/acs-user.ts +1 -0
  37. package/src/lib/seam/connect/models/acs/metadata/dormakaba_community.ts +9 -0
  38. package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
  39. package/src/lib/seam/connect/models/action-attempts/encode-card.ts +12 -2
  40. package/src/lib/seam/connect/models/action-attempts/scan-card.ts +6 -0
  41. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  42. package/src/lib/seam/connect/openapi.ts +48 -6
  43. package/src/lib/seam/connect/route-types.ts +302 -80
@@ -238,6 +238,10 @@ export interface Routes {
238
238
  }
239
239
  )
240
240
  | null
241
+ warnings: Array<{
242
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
243
+ warning_message: string
244
+ }>
241
245
  }
242
246
  }
243
247
  | {
@@ -383,10 +387,15 @@ export interface Routes {
383
387
  status: 'error'
384
388
  result: null
385
389
  action_type: 'ENCODE_CARD'
386
- error: {
387
- type: string
388
- message: string
389
- }
390
+ error:
391
+ | {
392
+ type: 'no_card_on_encoder'
393
+ message: string
394
+ }
395
+ | {
396
+ type: 'incompatible_card_format'
397
+ message: string
398
+ }
390
399
  }
391
400
  | {
392
401
  /** The ID of the action attempt. */
@@ -1158,6 +1167,10 @@ export interface Routes {
1158
1167
  }
1159
1168
  )
1160
1169
  | null
1170
+ warnings: Array<{
1171
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
1172
+ warning_message: string
1173
+ }>
1161
1174
  }
1162
1175
  }
1163
1176
  | {
@@ -1303,10 +1316,15 @@ export interface Routes {
1303
1316
  status: 'error'
1304
1317
  result: null
1305
1318
  action_type: 'ENCODE_CARD'
1306
- error: {
1307
- type: string
1308
- message: string
1309
- }
1319
+ error:
1320
+ | {
1321
+ type: 'no_card_on_encoder'
1322
+ message: string
1323
+ }
1324
+ | {
1325
+ type: 'incompatible_card_format'
1326
+ message: string
1327
+ }
1310
1328
  }
1311
1329
  | {
1312
1330
  /** The ID of the action attempt. */
@@ -2243,6 +2261,10 @@ export interface Routes {
2243
2261
  }
2244
2262
  )
2245
2263
  | null
2264
+ warnings: Array<{
2265
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
2266
+ warning_message: string
2267
+ }>
2246
2268
  }
2247
2269
  }
2248
2270
  | {
@@ -2388,10 +2410,15 @@ export interface Routes {
2388
2410
  status: 'error'
2389
2411
  result: null
2390
2412
  action_type: 'ENCODE_CARD'
2391
- error: {
2392
- type: string
2393
- message: string
2394
- }
2413
+ error:
2414
+ | {
2415
+ type: 'no_card_on_encoder'
2416
+ message: string
2417
+ }
2418
+ | {
2419
+ type: 'incompatible_card_format'
2420
+ message: string
2421
+ }
2395
2422
  }
2396
2423
  | {
2397
2424
  /** The ID of the action attempt. */
@@ -3150,6 +3177,10 @@ export interface Routes {
3150
3177
  }
3151
3178
  )
3152
3179
  | null
3180
+ warnings: Array<{
3181
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
3182
+ warning_message: string
3183
+ }>
3153
3184
  }
3154
3185
  }
3155
3186
  | {
@@ -3295,10 +3326,15 @@ export interface Routes {
3295
3326
  status: 'error'
3296
3327
  result: null
3297
3328
  action_type: 'ENCODE_CARD'
3298
- error: {
3299
- type: string
3300
- message: string
3301
- }
3329
+ error:
3330
+ | {
3331
+ type: 'no_card_on_encoder'
3332
+ message: string
3333
+ }
3334
+ | {
3335
+ type: 'incompatible_card_format'
3336
+ message: string
3337
+ }
3302
3338
  }
3303
3339
  | {
3304
3340
  /** The ID of the action attempt. */
@@ -3878,6 +3914,11 @@ export interface Routes {
3878
3914
  privacy_mode: boolean
3879
3915
  }
3880
3916
  | undefined
3917
+ dormakaba_community_metadata?:
3918
+ | {
3919
+ access_point_name: string
3920
+ }
3921
+ | undefined
3881
3922
  }>
3882
3923
  }
3883
3924
  }
@@ -3912,6 +3953,7 @@ export interface Routes {
3912
3953
  | 'hid_credential_manager_user'
3913
3954
  | 'salto_site_user'
3914
3955
  | 'latch_user'
3956
+ | 'dormakaba_community_user'
3915
3957
  )
3916
3958
  | undefined
3917
3959
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
@@ -4513,6 +4555,11 @@ export interface Routes {
4513
4555
  privacy_mode: boolean
4514
4556
  }
4515
4557
  | undefined
4558
+ dormakaba_community_metadata?:
4559
+ | {
4560
+ access_point_name: string
4561
+ }
4562
+ | undefined
4516
4563
  }>
4517
4564
  }
4518
4565
  }
@@ -5006,6 +5053,10 @@ export interface Routes {
5006
5053
  }
5007
5054
  )
5008
5055
  | null
5056
+ warnings: Array<{
5057
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
5058
+ warning_message: string
5059
+ }>
5009
5060
  }
5010
5061
  }
5011
5062
  | {
@@ -5151,10 +5202,15 @@ export interface Routes {
5151
5202
  status: 'error'
5152
5203
  result: null
5153
5204
  action_type: 'ENCODE_CARD'
5154
- error: {
5155
- type: string
5156
- message: string
5157
- }
5205
+ error:
5206
+ | {
5207
+ type: 'no_card_on_encoder'
5208
+ message: string
5209
+ }
5210
+ | {
5211
+ type: 'incompatible_card_format'
5212
+ message: string
5213
+ }
5158
5214
  }
5159
5215
  | {
5160
5216
  /** The ID of the action attempt. */
@@ -6431,6 +6487,10 @@ export interface Routes {
6431
6487
  }
6432
6488
  )
6433
6489
  | null
6490
+ warnings: Array<{
6491
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
6492
+ warning_message: string
6493
+ }>
6434
6494
  }
6435
6495
  }
6436
6496
  | {
@@ -6576,10 +6636,15 @@ export interface Routes {
6576
6636
  status: 'error'
6577
6637
  result: null
6578
6638
  action_type: 'ENCODE_CARD'
6579
- error: {
6580
- type: string
6581
- message: string
6582
- }
6639
+ error:
6640
+ | {
6641
+ type: 'no_card_on_encoder'
6642
+ message: string
6643
+ }
6644
+ | {
6645
+ type: 'incompatible_card_format'
6646
+ message: string
6647
+ }
6583
6648
  }
6584
6649
  | {
6585
6650
  /** The ID of the action attempt. */
@@ -7029,6 +7094,11 @@ export interface Routes {
7029
7094
  privacy_mode: boolean
7030
7095
  }
7031
7096
  | undefined
7097
+ dormakaba_community_metadata?:
7098
+ | {
7099
+ access_point_name: string
7100
+ }
7101
+ | undefined
7032
7102
  }
7033
7103
  }
7034
7104
  }
@@ -7105,6 +7175,11 @@ export interface Routes {
7105
7175
  privacy_mode: boolean
7106
7176
  }
7107
7177
  | undefined
7178
+ dormakaba_community_metadata?:
7179
+ | {
7180
+ access_point_name: string
7181
+ }
7182
+ | undefined
7108
7183
  }>
7109
7184
  }
7110
7185
  }
@@ -7200,6 +7275,7 @@ export interface Routes {
7200
7275
  | 'visionline_system'
7201
7276
  | 'assa_abloy_credential_service'
7202
7277
  | 'latch_building'
7278
+ | 'dormakaba_community'
7203
7279
  )
7204
7280
  | undefined
7205
7281
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
@@ -7228,6 +7304,7 @@ export interface Routes {
7228
7304
  | 'visionline_system'
7229
7305
  | 'assa_abloy_credential_service'
7230
7306
  | 'latch_building'
7307
+ | 'dormakaba_community'
7231
7308
  )
7232
7309
  | undefined
7233
7310
  /**
@@ -7335,6 +7412,7 @@ export interface Routes {
7335
7412
  | 'visionline_system'
7336
7413
  | 'assa_abloy_credential_service'
7337
7414
  | 'latch_building'
7415
+ | 'dormakaba_community'
7338
7416
  )
7339
7417
  | undefined
7340
7418
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
@@ -7363,6 +7441,7 @@ export interface Routes {
7363
7441
  | 'visionline_system'
7364
7442
  | 'assa_abloy_credential_service'
7365
7443
  | 'latch_building'
7444
+ | 'dormakaba_community'
7366
7445
  )
7367
7446
  | undefined
7368
7447
  /**
@@ -7470,6 +7549,7 @@ export interface Routes {
7470
7549
  | 'visionline_system'
7471
7550
  | 'assa_abloy_credential_service'
7472
7551
  | 'latch_building'
7552
+ | 'dormakaba_community'
7473
7553
  )
7474
7554
  | undefined
7475
7555
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
@@ -7498,6 +7578,7 @@ export interface Routes {
7498
7578
  | 'visionline_system'
7499
7579
  | 'assa_abloy_credential_service'
7500
7580
  | 'latch_building'
7581
+ | 'dormakaba_community'
7501
7582
  )
7502
7583
  | undefined
7503
7584
  /**
@@ -7643,6 +7724,7 @@ export interface Routes {
7643
7724
  | 'hid_credential_manager_user'
7644
7725
  | 'salto_site_user'
7645
7726
  | 'latch_user'
7727
+ | 'dormakaba_community_user'
7646
7728
  )
7647
7729
  | undefined
7648
7730
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
@@ -7775,6 +7857,7 @@ export interface Routes {
7775
7857
  | 'hid_credential_manager_user'
7776
7858
  | 'salto_site_user'
7777
7859
  | 'latch_user'
7860
+ | 'dormakaba_community_user'
7778
7861
  )
7779
7862
  | undefined
7780
7863
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
@@ -7903,6 +7986,7 @@ export interface Routes {
7903
7986
  | 'hid_credential_manager_user'
7904
7987
  | 'salto_site_user'
7905
7988
  | 'latch_user'
7989
+ | 'dormakaba_community_user'
7906
7990
  )
7907
7991
  | undefined
7908
7992
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
@@ -8053,6 +8137,11 @@ export interface Routes {
8053
8137
  privacy_mode: boolean
8054
8138
  }
8055
8139
  | undefined
8140
+ dormakaba_community_metadata?:
8141
+ | {
8142
+ access_point_name: string
8143
+ }
8144
+ | undefined
8056
8145
  }>
8057
8146
  }
8058
8147
  }
@@ -8124,6 +8213,7 @@ export interface Routes {
8124
8213
  | 'hid_credential_manager_user'
8125
8214
  | 'salto_site_user'
8126
8215
  | 'latch_user'
8216
+ | 'dormakaba_community_user'
8127
8217
  )
8128
8218
  | undefined
8129
8219
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
@@ -8247,6 +8337,7 @@ export interface Routes {
8247
8337
  | 'hid_credential_manager_user'
8248
8338
  | 'salto_site_user'
8249
8339
  | 'latch_user'
8340
+ | 'dormakaba_community_user'
8250
8341
  )
8251
8342
  | undefined
8252
8343
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
@@ -8600,6 +8691,10 @@ export interface Routes {
8600
8691
  }
8601
8692
  )
8602
8693
  | null
8694
+ warnings: Array<{
8695
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
8696
+ warning_message: string
8697
+ }>
8603
8698
  }
8604
8699
  }
8605
8700
  | {
@@ -8745,10 +8840,15 @@ export interface Routes {
8745
8840
  status: 'error'
8746
8841
  result: null
8747
8842
  action_type: 'ENCODE_CARD'
8748
- error: {
8749
- type: string
8750
- message: string
8751
- }
8843
+ error:
8844
+ | {
8845
+ type: 'no_card_on_encoder'
8846
+ message: string
8847
+ }
8848
+ | {
8849
+ type: 'incompatible_card_format'
8850
+ message: string
8851
+ }
8752
8852
  }
8753
8853
  | {
8754
8854
  /** The ID of the action attempt. */
@@ -9361,6 +9461,10 @@ export interface Routes {
9361
9461
  }
9362
9462
  )
9363
9463
  | null
9464
+ warnings: Array<{
9465
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
9466
+ warning_message: string
9467
+ }>
9364
9468
  }
9365
9469
  }
9366
9470
  | {
@@ -9506,10 +9610,15 @@ export interface Routes {
9506
9610
  status: 'error'
9507
9611
  result: null
9508
9612
  action_type: 'ENCODE_CARD'
9509
- error: {
9510
- type: string
9511
- message: string
9512
- }
9613
+ error:
9614
+ | {
9615
+ type: 'no_card_on_encoder'
9616
+ message: string
9617
+ }
9618
+ | {
9619
+ type: 'incompatible_card_format'
9620
+ message: string
9621
+ }
9513
9622
  }
9514
9623
  | {
9515
9624
  /** The ID of the action attempt. */
@@ -10064,6 +10173,7 @@ export interface Routes {
10064
10173
  custom_redirect_failure_url?: string | undefined
10065
10174
  accepted_providers?:
10066
10175
  | Array<
10176
+ | 'dormakaba_community'
10067
10177
  | 'akuvox'
10068
10178
  | 'august'
10069
10179
  | 'avigilon_alta'
@@ -11871,6 +11981,7 @@ export interface Routes {
11871
11981
  jsonResponse: {
11872
11982
  device_providers: Array<{
11873
11983
  device_provider_name:
11984
+ | 'dormakaba_community'
11874
11985
  | 'akuvox'
11875
11986
  | 'august'
11876
11987
  | 'avigilon_alta'
@@ -15683,6 +15794,10 @@ export interface Routes {
15683
15794
  }
15684
15795
  )
15685
15796
  | null
15797
+ warnings: Array<{
15798
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
15799
+ warning_message: string
15800
+ }>
15686
15801
  }
15687
15802
  }
15688
15803
  | {
@@ -15828,10 +15943,15 @@ export interface Routes {
15828
15943
  status: 'error'
15829
15944
  result: null
15830
15945
  action_type: 'ENCODE_CARD'
15831
- error: {
15832
- type: string
15833
- message: string
15834
- }
15946
+ error:
15947
+ | {
15948
+ type: 'no_card_on_encoder'
15949
+ message: string
15950
+ }
15951
+ | {
15952
+ type: 'incompatible_card_format'
15953
+ message: string
15954
+ }
15835
15955
  }
15836
15956
  | {
15837
15957
  /** The ID of the action attempt. */
@@ -16445,6 +16565,10 @@ export interface Routes {
16445
16565
  }
16446
16566
  )
16447
16567
  | null
16568
+ warnings: Array<{
16569
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
16570
+ warning_message: string
16571
+ }>
16448
16572
  }
16449
16573
  }
16450
16574
  | {
@@ -16590,10 +16714,15 @@ export interface Routes {
16590
16714
  status: 'error'
16591
16715
  result: null
16592
16716
  action_type: 'ENCODE_CARD'
16593
- error: {
16594
- type: string
16595
- message: string
16596
- }
16717
+ error:
16718
+ | {
16719
+ type: 'no_card_on_encoder'
16720
+ message: string
16721
+ }
16722
+ | {
16723
+ type: 'incompatible_card_format'
16724
+ message: string
16725
+ }
16597
16726
  }
16598
16727
  | {
16599
16728
  /** The ID of the action attempt. */
@@ -18697,6 +18826,10 @@ export interface Routes {
18697
18826
  }
18698
18827
  )
18699
18828
  | null
18829
+ warnings: Array<{
18830
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
18831
+ warning_message: string
18832
+ }>
18700
18833
  }
18701
18834
  }
18702
18835
  | {
@@ -18842,10 +18975,15 @@ export interface Routes {
18842
18975
  status: 'error'
18843
18976
  result: null
18844
18977
  action_type: 'ENCODE_CARD'
18845
- error: {
18846
- type: string
18847
- message: string
18848
- }
18978
+ error:
18979
+ | {
18980
+ type: 'no_card_on_encoder'
18981
+ message: string
18982
+ }
18983
+ | {
18984
+ type: 'incompatible_card_format'
18985
+ message: string
18986
+ }
18849
18987
  }
18850
18988
  | {
18851
18989
  /** The ID of the action attempt. */
@@ -19469,6 +19607,10 @@ export interface Routes {
19469
19607
  }
19470
19608
  )
19471
19609
  | null
19610
+ warnings: Array<{
19611
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
19612
+ warning_message: string
19613
+ }>
19472
19614
  }
19473
19615
  }
19474
19616
  | {
@@ -19614,10 +19756,15 @@ export interface Routes {
19614
19756
  status: 'error'
19615
19757
  result: null
19616
19758
  action_type: 'ENCODE_CARD'
19617
- error: {
19618
- type: string
19619
- message: string
19620
- }
19759
+ error:
19760
+ | {
19761
+ type: 'no_card_on_encoder'
19762
+ message: string
19763
+ }
19764
+ | {
19765
+ type: 'incompatible_card_format'
19766
+ message: string
19767
+ }
19621
19768
  }
19622
19769
  | {
19623
19770
  /** The ID of the action attempt. */
@@ -20280,6 +20427,10 @@ export interface Routes {
20280
20427
  }
20281
20428
  )
20282
20429
  | null
20430
+ warnings: Array<{
20431
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
20432
+ warning_message: string
20433
+ }>
20283
20434
  }
20284
20435
  }
20285
20436
  | {
@@ -20425,10 +20576,15 @@ export interface Routes {
20425
20576
  status: 'error'
20426
20577
  result: null
20427
20578
  action_type: 'ENCODE_CARD'
20428
- error: {
20429
- type: string
20430
- message: string
20431
- }
20579
+ error:
20580
+ | {
20581
+ type: 'no_card_on_encoder'
20582
+ message: string
20583
+ }
20584
+ | {
20585
+ type: 'incompatible_card_format'
20586
+ message: string
20587
+ }
20432
20588
  }
20433
20589
  | {
20434
20590
  /** The ID of the action attempt. */
@@ -21248,6 +21404,10 @@ export interface Routes {
21248
21404
  }
21249
21405
  )
21250
21406
  | null
21407
+ warnings: Array<{
21408
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
21409
+ warning_message: string
21410
+ }>
21251
21411
  }
21252
21412
  }
21253
21413
  | {
@@ -21393,10 +21553,15 @@ export interface Routes {
21393
21553
  status: 'error'
21394
21554
  result: null
21395
21555
  action_type: 'ENCODE_CARD'
21396
- error: {
21397
- type: string
21398
- message: string
21399
- }
21556
+ error:
21557
+ | {
21558
+ type: 'no_card_on_encoder'
21559
+ message: string
21560
+ }
21561
+ | {
21562
+ type: 'incompatible_card_format'
21563
+ message: string
21564
+ }
21400
21565
  }
21401
21566
  | {
21402
21567
  /** The ID of the action attempt. */
@@ -22012,6 +22177,10 @@ export interface Routes {
22012
22177
  }
22013
22178
  )
22014
22179
  | null
22180
+ warnings: Array<{
22181
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
22182
+ warning_message: string
22183
+ }>
22015
22184
  }
22016
22185
  }
22017
22186
  | {
@@ -22157,10 +22326,15 @@ export interface Routes {
22157
22326
  status: 'error'
22158
22327
  result: null
22159
22328
  action_type: 'ENCODE_CARD'
22160
- error: {
22161
- type: string
22162
- message: string
22163
- }
22329
+ error:
22330
+ | {
22331
+ type: 'no_card_on_encoder'
22332
+ message: string
22333
+ }
22334
+ | {
22335
+ type: 'incompatible_card_format'
22336
+ message: string
22337
+ }
22164
22338
  }
22165
22339
  | {
22166
22340
  /** The ID of the action attempt. */
@@ -23461,6 +23635,10 @@ export interface Routes {
23461
23635
  }
23462
23636
  )
23463
23637
  | null
23638
+ warnings: Array<{
23639
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
23640
+ warning_message: string
23641
+ }>
23464
23642
  }
23465
23643
  }
23466
23644
  | {
@@ -23606,10 +23784,15 @@ export interface Routes {
23606
23784
  status: 'error'
23607
23785
  result: null
23608
23786
  action_type: 'ENCODE_CARD'
23609
- error: {
23610
- type: string
23611
- message: string
23612
- }
23787
+ error:
23788
+ | {
23789
+ type: 'no_card_on_encoder'
23790
+ message: string
23791
+ }
23792
+ | {
23793
+ type: 'incompatible_card_format'
23794
+ message: string
23795
+ }
23613
23796
  }
23614
23797
  | {
23615
23798
  /** The ID of the action attempt. */
@@ -24227,6 +24410,10 @@ export interface Routes {
24227
24410
  }
24228
24411
  )
24229
24412
  | null
24413
+ warnings: Array<{
24414
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
24415
+ warning_message: string
24416
+ }>
24230
24417
  }
24231
24418
  }
24232
24419
  | {
@@ -24372,10 +24559,15 @@ export interface Routes {
24372
24559
  status: 'error'
24373
24560
  result: null
24374
24561
  action_type: 'ENCODE_CARD'
24375
- error: {
24376
- type: string
24377
- message: string
24378
- }
24562
+ error:
24563
+ | {
24564
+ type: 'no_card_on_encoder'
24565
+ message: string
24566
+ }
24567
+ | {
24568
+ type: 'incompatible_card_format'
24569
+ message: string
24570
+ }
24379
24571
  }
24380
24572
  | {
24381
24573
  /** The ID of the action attempt. */
@@ -26440,6 +26632,10 @@ export interface Routes {
26440
26632
  }
26441
26633
  )
26442
26634
  | null
26635
+ warnings: Array<{
26636
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
26637
+ warning_message: string
26638
+ }>
26443
26639
  }
26444
26640
  }
26445
26641
  | {
@@ -26585,10 +26781,15 @@ export interface Routes {
26585
26781
  status: 'error'
26586
26782
  result: null
26587
26783
  action_type: 'ENCODE_CARD'
26588
- error: {
26589
- type: string
26590
- message: string
26591
- }
26784
+ error:
26785
+ | {
26786
+ type: 'no_card_on_encoder'
26787
+ message: string
26788
+ }
26789
+ | {
26790
+ type: 'incompatible_card_format'
26791
+ message: string
26792
+ }
26592
26793
  }
26593
26794
  | {
26594
26795
  /** The ID of the action attempt. */
@@ -27323,6 +27524,10 @@ export interface Routes {
27323
27524
  }
27324
27525
  )
27325
27526
  | null
27527
+ warnings: Array<{
27528
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
27529
+ warning_message: string
27530
+ }>
27326
27531
  }
27327
27532
  }
27328
27533
  | {
@@ -27468,10 +27673,15 @@ export interface Routes {
27468
27673
  status: 'error'
27469
27674
  result: null
27470
27675
  action_type: 'ENCODE_CARD'
27471
- error: {
27472
- type: string
27473
- message: string
27474
- }
27676
+ error:
27677
+ | {
27678
+ type: 'no_card_on_encoder'
27679
+ message: string
27680
+ }
27681
+ | {
27682
+ type: 'incompatible_card_format'
27683
+ message: string
27684
+ }
27475
27685
  }
27476
27686
  | {
27477
27687
  /** The ID of the action attempt. */
@@ -29397,6 +29607,7 @@ export interface Routes {
29397
29607
  | 'visionline_system'
29398
29608
  | 'assa_abloy_credential_service'
29399
29609
  | 'latch_building'
29610
+ | 'dormakaba_community'
29400
29611
  )
29401
29612
  | undefined
29402
29613
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
@@ -29425,6 +29636,7 @@ export interface Routes {
29425
29636
  | 'visionline_system'
29426
29637
  | 'assa_abloy_credential_service'
29427
29638
  | 'latch_building'
29639
+ | 'dormakaba_community'
29428
29640
  )
29429
29641
  | undefined
29430
29642
  /**
@@ -29535,6 +29747,7 @@ export interface Routes {
29535
29747
  | 'hid_credential_manager_user'
29536
29748
  | 'salto_site_user'
29537
29749
  | 'latch_user'
29750
+ | 'dormakaba_community_user'
29538
29751
  )
29539
29752
  | undefined
29540
29753
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
@@ -30026,6 +30239,10 @@ export interface Routes {
30026
30239
  }
30027
30240
  )
30028
30241
  | null
30242
+ warnings: Array<{
30243
+ warning_code: 'acs_credential_on_encoder_out_of_sync'
30244
+ warning_message: string
30245
+ }>
30029
30246
  }
30030
30247
  }
30031
30248
  | {
@@ -30171,10 +30388,15 @@ export interface Routes {
30171
30388
  status: 'error'
30172
30389
  result: null
30173
30390
  action_type: 'ENCODE_CARD'
30174
- error: {
30175
- type: string
30176
- message: string
30177
- }
30391
+ error:
30392
+ | {
30393
+ type: 'no_card_on_encoder'
30394
+ message: string
30395
+ }
30396
+ | {
30397
+ type: 'incompatible_card_format'
30398
+ message: string
30399
+ }
30178
30400
  }
30179
30401
  | {
30180
30402
  /** The ID of the action attempt. */