@seamapi/types 1.277.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.
- package/dist/connect.cjs +53 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +285 -27
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -7
- package/lib/seam/connect/models/action-attempts/encode-card.d.ts +22 -7
- package/lib/seam/connect/models/action-attempts/encode-card.js +10 -2
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-card.d.ts +26 -0
- package/lib/seam/connect/models/action-attempts/scan-card.js +5 -0
- package/lib/seam/connect/models/action-attempts/scan-card.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +77 -0
- package/lib/seam/connect/openapi.js +36 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +160 -20
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-card.ts +12 -2
- package/src/lib/seam/connect/models/action-attempts/scan-card.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +36 -6
- package/src/lib/seam/connect/route-types.ts +260 -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
|
-
|
|
388
|
-
|
|
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
|
-
|
|
1308
|
-
|
|
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
|
-
|
|
2393
|
-
|
|
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
|
-
|
|
3300
|
-
|
|
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. */
|
|
@@ -5017,6 +5053,10 @@ export interface Routes {
|
|
|
5017
5053
|
}
|
|
5018
5054
|
)
|
|
5019
5055
|
| null
|
|
5056
|
+
warnings: Array<{
|
|
5057
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
5058
|
+
warning_message: string
|
|
5059
|
+
}>
|
|
5020
5060
|
}
|
|
5021
5061
|
}
|
|
5022
5062
|
| {
|
|
@@ -5162,10 +5202,15 @@ export interface Routes {
|
|
|
5162
5202
|
status: 'error'
|
|
5163
5203
|
result: null
|
|
5164
5204
|
action_type: 'ENCODE_CARD'
|
|
5165
|
-
error:
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
|
|
5205
|
+
error:
|
|
5206
|
+
| {
|
|
5207
|
+
type: 'no_card_on_encoder'
|
|
5208
|
+
message: string
|
|
5209
|
+
}
|
|
5210
|
+
| {
|
|
5211
|
+
type: 'incompatible_card_format'
|
|
5212
|
+
message: string
|
|
5213
|
+
}
|
|
5169
5214
|
}
|
|
5170
5215
|
| {
|
|
5171
5216
|
/** The ID of the action attempt. */
|
|
@@ -6442,6 +6487,10 @@ export interface Routes {
|
|
|
6442
6487
|
}
|
|
6443
6488
|
)
|
|
6444
6489
|
| null
|
|
6490
|
+
warnings: Array<{
|
|
6491
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
6492
|
+
warning_message: string
|
|
6493
|
+
}>
|
|
6445
6494
|
}
|
|
6446
6495
|
}
|
|
6447
6496
|
| {
|
|
@@ -6587,10 +6636,15 @@ export interface Routes {
|
|
|
6587
6636
|
status: 'error'
|
|
6588
6637
|
result: null
|
|
6589
6638
|
action_type: 'ENCODE_CARD'
|
|
6590
|
-
error:
|
|
6591
|
-
|
|
6592
|
-
|
|
6593
|
-
|
|
6639
|
+
error:
|
|
6640
|
+
| {
|
|
6641
|
+
type: 'no_card_on_encoder'
|
|
6642
|
+
message: string
|
|
6643
|
+
}
|
|
6644
|
+
| {
|
|
6645
|
+
type: 'incompatible_card_format'
|
|
6646
|
+
message: string
|
|
6647
|
+
}
|
|
6594
6648
|
}
|
|
6595
6649
|
| {
|
|
6596
6650
|
/** The ID of the action attempt. */
|
|
@@ -8637,6 +8691,10 @@ export interface Routes {
|
|
|
8637
8691
|
}
|
|
8638
8692
|
)
|
|
8639
8693
|
| null
|
|
8694
|
+
warnings: Array<{
|
|
8695
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
8696
|
+
warning_message: string
|
|
8697
|
+
}>
|
|
8640
8698
|
}
|
|
8641
8699
|
}
|
|
8642
8700
|
| {
|
|
@@ -8782,10 +8840,15 @@ export interface Routes {
|
|
|
8782
8840
|
status: 'error'
|
|
8783
8841
|
result: null
|
|
8784
8842
|
action_type: 'ENCODE_CARD'
|
|
8785
|
-
error:
|
|
8786
|
-
|
|
8787
|
-
|
|
8788
|
-
|
|
8843
|
+
error:
|
|
8844
|
+
| {
|
|
8845
|
+
type: 'no_card_on_encoder'
|
|
8846
|
+
message: string
|
|
8847
|
+
}
|
|
8848
|
+
| {
|
|
8849
|
+
type: 'incompatible_card_format'
|
|
8850
|
+
message: string
|
|
8851
|
+
}
|
|
8789
8852
|
}
|
|
8790
8853
|
| {
|
|
8791
8854
|
/** The ID of the action attempt. */
|
|
@@ -9398,6 +9461,10 @@ export interface Routes {
|
|
|
9398
9461
|
}
|
|
9399
9462
|
)
|
|
9400
9463
|
| null
|
|
9464
|
+
warnings: Array<{
|
|
9465
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
9466
|
+
warning_message: string
|
|
9467
|
+
}>
|
|
9401
9468
|
}
|
|
9402
9469
|
}
|
|
9403
9470
|
| {
|
|
@@ -9543,10 +9610,15 @@ export interface Routes {
|
|
|
9543
9610
|
status: 'error'
|
|
9544
9611
|
result: null
|
|
9545
9612
|
action_type: 'ENCODE_CARD'
|
|
9546
|
-
error:
|
|
9547
|
-
|
|
9548
|
-
|
|
9549
|
-
|
|
9613
|
+
error:
|
|
9614
|
+
| {
|
|
9615
|
+
type: 'no_card_on_encoder'
|
|
9616
|
+
message: string
|
|
9617
|
+
}
|
|
9618
|
+
| {
|
|
9619
|
+
type: 'incompatible_card_format'
|
|
9620
|
+
message: string
|
|
9621
|
+
}
|
|
9550
9622
|
}
|
|
9551
9623
|
| {
|
|
9552
9624
|
/** The ID of the action attempt. */
|
|
@@ -15722,6 +15794,10 @@ export interface Routes {
|
|
|
15722
15794
|
}
|
|
15723
15795
|
)
|
|
15724
15796
|
| null
|
|
15797
|
+
warnings: Array<{
|
|
15798
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
15799
|
+
warning_message: string
|
|
15800
|
+
}>
|
|
15725
15801
|
}
|
|
15726
15802
|
}
|
|
15727
15803
|
| {
|
|
@@ -15867,10 +15943,15 @@ export interface Routes {
|
|
|
15867
15943
|
status: 'error'
|
|
15868
15944
|
result: null
|
|
15869
15945
|
action_type: 'ENCODE_CARD'
|
|
15870
|
-
error:
|
|
15871
|
-
|
|
15872
|
-
|
|
15873
|
-
|
|
15946
|
+
error:
|
|
15947
|
+
| {
|
|
15948
|
+
type: 'no_card_on_encoder'
|
|
15949
|
+
message: string
|
|
15950
|
+
}
|
|
15951
|
+
| {
|
|
15952
|
+
type: 'incompatible_card_format'
|
|
15953
|
+
message: string
|
|
15954
|
+
}
|
|
15874
15955
|
}
|
|
15875
15956
|
| {
|
|
15876
15957
|
/** The ID of the action attempt. */
|
|
@@ -16484,6 +16565,10 @@ export interface Routes {
|
|
|
16484
16565
|
}
|
|
16485
16566
|
)
|
|
16486
16567
|
| null
|
|
16568
|
+
warnings: Array<{
|
|
16569
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
16570
|
+
warning_message: string
|
|
16571
|
+
}>
|
|
16487
16572
|
}
|
|
16488
16573
|
}
|
|
16489
16574
|
| {
|
|
@@ -16629,10 +16714,15 @@ export interface Routes {
|
|
|
16629
16714
|
status: 'error'
|
|
16630
16715
|
result: null
|
|
16631
16716
|
action_type: 'ENCODE_CARD'
|
|
16632
|
-
error:
|
|
16633
|
-
|
|
16634
|
-
|
|
16635
|
-
|
|
16717
|
+
error:
|
|
16718
|
+
| {
|
|
16719
|
+
type: 'no_card_on_encoder'
|
|
16720
|
+
message: string
|
|
16721
|
+
}
|
|
16722
|
+
| {
|
|
16723
|
+
type: 'incompatible_card_format'
|
|
16724
|
+
message: string
|
|
16725
|
+
}
|
|
16636
16726
|
}
|
|
16637
16727
|
| {
|
|
16638
16728
|
/** The ID of the action attempt. */
|
|
@@ -18736,6 +18826,10 @@ export interface Routes {
|
|
|
18736
18826
|
}
|
|
18737
18827
|
)
|
|
18738
18828
|
| null
|
|
18829
|
+
warnings: Array<{
|
|
18830
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
18831
|
+
warning_message: string
|
|
18832
|
+
}>
|
|
18739
18833
|
}
|
|
18740
18834
|
}
|
|
18741
18835
|
| {
|
|
@@ -18881,10 +18975,15 @@ export interface Routes {
|
|
|
18881
18975
|
status: 'error'
|
|
18882
18976
|
result: null
|
|
18883
18977
|
action_type: 'ENCODE_CARD'
|
|
18884
|
-
error:
|
|
18885
|
-
|
|
18886
|
-
|
|
18887
|
-
|
|
18978
|
+
error:
|
|
18979
|
+
| {
|
|
18980
|
+
type: 'no_card_on_encoder'
|
|
18981
|
+
message: string
|
|
18982
|
+
}
|
|
18983
|
+
| {
|
|
18984
|
+
type: 'incompatible_card_format'
|
|
18985
|
+
message: string
|
|
18986
|
+
}
|
|
18888
18987
|
}
|
|
18889
18988
|
| {
|
|
18890
18989
|
/** The ID of the action attempt. */
|
|
@@ -19508,6 +19607,10 @@ export interface Routes {
|
|
|
19508
19607
|
}
|
|
19509
19608
|
)
|
|
19510
19609
|
| null
|
|
19610
|
+
warnings: Array<{
|
|
19611
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
19612
|
+
warning_message: string
|
|
19613
|
+
}>
|
|
19511
19614
|
}
|
|
19512
19615
|
}
|
|
19513
19616
|
| {
|
|
@@ -19653,10 +19756,15 @@ export interface Routes {
|
|
|
19653
19756
|
status: 'error'
|
|
19654
19757
|
result: null
|
|
19655
19758
|
action_type: 'ENCODE_CARD'
|
|
19656
|
-
error:
|
|
19657
|
-
|
|
19658
|
-
|
|
19659
|
-
|
|
19759
|
+
error:
|
|
19760
|
+
| {
|
|
19761
|
+
type: 'no_card_on_encoder'
|
|
19762
|
+
message: string
|
|
19763
|
+
}
|
|
19764
|
+
| {
|
|
19765
|
+
type: 'incompatible_card_format'
|
|
19766
|
+
message: string
|
|
19767
|
+
}
|
|
19660
19768
|
}
|
|
19661
19769
|
| {
|
|
19662
19770
|
/** The ID of the action attempt. */
|
|
@@ -20319,6 +20427,10 @@ export interface Routes {
|
|
|
20319
20427
|
}
|
|
20320
20428
|
)
|
|
20321
20429
|
| null
|
|
20430
|
+
warnings: Array<{
|
|
20431
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
20432
|
+
warning_message: string
|
|
20433
|
+
}>
|
|
20322
20434
|
}
|
|
20323
20435
|
}
|
|
20324
20436
|
| {
|
|
@@ -20464,10 +20576,15 @@ export interface Routes {
|
|
|
20464
20576
|
status: 'error'
|
|
20465
20577
|
result: null
|
|
20466
20578
|
action_type: 'ENCODE_CARD'
|
|
20467
|
-
error:
|
|
20468
|
-
|
|
20469
|
-
|
|
20470
|
-
|
|
20579
|
+
error:
|
|
20580
|
+
| {
|
|
20581
|
+
type: 'no_card_on_encoder'
|
|
20582
|
+
message: string
|
|
20583
|
+
}
|
|
20584
|
+
| {
|
|
20585
|
+
type: 'incompatible_card_format'
|
|
20586
|
+
message: string
|
|
20587
|
+
}
|
|
20471
20588
|
}
|
|
20472
20589
|
| {
|
|
20473
20590
|
/** The ID of the action attempt. */
|
|
@@ -21287,6 +21404,10 @@ export interface Routes {
|
|
|
21287
21404
|
}
|
|
21288
21405
|
)
|
|
21289
21406
|
| null
|
|
21407
|
+
warnings: Array<{
|
|
21408
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
21409
|
+
warning_message: string
|
|
21410
|
+
}>
|
|
21290
21411
|
}
|
|
21291
21412
|
}
|
|
21292
21413
|
| {
|
|
@@ -21432,10 +21553,15 @@ export interface Routes {
|
|
|
21432
21553
|
status: 'error'
|
|
21433
21554
|
result: null
|
|
21434
21555
|
action_type: 'ENCODE_CARD'
|
|
21435
|
-
error:
|
|
21436
|
-
|
|
21437
|
-
|
|
21438
|
-
|
|
21556
|
+
error:
|
|
21557
|
+
| {
|
|
21558
|
+
type: 'no_card_on_encoder'
|
|
21559
|
+
message: string
|
|
21560
|
+
}
|
|
21561
|
+
| {
|
|
21562
|
+
type: 'incompatible_card_format'
|
|
21563
|
+
message: string
|
|
21564
|
+
}
|
|
21439
21565
|
}
|
|
21440
21566
|
| {
|
|
21441
21567
|
/** The ID of the action attempt. */
|
|
@@ -22051,6 +22177,10 @@ export interface Routes {
|
|
|
22051
22177
|
}
|
|
22052
22178
|
)
|
|
22053
22179
|
| null
|
|
22180
|
+
warnings: Array<{
|
|
22181
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
22182
|
+
warning_message: string
|
|
22183
|
+
}>
|
|
22054
22184
|
}
|
|
22055
22185
|
}
|
|
22056
22186
|
| {
|
|
@@ -22196,10 +22326,15 @@ export interface Routes {
|
|
|
22196
22326
|
status: 'error'
|
|
22197
22327
|
result: null
|
|
22198
22328
|
action_type: 'ENCODE_CARD'
|
|
22199
|
-
error:
|
|
22200
|
-
|
|
22201
|
-
|
|
22202
|
-
|
|
22329
|
+
error:
|
|
22330
|
+
| {
|
|
22331
|
+
type: 'no_card_on_encoder'
|
|
22332
|
+
message: string
|
|
22333
|
+
}
|
|
22334
|
+
| {
|
|
22335
|
+
type: 'incompatible_card_format'
|
|
22336
|
+
message: string
|
|
22337
|
+
}
|
|
22203
22338
|
}
|
|
22204
22339
|
| {
|
|
22205
22340
|
/** The ID of the action attempt. */
|
|
@@ -23500,6 +23635,10 @@ export interface Routes {
|
|
|
23500
23635
|
}
|
|
23501
23636
|
)
|
|
23502
23637
|
| null
|
|
23638
|
+
warnings: Array<{
|
|
23639
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
23640
|
+
warning_message: string
|
|
23641
|
+
}>
|
|
23503
23642
|
}
|
|
23504
23643
|
}
|
|
23505
23644
|
| {
|
|
@@ -23645,10 +23784,15 @@ export interface Routes {
|
|
|
23645
23784
|
status: 'error'
|
|
23646
23785
|
result: null
|
|
23647
23786
|
action_type: 'ENCODE_CARD'
|
|
23648
|
-
error:
|
|
23649
|
-
|
|
23650
|
-
|
|
23651
|
-
|
|
23787
|
+
error:
|
|
23788
|
+
| {
|
|
23789
|
+
type: 'no_card_on_encoder'
|
|
23790
|
+
message: string
|
|
23791
|
+
}
|
|
23792
|
+
| {
|
|
23793
|
+
type: 'incompatible_card_format'
|
|
23794
|
+
message: string
|
|
23795
|
+
}
|
|
23652
23796
|
}
|
|
23653
23797
|
| {
|
|
23654
23798
|
/** The ID of the action attempt. */
|
|
@@ -24266,6 +24410,10 @@ export interface Routes {
|
|
|
24266
24410
|
}
|
|
24267
24411
|
)
|
|
24268
24412
|
| null
|
|
24413
|
+
warnings: Array<{
|
|
24414
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
24415
|
+
warning_message: string
|
|
24416
|
+
}>
|
|
24269
24417
|
}
|
|
24270
24418
|
}
|
|
24271
24419
|
| {
|
|
@@ -24411,10 +24559,15 @@ export interface Routes {
|
|
|
24411
24559
|
status: 'error'
|
|
24412
24560
|
result: null
|
|
24413
24561
|
action_type: 'ENCODE_CARD'
|
|
24414
|
-
error:
|
|
24415
|
-
|
|
24416
|
-
|
|
24417
|
-
|
|
24562
|
+
error:
|
|
24563
|
+
| {
|
|
24564
|
+
type: 'no_card_on_encoder'
|
|
24565
|
+
message: string
|
|
24566
|
+
}
|
|
24567
|
+
| {
|
|
24568
|
+
type: 'incompatible_card_format'
|
|
24569
|
+
message: string
|
|
24570
|
+
}
|
|
24418
24571
|
}
|
|
24419
24572
|
| {
|
|
24420
24573
|
/** The ID of the action attempt. */
|
|
@@ -26479,6 +26632,10 @@ export interface Routes {
|
|
|
26479
26632
|
}
|
|
26480
26633
|
)
|
|
26481
26634
|
| null
|
|
26635
|
+
warnings: Array<{
|
|
26636
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
26637
|
+
warning_message: string
|
|
26638
|
+
}>
|
|
26482
26639
|
}
|
|
26483
26640
|
}
|
|
26484
26641
|
| {
|
|
@@ -26624,10 +26781,15 @@ export interface Routes {
|
|
|
26624
26781
|
status: 'error'
|
|
26625
26782
|
result: null
|
|
26626
26783
|
action_type: 'ENCODE_CARD'
|
|
26627
|
-
error:
|
|
26628
|
-
|
|
26629
|
-
|
|
26630
|
-
|
|
26784
|
+
error:
|
|
26785
|
+
| {
|
|
26786
|
+
type: 'no_card_on_encoder'
|
|
26787
|
+
message: string
|
|
26788
|
+
}
|
|
26789
|
+
| {
|
|
26790
|
+
type: 'incompatible_card_format'
|
|
26791
|
+
message: string
|
|
26792
|
+
}
|
|
26631
26793
|
}
|
|
26632
26794
|
| {
|
|
26633
26795
|
/** The ID of the action attempt. */
|
|
@@ -27362,6 +27524,10 @@ export interface Routes {
|
|
|
27362
27524
|
}
|
|
27363
27525
|
)
|
|
27364
27526
|
| null
|
|
27527
|
+
warnings: Array<{
|
|
27528
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
27529
|
+
warning_message: string
|
|
27530
|
+
}>
|
|
27365
27531
|
}
|
|
27366
27532
|
}
|
|
27367
27533
|
| {
|
|
@@ -27507,10 +27673,15 @@ export interface Routes {
|
|
|
27507
27673
|
status: 'error'
|
|
27508
27674
|
result: null
|
|
27509
27675
|
action_type: 'ENCODE_CARD'
|
|
27510
|
-
error:
|
|
27511
|
-
|
|
27512
|
-
|
|
27513
|
-
|
|
27676
|
+
error:
|
|
27677
|
+
| {
|
|
27678
|
+
type: 'no_card_on_encoder'
|
|
27679
|
+
message: string
|
|
27680
|
+
}
|
|
27681
|
+
| {
|
|
27682
|
+
type: 'incompatible_card_format'
|
|
27683
|
+
message: string
|
|
27684
|
+
}
|
|
27514
27685
|
}
|
|
27515
27686
|
| {
|
|
27516
27687
|
/** The ID of the action attempt. */
|
|
@@ -30068,6 +30239,10 @@ export interface Routes {
|
|
|
30068
30239
|
}
|
|
30069
30240
|
)
|
|
30070
30241
|
| null
|
|
30242
|
+
warnings: Array<{
|
|
30243
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync'
|
|
30244
|
+
warning_message: string
|
|
30245
|
+
}>
|
|
30071
30246
|
}
|
|
30072
30247
|
}
|
|
30073
30248
|
| {
|
|
@@ -30213,10 +30388,15 @@ export interface Routes {
|
|
|
30213
30388
|
status: 'error'
|
|
30214
30389
|
result: null
|
|
30215
30390
|
action_type: 'ENCODE_CARD'
|
|
30216
|
-
error:
|
|
30217
|
-
|
|
30218
|
-
|
|
30219
|
-
|
|
30391
|
+
error:
|
|
30392
|
+
| {
|
|
30393
|
+
type: 'no_card_on_encoder'
|
|
30394
|
+
message: string
|
|
30395
|
+
}
|
|
30396
|
+
| {
|
|
30397
|
+
type: 'incompatible_card_format'
|
|
30398
|
+
message: string
|
|
30399
|
+
}
|
|
30220
30400
|
}
|
|
30221
30401
|
| {
|
|
30222
30402
|
/** The ID of the action attempt. */
|