@seamapi/types 1.601.0 → 1.603.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 +148 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +503 -2
- package/dist/index.cjs +148 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +84 -0
- package/lib/seam/connect/openapi.d.ts +121 -2
- package/lib/seam/connect/openapi.js +132 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +310 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +14 -0
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +14 -0
- package/src/lib/seam/connect/openapi.ts +148 -4
- package/src/lib/seam/connect/route-types.ts +366 -0
|
@@ -557,6 +557,12 @@ export type Routes = {
|
|
|
557
557
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
558
558
|
message: string
|
|
559
559
|
}
|
|
560
|
+
| {
|
|
561
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
562
|
+
type: 'no_card_on_encoder'
|
|
563
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
564
|
+
message: string
|
|
565
|
+
}
|
|
560
566
|
}
|
|
561
567
|
| {
|
|
562
568
|
/** ID of the action attempt. */
|
|
@@ -937,6 +943,12 @@ export type Routes = {
|
|
|
937
943
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
938
944
|
message: string
|
|
939
945
|
}
|
|
946
|
+
| {
|
|
947
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
948
|
+
type: 'no_card_on_encoder'
|
|
949
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
950
|
+
message: string
|
|
951
|
+
}
|
|
940
952
|
}
|
|
941
953
|
| {
|
|
942
954
|
/** ID of the action attempt. */
|
|
@@ -3164,6 +3176,12 @@ export type Routes = {
|
|
|
3164
3176
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3165
3177
|
message: string
|
|
3166
3178
|
}
|
|
3179
|
+
| {
|
|
3180
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
3181
|
+
type: 'no_card_on_encoder'
|
|
3182
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3183
|
+
message: string
|
|
3184
|
+
}
|
|
3167
3185
|
}
|
|
3168
3186
|
| {
|
|
3169
3187
|
/** ID of the action attempt. */
|
|
@@ -3544,6 +3562,12 @@ export type Routes = {
|
|
|
3544
3562
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3545
3563
|
message: string
|
|
3546
3564
|
}
|
|
3565
|
+
| {
|
|
3566
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
3567
|
+
type: 'no_card_on_encoder'
|
|
3568
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3569
|
+
message: string
|
|
3570
|
+
}
|
|
3547
3571
|
}
|
|
3548
3572
|
| {
|
|
3549
3573
|
/** ID of the action attempt. */
|
|
@@ -7511,6 +7535,12 @@ export type Routes = {
|
|
|
7511
7535
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7512
7536
|
message: string
|
|
7513
7537
|
}
|
|
7538
|
+
| {
|
|
7539
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
7540
|
+
type: 'no_card_on_encoder'
|
|
7541
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7542
|
+
message: string
|
|
7543
|
+
}
|
|
7514
7544
|
}
|
|
7515
7545
|
| {
|
|
7516
7546
|
/** ID of the action attempt. */
|
|
@@ -7891,6 +7921,12 @@ export type Routes = {
|
|
|
7891
7921
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7892
7922
|
message: string
|
|
7893
7923
|
}
|
|
7924
|
+
| {
|
|
7925
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
7926
|
+
type: 'no_card_on_encoder'
|
|
7927
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7928
|
+
message: string
|
|
7929
|
+
}
|
|
7894
7930
|
}
|
|
7895
7931
|
| {
|
|
7896
7932
|
/** ID of the action attempt. */
|
|
@@ -10139,6 +10175,12 @@ export type Routes = {
|
|
|
10139
10175
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10140
10176
|
message: string
|
|
10141
10177
|
}
|
|
10178
|
+
| {
|
|
10179
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
10180
|
+
type: 'no_card_on_encoder'
|
|
10181
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10182
|
+
message: string
|
|
10183
|
+
}
|
|
10142
10184
|
}
|
|
10143
10185
|
| {
|
|
10144
10186
|
/** ID of the action attempt. */
|
|
@@ -10519,6 +10561,12 @@ export type Routes = {
|
|
|
10519
10561
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10520
10562
|
message: string
|
|
10521
10563
|
}
|
|
10564
|
+
| {
|
|
10565
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
10566
|
+
type: 'no_card_on_encoder'
|
|
10567
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10568
|
+
message: string
|
|
10569
|
+
}
|
|
10522
10570
|
}
|
|
10523
10571
|
| {
|
|
10524
10572
|
/** ID of the action attempt. */
|
|
@@ -14330,6 +14378,12 @@ export type Routes = {
|
|
|
14330
14378
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14331
14379
|
message: string
|
|
14332
14380
|
}
|
|
14381
|
+
| {
|
|
14382
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
14383
|
+
type: 'no_card_on_encoder'
|
|
14384
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14385
|
+
message: string
|
|
14386
|
+
}
|
|
14333
14387
|
}
|
|
14334
14388
|
| {
|
|
14335
14389
|
/** ID of the action attempt. */
|
|
@@ -14710,6 +14764,12 @@ export type Routes = {
|
|
|
14710
14764
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14711
14765
|
message: string
|
|
14712
14766
|
}
|
|
14767
|
+
| {
|
|
14768
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
14769
|
+
type: 'no_card_on_encoder'
|
|
14770
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14771
|
+
message: string
|
|
14772
|
+
}
|
|
14713
14773
|
}
|
|
14714
14774
|
| {
|
|
14715
14775
|
/** ID of the action attempt. */
|
|
@@ -18488,6 +18548,12 @@ export type Routes = {
|
|
|
18488
18548
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18489
18549
|
message: string
|
|
18490
18550
|
}
|
|
18551
|
+
| {
|
|
18552
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
18553
|
+
type: 'no_card_on_encoder'
|
|
18554
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18555
|
+
message: string
|
|
18556
|
+
}
|
|
18491
18557
|
}
|
|
18492
18558
|
| {
|
|
18493
18559
|
/** ID of the action attempt. */
|
|
@@ -18872,6 +18938,12 @@ export type Routes = {
|
|
|
18872
18938
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18873
18939
|
message: string
|
|
18874
18940
|
}
|
|
18941
|
+
| {
|
|
18942
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
18943
|
+
type: 'no_card_on_encoder'
|
|
18944
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18945
|
+
message: string
|
|
18946
|
+
}
|
|
18875
18947
|
}
|
|
18876
18948
|
| {
|
|
18877
18949
|
/** ID of the action attempt. */
|
|
@@ -27125,6 +27197,12 @@ export type Routes = {
|
|
|
27125
27197
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27126
27198
|
message: string
|
|
27127
27199
|
}
|
|
27200
|
+
| {
|
|
27201
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
27202
|
+
type: 'no_card_on_encoder'
|
|
27203
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27204
|
+
message: string
|
|
27205
|
+
}
|
|
27128
27206
|
}
|
|
27129
27207
|
| {
|
|
27130
27208
|
/** ID of the action attempt. */
|
|
@@ -27505,6 +27583,12 @@ export type Routes = {
|
|
|
27505
27583
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27506
27584
|
message: string
|
|
27507
27585
|
}
|
|
27586
|
+
| {
|
|
27587
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
27588
|
+
type: 'no_card_on_encoder'
|
|
27589
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27590
|
+
message: string
|
|
27591
|
+
}
|
|
27508
27592
|
}
|
|
27509
27593
|
| {
|
|
27510
27594
|
/** ID of the action attempt. */
|
|
@@ -28682,6 +28766,12 @@ export type Routes = {
|
|
|
28682
28766
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28683
28767
|
message: string
|
|
28684
28768
|
}
|
|
28769
|
+
| {
|
|
28770
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
28771
|
+
type: 'no_card_on_encoder'
|
|
28772
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28773
|
+
message: string
|
|
28774
|
+
}
|
|
28685
28775
|
}
|
|
28686
28776
|
| {
|
|
28687
28777
|
/** ID of the action attempt. */
|
|
@@ -29062,6 +29152,12 @@ export type Routes = {
|
|
|
29062
29152
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29063
29153
|
message: string
|
|
29064
29154
|
}
|
|
29155
|
+
| {
|
|
29156
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
29157
|
+
type: 'no_card_on_encoder'
|
|
29158
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29159
|
+
message: string
|
|
29160
|
+
}
|
|
29065
29161
|
}
|
|
29066
29162
|
| {
|
|
29067
29163
|
/** ID of the action attempt. */
|
|
@@ -32933,6 +33029,12 @@ export type Routes = {
|
|
|
32933
33029
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32934
33030
|
message: string
|
|
32935
33031
|
}
|
|
33032
|
+
| {
|
|
33033
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
33034
|
+
type: 'no_card_on_encoder'
|
|
33035
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33036
|
+
message: string
|
|
33037
|
+
}
|
|
32936
33038
|
}
|
|
32937
33039
|
| {
|
|
32938
33040
|
/** ID of the action attempt. */
|
|
@@ -33313,6 +33415,12 @@ export type Routes = {
|
|
|
33313
33415
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33314
33416
|
message: string
|
|
33315
33417
|
}
|
|
33418
|
+
| {
|
|
33419
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
33420
|
+
type: 'no_card_on_encoder'
|
|
33421
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33422
|
+
message: string
|
|
33423
|
+
}
|
|
33316
33424
|
}
|
|
33317
33425
|
| {
|
|
33318
33426
|
/** ID of the action attempt. */
|
|
@@ -34375,6 +34483,12 @@ export type Routes = {
|
|
|
34375
34483
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34376
34484
|
message: string
|
|
34377
34485
|
}
|
|
34486
|
+
| {
|
|
34487
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
34488
|
+
type: 'no_card_on_encoder'
|
|
34489
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34490
|
+
message: string
|
|
34491
|
+
}
|
|
34378
34492
|
}
|
|
34379
34493
|
| {
|
|
34380
34494
|
/** ID of the action attempt. */
|
|
@@ -34755,6 +34869,12 @@ export type Routes = {
|
|
|
34755
34869
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34756
34870
|
message: string
|
|
34757
34871
|
}
|
|
34872
|
+
| {
|
|
34873
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
34874
|
+
type: 'no_card_on_encoder'
|
|
34875
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34876
|
+
message: string
|
|
34877
|
+
}
|
|
34758
34878
|
}
|
|
34759
34879
|
| {
|
|
34760
34880
|
/** ID of the action attempt. */
|
|
@@ -53652,6 +53772,12 @@ export type Routes = {
|
|
|
53652
53772
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53653
53773
|
message: string
|
|
53654
53774
|
}
|
|
53775
|
+
| {
|
|
53776
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
53777
|
+
type: 'no_card_on_encoder'
|
|
53778
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53779
|
+
message: string
|
|
53780
|
+
}
|
|
53655
53781
|
}
|
|
53656
53782
|
| {
|
|
53657
53783
|
/** ID of the action attempt. */
|
|
@@ -54032,6 +54158,12 @@ export type Routes = {
|
|
|
54032
54158
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54033
54159
|
message: string
|
|
54034
54160
|
}
|
|
54161
|
+
| {
|
|
54162
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
54163
|
+
type: 'no_card_on_encoder'
|
|
54164
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54165
|
+
message: string
|
|
54166
|
+
}
|
|
54035
54167
|
}
|
|
54036
54168
|
| {
|
|
54037
54169
|
/** ID of the action attempt. */
|
|
@@ -55101,6 +55233,12 @@ export type Routes = {
|
|
|
55101
55233
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55102
55234
|
message: string
|
|
55103
55235
|
}
|
|
55236
|
+
| {
|
|
55237
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
55238
|
+
type: 'no_card_on_encoder'
|
|
55239
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55240
|
+
message: string
|
|
55241
|
+
}
|
|
55104
55242
|
}
|
|
55105
55243
|
| {
|
|
55106
55244
|
/** ID of the action attempt. */
|
|
@@ -55481,6 +55619,12 @@ export type Routes = {
|
|
|
55481
55619
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55482
55620
|
message: string
|
|
55483
55621
|
}
|
|
55622
|
+
| {
|
|
55623
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
55624
|
+
type: 'no_card_on_encoder'
|
|
55625
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55626
|
+
message: string
|
|
55627
|
+
}
|
|
55484
55628
|
}
|
|
55485
55629
|
| {
|
|
55486
55630
|
/** ID of the action attempt. */
|
|
@@ -56548,6 +56692,12 @@ export type Routes = {
|
|
|
56548
56692
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56549
56693
|
message: string
|
|
56550
56694
|
}
|
|
56695
|
+
| {
|
|
56696
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
56697
|
+
type: 'no_card_on_encoder'
|
|
56698
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56699
|
+
message: string
|
|
56700
|
+
}
|
|
56551
56701
|
}
|
|
56552
56702
|
| {
|
|
56553
56703
|
/** ID of the action attempt. */
|
|
@@ -56928,6 +57078,12 @@ export type Routes = {
|
|
|
56928
57078
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56929
57079
|
message: string
|
|
56930
57080
|
}
|
|
57081
|
+
| {
|
|
57082
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
57083
|
+
type: 'no_card_on_encoder'
|
|
57084
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57085
|
+
message: string
|
|
57086
|
+
}
|
|
56931
57087
|
}
|
|
56932
57088
|
| {
|
|
56933
57089
|
/** ID of the action attempt. */
|
|
@@ -57997,6 +58153,12 @@ export type Routes = {
|
|
|
57997
58153
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57998
58154
|
message: string
|
|
57999
58155
|
}
|
|
58156
|
+
| {
|
|
58157
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
58158
|
+
type: 'no_card_on_encoder'
|
|
58159
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58160
|
+
message: string
|
|
58161
|
+
}
|
|
58000
58162
|
}
|
|
58001
58163
|
| {
|
|
58002
58164
|
/** ID of the action attempt. */
|
|
@@ -58377,6 +58539,12 @@ export type Routes = {
|
|
|
58377
58539
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58378
58540
|
message: string
|
|
58379
58541
|
}
|
|
58542
|
+
| {
|
|
58543
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
58544
|
+
type: 'no_card_on_encoder'
|
|
58545
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58546
|
+
message: string
|
|
58547
|
+
}
|
|
58380
58548
|
}
|
|
58381
58549
|
| {
|
|
58382
58550
|
/** ID of the action attempt. */
|
|
@@ -62598,6 +62766,12 @@ export type Routes = {
|
|
|
62598
62766
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62599
62767
|
message: string
|
|
62600
62768
|
}
|
|
62769
|
+
| {
|
|
62770
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
62771
|
+
type: 'no_card_on_encoder'
|
|
62772
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62773
|
+
message: string
|
|
62774
|
+
}
|
|
62601
62775
|
}
|
|
62602
62776
|
| {
|
|
62603
62777
|
/** ID of the action attempt. */
|
|
@@ -62978,6 +63152,12 @@ export type Routes = {
|
|
|
62978
63152
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62979
63153
|
message: string
|
|
62980
63154
|
}
|
|
63155
|
+
| {
|
|
63156
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
63157
|
+
type: 'no_card_on_encoder'
|
|
63158
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63159
|
+
message: string
|
|
63160
|
+
}
|
|
62981
63161
|
}
|
|
62982
63162
|
| {
|
|
62983
63163
|
/** ID of the action attempt. */
|
|
@@ -64066,6 +64246,12 @@ export type Routes = {
|
|
|
64066
64246
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64067
64247
|
message: string
|
|
64068
64248
|
}
|
|
64249
|
+
| {
|
|
64250
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
64251
|
+
type: 'no_card_on_encoder'
|
|
64252
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64253
|
+
message: string
|
|
64254
|
+
}
|
|
64069
64255
|
}
|
|
64070
64256
|
| {
|
|
64071
64257
|
/** ID of the action attempt. */
|
|
@@ -64446,6 +64632,12 @@ export type Routes = {
|
|
|
64446
64632
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64447
64633
|
message: string
|
|
64448
64634
|
}
|
|
64635
|
+
| {
|
|
64636
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
64637
|
+
type: 'no_card_on_encoder'
|
|
64638
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64639
|
+
message: string
|
|
64640
|
+
}
|
|
64449
64641
|
}
|
|
64450
64642
|
| {
|
|
64451
64643
|
/** ID of the action attempt. */
|
|
@@ -65588,6 +65780,12 @@ export type Routes = {
|
|
|
65588
65780
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65589
65781
|
message: string
|
|
65590
65782
|
}
|
|
65783
|
+
| {
|
|
65784
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
65785
|
+
type: 'no_card_on_encoder'
|
|
65786
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65787
|
+
message: string
|
|
65788
|
+
}
|
|
65591
65789
|
}
|
|
65592
65790
|
| {
|
|
65593
65791
|
/** ID of the action attempt. */
|
|
@@ -65968,6 +66166,12 @@ export type Routes = {
|
|
|
65968
66166
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65969
66167
|
message: string
|
|
65970
66168
|
}
|
|
66169
|
+
| {
|
|
66170
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
66171
|
+
type: 'no_card_on_encoder'
|
|
66172
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66173
|
+
message: string
|
|
66174
|
+
}
|
|
65971
66175
|
}
|
|
65972
66176
|
| {
|
|
65973
66177
|
/** ID of the action attempt. */
|
|
@@ -73769,6 +73973,12 @@ export type Routes = {
|
|
|
73769
73973
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73770
73974
|
message: string
|
|
73771
73975
|
}
|
|
73976
|
+
| {
|
|
73977
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
73978
|
+
type: 'no_card_on_encoder'
|
|
73979
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73980
|
+
message: string
|
|
73981
|
+
}
|
|
73772
73982
|
}
|
|
73773
73983
|
| {
|
|
73774
73984
|
/** ID of the action attempt. */
|
|
@@ -74149,6 +74359,12 @@ export type Routes = {
|
|
|
74149
74359
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74150
74360
|
message: string
|
|
74151
74361
|
}
|
|
74362
|
+
| {
|
|
74363
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
74364
|
+
type: 'no_card_on_encoder'
|
|
74365
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74366
|
+
message: string
|
|
74367
|
+
}
|
|
74152
74368
|
}
|
|
74153
74369
|
| {
|
|
74154
74370
|
/** ID of the action attempt. */
|
|
@@ -75222,6 +75438,12 @@ export type Routes = {
|
|
|
75222
75438
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75223
75439
|
message: string
|
|
75224
75440
|
}
|
|
75441
|
+
| {
|
|
75442
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
75443
|
+
type: 'no_card_on_encoder'
|
|
75444
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75445
|
+
message: string
|
|
75446
|
+
}
|
|
75225
75447
|
}
|
|
75226
75448
|
| {
|
|
75227
75449
|
/** ID of the action attempt. */
|
|
@@ -75602,6 +75824,12 @@ export type Routes = {
|
|
|
75602
75824
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75603
75825
|
message: string
|
|
75604
75826
|
}
|
|
75827
|
+
| {
|
|
75828
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
75829
|
+
type: 'no_card_on_encoder'
|
|
75830
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75831
|
+
message: string
|
|
75832
|
+
}
|
|
75605
75833
|
}
|
|
75606
75834
|
| {
|
|
75607
75835
|
/** ID of the action attempt. */
|
|
@@ -76784,6 +77012,12 @@ export type Routes = {
|
|
|
76784
77012
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76785
77013
|
message: string
|
|
76786
77014
|
}
|
|
77015
|
+
| {
|
|
77016
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
77017
|
+
type: 'no_card_on_encoder'
|
|
77018
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
77019
|
+
message: string
|
|
77020
|
+
}
|
|
76787
77021
|
}
|
|
76788
77022
|
| {
|
|
76789
77023
|
/** ID of the action attempt. */
|
|
@@ -77164,6 +77398,12 @@ export type Routes = {
|
|
|
77164
77398
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
77165
77399
|
message: string
|
|
77166
77400
|
}
|
|
77401
|
+
| {
|
|
77402
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
77403
|
+
type: 'no_card_on_encoder'
|
|
77404
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
77405
|
+
message: string
|
|
77406
|
+
}
|
|
77167
77407
|
}
|
|
77168
77408
|
| {
|
|
77169
77409
|
/** ID of the action attempt. */
|
|
@@ -79790,6 +80030,12 @@ export type Routes = {
|
|
|
79790
80030
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
79791
80031
|
message: string
|
|
79792
80032
|
}
|
|
80033
|
+
| {
|
|
80034
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
80035
|
+
type: 'no_card_on_encoder'
|
|
80036
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80037
|
+
message: string
|
|
80038
|
+
}
|
|
79793
80039
|
}
|
|
79794
80040
|
| {
|
|
79795
80041
|
/** ID of the action attempt. */
|
|
@@ -80170,6 +80416,12 @@ export type Routes = {
|
|
|
80170
80416
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80171
80417
|
message: string
|
|
80172
80418
|
}
|
|
80419
|
+
| {
|
|
80420
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
80421
|
+
type: 'no_card_on_encoder'
|
|
80422
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80423
|
+
message: string
|
|
80424
|
+
}
|
|
80173
80425
|
}
|
|
80174
80426
|
| {
|
|
80175
80427
|
/** ID of the action attempt. */
|
|
@@ -81247,6 +81499,12 @@ export type Routes = {
|
|
|
81247
81499
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81248
81500
|
message: string
|
|
81249
81501
|
}
|
|
81502
|
+
| {
|
|
81503
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
81504
|
+
type: 'no_card_on_encoder'
|
|
81505
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81506
|
+
message: string
|
|
81507
|
+
}
|
|
81250
81508
|
}
|
|
81251
81509
|
| {
|
|
81252
81510
|
/** ID of the action attempt. */
|
|
@@ -81627,6 +81885,12 @@ export type Routes = {
|
|
|
81627
81885
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81628
81886
|
message: string
|
|
81629
81887
|
}
|
|
81888
|
+
| {
|
|
81889
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
81890
|
+
type: 'no_card_on_encoder'
|
|
81891
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81892
|
+
message: string
|
|
81893
|
+
}
|
|
81630
81894
|
}
|
|
81631
81895
|
| {
|
|
81632
81896
|
/** ID of the action attempt. */
|
|
@@ -85865,6 +86129,12 @@ export type Routes = {
|
|
|
85865
86129
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85866
86130
|
message: string
|
|
85867
86131
|
}
|
|
86132
|
+
| {
|
|
86133
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
86134
|
+
type: 'no_card_on_encoder'
|
|
86135
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86136
|
+
message: string
|
|
86137
|
+
}
|
|
85868
86138
|
}
|
|
85869
86139
|
| {
|
|
85870
86140
|
/** ID of the action attempt. */
|
|
@@ -86245,6 +86515,12 @@ export type Routes = {
|
|
|
86245
86515
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86246
86516
|
message: string
|
|
86247
86517
|
}
|
|
86518
|
+
| {
|
|
86519
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
86520
|
+
type: 'no_card_on_encoder'
|
|
86521
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86522
|
+
message: string
|
|
86523
|
+
}
|
|
86248
86524
|
}
|
|
86249
86525
|
| {
|
|
86250
86526
|
/** ID of the action attempt. */
|
|
@@ -87511,6 +87787,12 @@ export type Routes = {
|
|
|
87511
87787
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87512
87788
|
message: string
|
|
87513
87789
|
}
|
|
87790
|
+
| {
|
|
87791
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
87792
|
+
type: 'no_card_on_encoder'
|
|
87793
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87794
|
+
message: string
|
|
87795
|
+
}
|
|
87514
87796
|
}
|
|
87515
87797
|
| {
|
|
87516
87798
|
/** ID of the action attempt. */
|
|
@@ -87891,6 +88173,12 @@ export type Routes = {
|
|
|
87891
88173
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87892
88174
|
message: string
|
|
87893
88175
|
}
|
|
88176
|
+
| {
|
|
88177
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
88178
|
+
type: 'no_card_on_encoder'
|
|
88179
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88180
|
+
message: string
|
|
88181
|
+
}
|
|
87894
88182
|
}
|
|
87895
88183
|
| {
|
|
87896
88184
|
/** ID of the action attempt. */
|
|
@@ -88996,6 +89284,12 @@ export type Routes = {
|
|
|
88996
89284
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88997
89285
|
message: string
|
|
88998
89286
|
}
|
|
89287
|
+
| {
|
|
89288
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
89289
|
+
type: 'no_card_on_encoder'
|
|
89290
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89291
|
+
message: string
|
|
89292
|
+
}
|
|
88999
89293
|
}
|
|
89000
89294
|
| {
|
|
89001
89295
|
/** ID of the action attempt. */
|
|
@@ -89376,6 +89670,12 @@ export type Routes = {
|
|
|
89376
89670
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89377
89671
|
message: string
|
|
89378
89672
|
}
|
|
89673
|
+
| {
|
|
89674
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
89675
|
+
type: 'no_card_on_encoder'
|
|
89676
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89677
|
+
message: string
|
|
89678
|
+
}
|
|
89379
89679
|
}
|
|
89380
89680
|
| {
|
|
89381
89681
|
/** ID of the action attempt. */
|
|
@@ -90594,6 +90894,12 @@ export type Routes = {
|
|
|
90594
90894
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90595
90895
|
message: string
|
|
90596
90896
|
}
|
|
90897
|
+
| {
|
|
90898
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
90899
|
+
type: 'no_card_on_encoder'
|
|
90900
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90901
|
+
message: string
|
|
90902
|
+
}
|
|
90597
90903
|
}
|
|
90598
90904
|
| {
|
|
90599
90905
|
/** ID of the action attempt. */
|
|
@@ -90974,6 +91280,12 @@ export type Routes = {
|
|
|
90974
91280
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90975
91281
|
message: string
|
|
90976
91282
|
}
|
|
91283
|
+
| {
|
|
91284
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
91285
|
+
type: 'no_card_on_encoder'
|
|
91286
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
91287
|
+
message: string
|
|
91288
|
+
}
|
|
90977
91289
|
}
|
|
90978
91290
|
| {
|
|
90979
91291
|
/** ID of the action attempt. */
|
|
@@ -92026,6 +92338,12 @@ export type Routes = {
|
|
|
92026
92338
|
search?: string | undefined
|
|
92027
92339
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
|
92028
92340
|
credential_manager_acs_system_id?: string | undefined
|
|
92341
|
+
/** Maximum number of records to return per page. */
|
|
92342
|
+
limit?: number
|
|
92343
|
+
/** Timestamp by which to limit returned user identities. Returns user identities created before this timestamp. */
|
|
92344
|
+
created_before?: Date | undefined
|
|
92345
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
92346
|
+
page_cursor?: (string | undefined) | null
|
|
92029
92347
|
}
|
|
92030
92348
|
formData: {}
|
|
92031
92349
|
jsonResponse: {
|
|
@@ -92079,6 +92397,15 @@ export type Routes = {
|
|
|
92079
92397
|
/** Array of access system user IDs associated with the user identity. */
|
|
92080
92398
|
acs_user_ids: string[]
|
|
92081
92399
|
}[]
|
|
92400
|
+
/** Information about the current page of results. */
|
|
92401
|
+
pagination: {
|
|
92402
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
92403
|
+
next_page_cursor: string | null
|
|
92404
|
+
/** Indicates whether there is another page of results after this one. */
|
|
92405
|
+
has_next_page: boolean
|
|
92406
|
+
/** URL to get the next page of results. */
|
|
92407
|
+
next_page_url: string | null
|
|
92408
|
+
}
|
|
92082
92409
|
}
|
|
92083
92410
|
}
|
|
92084
92411
|
'/user_identities/list_accessible_devices': {
|
|
@@ -95674,6 +96001,12 @@ export type Routes = {
|
|
|
95674
96001
|
commonParams: {
|
|
95675
96002
|
/** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
|
|
95676
96003
|
search?: string | undefined
|
|
96004
|
+
/** Maximum number of records to return per page. */
|
|
96005
|
+
limit?: number
|
|
96006
|
+
/** Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp. */
|
|
96007
|
+
created_before?: Date | undefined
|
|
96008
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
96009
|
+
page_cursor?: (string | undefined) | null
|
|
95677
96010
|
}
|
|
95678
96011
|
formData: {}
|
|
95679
96012
|
jsonResponse: {
|
|
@@ -95725,6 +96058,15 @@ export type Routes = {
|
|
|
95725
96058
|
/** Array of access system user IDs associated with the user identity. */
|
|
95726
96059
|
acs_user_ids: string[]
|
|
95727
96060
|
}[]
|
|
96061
|
+
/** Information about the current page of results. */
|
|
96062
|
+
pagination: {
|
|
96063
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
96064
|
+
next_page_cursor: string | null
|
|
96065
|
+
/** Indicates whether there is another page of results after this one. */
|
|
96066
|
+
has_next_page: boolean
|
|
96067
|
+
/** URL to get the next page of results. */
|
|
96068
|
+
next_page_url: string | null
|
|
96069
|
+
}
|
|
95728
96070
|
}
|
|
95729
96071
|
}
|
|
95730
96072
|
'/user_identities/unmanaged/update': {
|
|
@@ -99185,6 +99527,12 @@ export type Routes = {
|
|
|
99185
99527
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99186
99528
|
message: string
|
|
99187
99529
|
}
|
|
99530
|
+
| {
|
|
99531
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
99532
|
+
type: 'no_card_on_encoder'
|
|
99533
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99534
|
+
message: string
|
|
99535
|
+
}
|
|
99188
99536
|
}
|
|
99189
99537
|
| {
|
|
99190
99538
|
/** ID of the action attempt. */
|
|
@@ -99569,6 +99917,12 @@ export type Routes = {
|
|
|
99569
99917
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99570
99918
|
message: string
|
|
99571
99919
|
}
|
|
99920
|
+
| {
|
|
99921
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
99922
|
+
type: 'no_card_on_encoder'
|
|
99923
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99924
|
+
message: string
|
|
99925
|
+
}
|
|
99572
99926
|
}
|
|
99573
99927
|
| {
|
|
99574
99928
|
/** ID of the action attempt. */
|
|
@@ -105113,6 +105467,12 @@ export type Routes = {
|
|
|
105113
105467
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105114
105468
|
message: string
|
|
105115
105469
|
}
|
|
105470
|
+
| {
|
|
105471
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
105472
|
+
type: 'no_card_on_encoder'
|
|
105473
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105474
|
+
message: string
|
|
105475
|
+
}
|
|
105116
105476
|
}
|
|
105117
105477
|
| {
|
|
105118
105478
|
/** ID of the action attempt. */
|
|
@@ -105493,6 +105853,12 @@ export type Routes = {
|
|
|
105493
105853
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105494
105854
|
message: string
|
|
105495
105855
|
}
|
|
105856
|
+
| {
|
|
105857
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
105858
|
+
type: 'no_card_on_encoder'
|
|
105859
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105860
|
+
message: string
|
|
105861
|
+
}
|
|
105496
105862
|
}
|
|
105497
105863
|
| {
|
|
105498
105864
|
/** ID of the action attempt. */
|