@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
|
@@ -475,6 +475,11 @@ export type Routes = {
|
|
|
475
475
|
type: 'no_credential_on_encoder';
|
|
476
476
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
477
477
|
message: string;
|
|
478
|
+
} | {
|
|
479
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
480
|
+
type: 'no_card_on_encoder';
|
|
481
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
482
|
+
message: string;
|
|
478
483
|
};
|
|
479
484
|
} | {
|
|
480
485
|
/** ID of the action attempt. */
|
|
@@ -789,6 +794,11 @@ export type Routes = {
|
|
|
789
794
|
type: 'credential_cannot_be_reissued';
|
|
790
795
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
791
796
|
message: string;
|
|
797
|
+
} | {
|
|
798
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
799
|
+
type: 'no_card_on_encoder';
|
|
800
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
801
|
+
message: string;
|
|
792
802
|
};
|
|
793
803
|
} | {
|
|
794
804
|
/** ID of the action attempt. */
|
|
@@ -2785,6 +2795,11 @@ export type Routes = {
|
|
|
2785
2795
|
type: 'no_credential_on_encoder';
|
|
2786
2796
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2787
2797
|
message: string;
|
|
2798
|
+
} | {
|
|
2799
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
2800
|
+
type: 'no_card_on_encoder';
|
|
2801
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2802
|
+
message: string;
|
|
2788
2803
|
};
|
|
2789
2804
|
} | {
|
|
2790
2805
|
/** ID of the action attempt. */
|
|
@@ -3099,6 +3114,11 @@ export type Routes = {
|
|
|
3099
3114
|
type: 'credential_cannot_be_reissued';
|
|
3100
3115
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3101
3116
|
message: string;
|
|
3117
|
+
} | {
|
|
3118
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
3119
|
+
type: 'no_card_on_encoder';
|
|
3120
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3121
|
+
message: string;
|
|
3102
3122
|
};
|
|
3103
3123
|
} | {
|
|
3104
3124
|
/** ID of the action attempt. */
|
|
@@ -6673,6 +6693,11 @@ export type Routes = {
|
|
|
6673
6693
|
type: 'no_credential_on_encoder';
|
|
6674
6694
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6675
6695
|
message: string;
|
|
6696
|
+
} | {
|
|
6697
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
6698
|
+
type: 'no_card_on_encoder';
|
|
6699
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6700
|
+
message: string;
|
|
6676
6701
|
};
|
|
6677
6702
|
} | {
|
|
6678
6703
|
/** ID of the action attempt. */
|
|
@@ -6987,6 +7012,11 @@ export type Routes = {
|
|
|
6987
7012
|
type: 'credential_cannot_be_reissued';
|
|
6988
7013
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6989
7014
|
message: string;
|
|
7015
|
+
} | {
|
|
7016
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
7017
|
+
type: 'no_card_on_encoder';
|
|
7018
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7019
|
+
message: string;
|
|
6990
7020
|
};
|
|
6991
7021
|
} | {
|
|
6992
7022
|
/** ID of the action attempt. */
|
|
@@ -9004,6 +9034,11 @@ export type Routes = {
|
|
|
9004
9034
|
type: 'no_credential_on_encoder';
|
|
9005
9035
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9006
9036
|
message: string;
|
|
9037
|
+
} | {
|
|
9038
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
9039
|
+
type: 'no_card_on_encoder';
|
|
9040
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9041
|
+
message: string;
|
|
9007
9042
|
};
|
|
9008
9043
|
} | {
|
|
9009
9044
|
/** ID of the action attempt. */
|
|
@@ -9318,6 +9353,11 @@ export type Routes = {
|
|
|
9318
9353
|
type: 'credential_cannot_be_reissued';
|
|
9319
9354
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9320
9355
|
message: string;
|
|
9356
|
+
} | {
|
|
9357
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
9358
|
+
type: 'no_card_on_encoder';
|
|
9359
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9360
|
+
message: string;
|
|
9321
9361
|
};
|
|
9322
9362
|
} | {
|
|
9323
9363
|
/** ID of the action attempt. */
|
|
@@ -12517,6 +12557,11 @@ export type Routes = {
|
|
|
12517
12557
|
type: 'no_credential_on_encoder';
|
|
12518
12558
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
12519
12559
|
message: string;
|
|
12560
|
+
} | {
|
|
12561
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
12562
|
+
type: 'no_card_on_encoder';
|
|
12563
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
12564
|
+
message: string;
|
|
12520
12565
|
};
|
|
12521
12566
|
} | {
|
|
12522
12567
|
/** ID of the action attempt. */
|
|
@@ -12831,6 +12876,11 @@ export type Routes = {
|
|
|
12831
12876
|
type: 'credential_cannot_be_reissued';
|
|
12832
12877
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
12833
12878
|
message: string;
|
|
12879
|
+
} | {
|
|
12880
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
12881
|
+
type: 'no_card_on_encoder';
|
|
12882
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
12883
|
+
message: string;
|
|
12834
12884
|
};
|
|
12835
12885
|
} | {
|
|
12836
12886
|
/** ID of the action attempt. */
|
|
@@ -15902,6 +15952,11 @@ export type Routes = {
|
|
|
15902
15952
|
type: 'no_credential_on_encoder';
|
|
15903
15953
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15904
15954
|
message: string;
|
|
15955
|
+
} | {
|
|
15956
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
15957
|
+
type: 'no_card_on_encoder';
|
|
15958
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15959
|
+
message: string;
|
|
15905
15960
|
};
|
|
15906
15961
|
} | {
|
|
15907
15962
|
/** ID of the action attempt. */
|
|
@@ -16216,6 +16271,11 @@ export type Routes = {
|
|
|
16216
16271
|
type: 'credential_cannot_be_reissued';
|
|
16217
16272
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16218
16273
|
message: string;
|
|
16274
|
+
} | {
|
|
16275
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
16276
|
+
type: 'no_card_on_encoder';
|
|
16277
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16278
|
+
message: string;
|
|
16219
16279
|
};
|
|
16220
16280
|
} | {
|
|
16221
16281
|
/** ID of the action attempt. */
|
|
@@ -23295,6 +23355,11 @@ export type Routes = {
|
|
|
23295
23355
|
type: 'no_credential_on_encoder';
|
|
23296
23356
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23297
23357
|
message: string;
|
|
23358
|
+
} | {
|
|
23359
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
23360
|
+
type: 'no_card_on_encoder';
|
|
23361
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23362
|
+
message: string;
|
|
23298
23363
|
};
|
|
23299
23364
|
} | {
|
|
23300
23365
|
/** ID of the action attempt. */
|
|
@@ -23609,6 +23674,11 @@ export type Routes = {
|
|
|
23609
23674
|
type: 'credential_cannot_be_reissued';
|
|
23610
23675
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23611
23676
|
message: string;
|
|
23677
|
+
} | {
|
|
23678
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
23679
|
+
type: 'no_card_on_encoder';
|
|
23680
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23681
|
+
message: string;
|
|
23612
23682
|
};
|
|
23613
23683
|
} | {
|
|
23614
23684
|
/** ID of the action attempt. */
|
|
@@ -24659,6 +24729,11 @@ export type Routes = {
|
|
|
24659
24729
|
type: 'no_credential_on_encoder';
|
|
24660
24730
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24661
24731
|
message: string;
|
|
24732
|
+
} | {
|
|
24733
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
24734
|
+
type: 'no_card_on_encoder';
|
|
24735
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24736
|
+
message: string;
|
|
24662
24737
|
};
|
|
24663
24738
|
} | {
|
|
24664
24739
|
/** ID of the action attempt. */
|
|
@@ -24973,6 +25048,11 @@ export type Routes = {
|
|
|
24973
25048
|
type: 'credential_cannot_be_reissued';
|
|
24974
25049
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24975
25050
|
message: string;
|
|
25051
|
+
} | {
|
|
25052
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
25053
|
+
type: 'no_card_on_encoder';
|
|
25054
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25055
|
+
message: string;
|
|
24976
25056
|
};
|
|
24977
25057
|
} | {
|
|
24978
25058
|
/** ID of the action attempt. */
|
|
@@ -28287,6 +28367,11 @@ export type Routes = {
|
|
|
28287
28367
|
type: 'no_credential_on_encoder';
|
|
28288
28368
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28289
28369
|
message: string;
|
|
28370
|
+
} | {
|
|
28371
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
28372
|
+
type: 'no_card_on_encoder';
|
|
28373
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28374
|
+
message: string;
|
|
28290
28375
|
};
|
|
28291
28376
|
} | {
|
|
28292
28377
|
/** ID of the action attempt. */
|
|
@@ -28601,6 +28686,11 @@ export type Routes = {
|
|
|
28601
28686
|
type: 'credential_cannot_be_reissued';
|
|
28602
28687
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28603
28688
|
message: string;
|
|
28689
|
+
} | {
|
|
28690
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
28691
|
+
type: 'no_card_on_encoder';
|
|
28692
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28693
|
+
message: string;
|
|
28604
28694
|
};
|
|
28605
28695
|
} | {
|
|
28606
28696
|
/** ID of the action attempt. */
|
|
@@ -29540,6 +29630,11 @@ export type Routes = {
|
|
|
29540
29630
|
type: 'no_credential_on_encoder';
|
|
29541
29631
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29542
29632
|
message: string;
|
|
29633
|
+
} | {
|
|
29634
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
29635
|
+
type: 'no_card_on_encoder';
|
|
29636
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29637
|
+
message: string;
|
|
29543
29638
|
};
|
|
29544
29639
|
} | {
|
|
29545
29640
|
/** ID of the action attempt. */
|
|
@@ -29854,6 +29949,11 @@ export type Routes = {
|
|
|
29854
29949
|
type: 'credential_cannot_be_reissued';
|
|
29855
29950
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29856
29951
|
message: string;
|
|
29952
|
+
} | {
|
|
29953
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
29954
|
+
type: 'no_card_on_encoder';
|
|
29955
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29956
|
+
message: string;
|
|
29857
29957
|
};
|
|
29858
29958
|
} | {
|
|
29859
29959
|
/** ID of the action attempt. */
|
|
@@ -44918,6 +45018,11 @@ export type Routes = {
|
|
|
44918
45018
|
type: 'no_credential_on_encoder';
|
|
44919
45019
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44920
45020
|
message: string;
|
|
45021
|
+
} | {
|
|
45022
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
45023
|
+
type: 'no_card_on_encoder';
|
|
45024
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
45025
|
+
message: string;
|
|
44921
45026
|
};
|
|
44922
45027
|
} | {
|
|
44923
45028
|
/** ID of the action attempt. */
|
|
@@ -45232,6 +45337,11 @@ export type Routes = {
|
|
|
45232
45337
|
type: 'credential_cannot_be_reissued';
|
|
45233
45338
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
45234
45339
|
message: string;
|
|
45340
|
+
} | {
|
|
45341
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
45342
|
+
type: 'no_card_on_encoder';
|
|
45343
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
45344
|
+
message: string;
|
|
45235
45345
|
};
|
|
45236
45346
|
} | {
|
|
45237
45347
|
/** ID of the action attempt. */
|
|
@@ -46178,6 +46288,11 @@ export type Routes = {
|
|
|
46178
46288
|
type: 'no_credential_on_encoder';
|
|
46179
46289
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
46180
46290
|
message: string;
|
|
46291
|
+
} | {
|
|
46292
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
46293
|
+
type: 'no_card_on_encoder';
|
|
46294
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
46295
|
+
message: string;
|
|
46181
46296
|
};
|
|
46182
46297
|
} | {
|
|
46183
46298
|
/** ID of the action attempt. */
|
|
@@ -46492,6 +46607,11 @@ export type Routes = {
|
|
|
46492
46607
|
type: 'credential_cannot_be_reissued';
|
|
46493
46608
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
46494
46609
|
message: string;
|
|
46610
|
+
} | {
|
|
46611
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
46612
|
+
type: 'no_card_on_encoder';
|
|
46613
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
46614
|
+
message: string;
|
|
46495
46615
|
};
|
|
46496
46616
|
} | {
|
|
46497
46617
|
/** ID of the action attempt. */
|
|
@@ -47436,6 +47556,11 @@ export type Routes = {
|
|
|
47436
47556
|
type: 'no_credential_on_encoder';
|
|
47437
47557
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47438
47558
|
message: string;
|
|
47559
|
+
} | {
|
|
47560
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
47561
|
+
type: 'no_card_on_encoder';
|
|
47562
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47563
|
+
message: string;
|
|
47439
47564
|
};
|
|
47440
47565
|
} | {
|
|
47441
47566
|
/** ID of the action attempt. */
|
|
@@ -47750,6 +47875,11 @@ export type Routes = {
|
|
|
47750
47875
|
type: 'credential_cannot_be_reissued';
|
|
47751
47876
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47752
47877
|
message: string;
|
|
47878
|
+
} | {
|
|
47879
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
47880
|
+
type: 'no_card_on_encoder';
|
|
47881
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47882
|
+
message: string;
|
|
47753
47883
|
};
|
|
47754
47884
|
} | {
|
|
47755
47885
|
/** ID of the action attempt. */
|
|
@@ -48696,6 +48826,11 @@ export type Routes = {
|
|
|
48696
48826
|
type: 'no_credential_on_encoder';
|
|
48697
48827
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48698
48828
|
message: string;
|
|
48829
|
+
} | {
|
|
48830
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
48831
|
+
type: 'no_card_on_encoder';
|
|
48832
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48833
|
+
message: string;
|
|
48699
48834
|
};
|
|
48700
48835
|
} | {
|
|
48701
48836
|
/** ID of the action attempt. */
|
|
@@ -49010,6 +49145,11 @@ export type Routes = {
|
|
|
49010
49145
|
type: 'credential_cannot_be_reissued';
|
|
49011
49146
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49012
49147
|
message: string;
|
|
49148
|
+
} | {
|
|
49149
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
49150
|
+
type: 'no_card_on_encoder';
|
|
49151
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49152
|
+
message: string;
|
|
49013
49153
|
};
|
|
49014
49154
|
} | {
|
|
49015
49155
|
/** ID of the action attempt. */
|
|
@@ -52442,6 +52582,11 @@ export type Routes = {
|
|
|
52442
52582
|
type: 'no_credential_on_encoder';
|
|
52443
52583
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52444
52584
|
message: string;
|
|
52585
|
+
} | {
|
|
52586
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
52587
|
+
type: 'no_card_on_encoder';
|
|
52588
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52589
|
+
message: string;
|
|
52445
52590
|
};
|
|
52446
52591
|
} | {
|
|
52447
52592
|
/** ID of the action attempt. */
|
|
@@ -52756,6 +52901,11 @@ export type Routes = {
|
|
|
52756
52901
|
type: 'credential_cannot_be_reissued';
|
|
52757
52902
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52758
52903
|
message: string;
|
|
52904
|
+
} | {
|
|
52905
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
52906
|
+
type: 'no_card_on_encoder';
|
|
52907
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52908
|
+
message: string;
|
|
52759
52909
|
};
|
|
52760
52910
|
} | {
|
|
52761
52911
|
/** ID of the action attempt. */
|
|
@@ -53721,6 +53871,11 @@ export type Routes = {
|
|
|
53721
53871
|
type: 'no_credential_on_encoder';
|
|
53722
53872
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53723
53873
|
message: string;
|
|
53874
|
+
} | {
|
|
53875
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
53876
|
+
type: 'no_card_on_encoder';
|
|
53877
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53878
|
+
message: string;
|
|
53724
53879
|
};
|
|
53725
53880
|
} | {
|
|
53726
53881
|
/** ID of the action attempt. */
|
|
@@ -54035,6 +54190,11 @@ export type Routes = {
|
|
|
54035
54190
|
type: 'credential_cannot_be_reissued';
|
|
54036
54191
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54037
54192
|
message: string;
|
|
54193
|
+
} | {
|
|
54194
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
54195
|
+
type: 'no_card_on_encoder';
|
|
54196
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54197
|
+
message: string;
|
|
54038
54198
|
};
|
|
54039
54199
|
} | {
|
|
54040
54200
|
/** ID of the action attempt. */
|
|
@@ -55054,6 +55214,11 @@ export type Routes = {
|
|
|
55054
55214
|
type: 'no_credential_on_encoder';
|
|
55055
55215
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55056
55216
|
message: string;
|
|
55217
|
+
} | {
|
|
55218
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
55219
|
+
type: 'no_card_on_encoder';
|
|
55220
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55221
|
+
message: string;
|
|
55057
55222
|
};
|
|
55058
55223
|
} | {
|
|
55059
55224
|
/** ID of the action attempt. */
|
|
@@ -55368,6 +55533,11 @@ export type Routes = {
|
|
|
55368
55533
|
type: 'credential_cannot_be_reissued';
|
|
55369
55534
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55370
55535
|
message: string;
|
|
55536
|
+
} | {
|
|
55537
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
55538
|
+
type: 'no_card_on_encoder';
|
|
55539
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55540
|
+
message: string;
|
|
55371
55541
|
};
|
|
55372
55542
|
} | {
|
|
55373
55543
|
/** ID of the action attempt. */
|
|
@@ -61852,6 +62022,11 @@ export type Routes = {
|
|
|
61852
62022
|
type: 'no_credential_on_encoder';
|
|
61853
62023
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61854
62024
|
message: string;
|
|
62025
|
+
} | {
|
|
62026
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
62027
|
+
type: 'no_card_on_encoder';
|
|
62028
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62029
|
+
message: string;
|
|
61855
62030
|
};
|
|
61856
62031
|
} | {
|
|
61857
62032
|
/** ID of the action attempt. */
|
|
@@ -62166,6 +62341,11 @@ export type Routes = {
|
|
|
62166
62341
|
type: 'credential_cannot_be_reissued';
|
|
62167
62342
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62168
62343
|
message: string;
|
|
62344
|
+
} | {
|
|
62345
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
62346
|
+
type: 'no_card_on_encoder';
|
|
62347
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62348
|
+
message: string;
|
|
62169
62349
|
};
|
|
62170
62350
|
} | {
|
|
62171
62351
|
/** ID of the action attempt. */
|
|
@@ -63116,6 +63296,11 @@ export type Routes = {
|
|
|
63116
63296
|
type: 'no_credential_on_encoder';
|
|
63117
63297
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63118
63298
|
message: string;
|
|
63299
|
+
} | {
|
|
63300
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
63301
|
+
type: 'no_card_on_encoder';
|
|
63302
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63303
|
+
message: string;
|
|
63119
63304
|
};
|
|
63120
63305
|
} | {
|
|
63121
63306
|
/** ID of the action attempt. */
|
|
@@ -63430,6 +63615,11 @@ export type Routes = {
|
|
|
63430
63615
|
type: 'credential_cannot_be_reissued';
|
|
63431
63616
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63432
63617
|
message: string;
|
|
63618
|
+
} | {
|
|
63619
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
63620
|
+
type: 'no_card_on_encoder';
|
|
63621
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63622
|
+
message: string;
|
|
63433
63623
|
};
|
|
63434
63624
|
} | {
|
|
63435
63625
|
/** ID of the action attempt. */
|
|
@@ -64483,6 +64673,11 @@ export type Routes = {
|
|
|
64483
64673
|
type: 'no_credential_on_encoder';
|
|
64484
64674
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64485
64675
|
message: string;
|
|
64676
|
+
} | {
|
|
64677
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
64678
|
+
type: 'no_card_on_encoder';
|
|
64679
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64680
|
+
message: string;
|
|
64486
64681
|
};
|
|
64487
64682
|
} | {
|
|
64488
64683
|
/** ID of the action attempt. */
|
|
@@ -64797,6 +64992,11 @@ export type Routes = {
|
|
|
64797
64992
|
type: 'credential_cannot_be_reissued';
|
|
64798
64993
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64799
64994
|
message: string;
|
|
64995
|
+
} | {
|
|
64996
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
64997
|
+
type: 'no_card_on_encoder';
|
|
64998
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64999
|
+
message: string;
|
|
64800
65000
|
};
|
|
64801
65001
|
} | {
|
|
64802
65002
|
/** ID of the action attempt. */
|
|
@@ -66990,6 +67190,11 @@ export type Routes = {
|
|
|
66990
67190
|
type: 'no_credential_on_encoder';
|
|
66991
67191
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66992
67192
|
message: string;
|
|
67193
|
+
} | {
|
|
67194
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
67195
|
+
type: 'no_card_on_encoder';
|
|
67196
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67197
|
+
message: string;
|
|
66993
67198
|
};
|
|
66994
67199
|
} | {
|
|
66995
67200
|
/** ID of the action attempt. */
|
|
@@ -67304,6 +67509,11 @@ export type Routes = {
|
|
|
67304
67509
|
type: 'credential_cannot_be_reissued';
|
|
67305
67510
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67306
67511
|
message: string;
|
|
67512
|
+
} | {
|
|
67513
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
67514
|
+
type: 'no_card_on_encoder';
|
|
67515
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67516
|
+
message: string;
|
|
67307
67517
|
};
|
|
67308
67518
|
} | {
|
|
67309
67519
|
/** ID of the action attempt. */
|
|
@@ -68258,6 +68468,11 @@ export type Routes = {
|
|
|
68258
68468
|
type: 'no_credential_on_encoder';
|
|
68259
68469
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68260
68470
|
message: string;
|
|
68471
|
+
} | {
|
|
68472
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
68473
|
+
type: 'no_card_on_encoder';
|
|
68474
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68475
|
+
message: string;
|
|
68261
68476
|
};
|
|
68262
68477
|
} | {
|
|
68263
68478
|
/** ID of the action attempt. */
|
|
@@ -68572,6 +68787,11 @@ export type Routes = {
|
|
|
68572
68787
|
type: 'credential_cannot_be_reissued';
|
|
68573
68788
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68574
68789
|
message: string;
|
|
68790
|
+
} | {
|
|
68791
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
68792
|
+
type: 'no_card_on_encoder';
|
|
68793
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68794
|
+
message: string;
|
|
68575
68795
|
};
|
|
68576
68796
|
} | {
|
|
68577
68797
|
/** ID of the action attempt. */
|
|
@@ -71994,6 +72214,11 @@ export type Routes = {
|
|
|
71994
72214
|
type: 'no_credential_on_encoder';
|
|
71995
72215
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71996
72216
|
message: string;
|
|
72217
|
+
} | {
|
|
72218
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
72219
|
+
type: 'no_card_on_encoder';
|
|
72220
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72221
|
+
message: string;
|
|
71997
72222
|
};
|
|
71998
72223
|
} | {
|
|
71999
72224
|
/** ID of the action attempt. */
|
|
@@ -72308,6 +72533,11 @@ export type Routes = {
|
|
|
72308
72533
|
type: 'credential_cannot_be_reissued';
|
|
72309
72534
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72310
72535
|
message: string;
|
|
72536
|
+
} | {
|
|
72537
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
72538
|
+
type: 'no_card_on_encoder';
|
|
72539
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72540
|
+
message: string;
|
|
72311
72541
|
};
|
|
72312
72542
|
} | {
|
|
72313
72543
|
/** ID of the action attempt. */
|
|
@@ -73451,6 +73681,11 @@ export type Routes = {
|
|
|
73451
73681
|
type: 'no_credential_on_encoder';
|
|
73452
73682
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73453
73683
|
message: string;
|
|
73684
|
+
} | {
|
|
73685
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
73686
|
+
type: 'no_card_on_encoder';
|
|
73687
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73688
|
+
message: string;
|
|
73454
73689
|
};
|
|
73455
73690
|
} | {
|
|
73456
73691
|
/** ID of the action attempt. */
|
|
@@ -73765,6 +74000,11 @@ export type Routes = {
|
|
|
73765
74000
|
type: 'credential_cannot_be_reissued';
|
|
73766
74001
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73767
74002
|
message: string;
|
|
74003
|
+
} | {
|
|
74004
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
74005
|
+
type: 'no_card_on_encoder';
|
|
74006
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74007
|
+
message: string;
|
|
73768
74008
|
};
|
|
73769
74009
|
} | {
|
|
73770
74010
|
/** ID of the action attempt. */
|
|
@@ -74742,6 +74982,11 @@ export type Routes = {
|
|
|
74742
74982
|
type: 'no_credential_on_encoder';
|
|
74743
74983
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74744
74984
|
message: string;
|
|
74985
|
+
} | {
|
|
74986
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
74987
|
+
type: 'no_card_on_encoder';
|
|
74988
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74989
|
+
message: string;
|
|
74745
74990
|
};
|
|
74746
74991
|
} | {
|
|
74747
74992
|
/** ID of the action attempt. */
|
|
@@ -75056,6 +75301,11 @@ export type Routes = {
|
|
|
75056
75301
|
type: 'credential_cannot_be_reissued';
|
|
75057
75302
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75058
75303
|
message: string;
|
|
75304
|
+
} | {
|
|
75305
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
75306
|
+
type: 'no_card_on_encoder';
|
|
75307
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75308
|
+
message: string;
|
|
75059
75309
|
};
|
|
75060
75310
|
} | {
|
|
75061
75311
|
/** ID of the action attempt. */
|
|
@@ -76141,6 +76391,11 @@ export type Routes = {
|
|
|
76141
76391
|
type: 'no_credential_on_encoder';
|
|
76142
76392
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76143
76393
|
message: string;
|
|
76394
|
+
} | {
|
|
76395
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
76396
|
+
type: 'no_card_on_encoder';
|
|
76397
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76398
|
+
message: string;
|
|
76144
76399
|
};
|
|
76145
76400
|
} | {
|
|
76146
76401
|
/** ID of the action attempt. */
|
|
@@ -76455,6 +76710,11 @@ export type Routes = {
|
|
|
76455
76710
|
type: 'credential_cannot_be_reissued';
|
|
76456
76711
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76457
76712
|
message: string;
|
|
76713
|
+
} | {
|
|
76714
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
76715
|
+
type: 'no_card_on_encoder';
|
|
76716
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76717
|
+
message: string;
|
|
76458
76718
|
};
|
|
76459
76719
|
} | {
|
|
76460
76720
|
/** ID of the action attempt. */
|
|
@@ -77432,6 +77692,12 @@ export type Routes = {
|
|
|
77432
77692
|
search?: string | undefined;
|
|
77433
77693
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
|
77434
77694
|
credential_manager_acs_system_id?: string | undefined;
|
|
77695
|
+
/** Maximum number of records to return per page. */
|
|
77696
|
+
limit?: number;
|
|
77697
|
+
/** Timestamp by which to limit returned user identities. Returns user identities created before this timestamp. */
|
|
77698
|
+
created_before?: Date | undefined;
|
|
77699
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
77700
|
+
page_cursor?: (string | undefined) | null;
|
|
77435
77701
|
};
|
|
77436
77702
|
formData: {};
|
|
77437
77703
|
jsonResponse: {
|
|
@@ -77482,6 +77748,15 @@ export type Routes = {
|
|
|
77482
77748
|
/** Array of access system user IDs associated with the user identity. */
|
|
77483
77749
|
acs_user_ids: string[];
|
|
77484
77750
|
}[];
|
|
77751
|
+
/** Information about the current page of results. */
|
|
77752
|
+
pagination: {
|
|
77753
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
77754
|
+
next_page_cursor: string | null;
|
|
77755
|
+
/** Indicates whether there is another page of results after this one. */
|
|
77756
|
+
has_next_page: boolean;
|
|
77757
|
+
/** URL to get the next page of results. */
|
|
77758
|
+
next_page_url: string | null;
|
|
77759
|
+
};
|
|
77485
77760
|
};
|
|
77486
77761
|
};
|
|
77487
77762
|
'/user_identities/list_accessible_devices': {
|
|
@@ -80372,6 +80647,12 @@ export type Routes = {
|
|
|
80372
80647
|
commonParams: {
|
|
80373
80648
|
/** 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`. */
|
|
80374
80649
|
search?: string | undefined;
|
|
80650
|
+
/** Maximum number of records to return per page. */
|
|
80651
|
+
limit?: number;
|
|
80652
|
+
/** Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp. */
|
|
80653
|
+
created_before?: Date | undefined;
|
|
80654
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
80655
|
+
page_cursor?: (string | undefined) | null;
|
|
80375
80656
|
};
|
|
80376
80657
|
formData: {};
|
|
80377
80658
|
jsonResponse: {
|
|
@@ -80420,6 +80701,15 @@ export type Routes = {
|
|
|
80420
80701
|
/** Array of access system user IDs associated with the user identity. */
|
|
80421
80702
|
acs_user_ids: string[];
|
|
80422
80703
|
}[];
|
|
80704
|
+
/** Information about the current page of results. */
|
|
80705
|
+
pagination: {
|
|
80706
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
80707
|
+
next_page_cursor: string | null;
|
|
80708
|
+
/** Indicates whether there is another page of results after this one. */
|
|
80709
|
+
has_next_page: boolean;
|
|
80710
|
+
/** URL to get the next page of results. */
|
|
80711
|
+
next_page_url: string | null;
|
|
80712
|
+
};
|
|
80423
80713
|
};
|
|
80424
80714
|
};
|
|
80425
80715
|
'/user_identities/unmanaged/update': {
|
|
@@ -83232,6 +83522,11 @@ export type Routes = {
|
|
|
83232
83522
|
type: 'no_credential_on_encoder';
|
|
83233
83523
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83234
83524
|
message: string;
|
|
83525
|
+
} | {
|
|
83526
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
83527
|
+
type: 'no_card_on_encoder';
|
|
83528
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83529
|
+
message: string;
|
|
83235
83530
|
};
|
|
83236
83531
|
} | {
|
|
83237
83532
|
/** ID of the action attempt. */
|
|
@@ -83546,6 +83841,11 @@ export type Routes = {
|
|
|
83546
83841
|
type: 'credential_cannot_be_reissued';
|
|
83547
83842
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83548
83843
|
message: string;
|
|
83844
|
+
} | {
|
|
83845
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
83846
|
+
type: 'no_card_on_encoder';
|
|
83847
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83848
|
+
message: string;
|
|
83549
83849
|
};
|
|
83550
83850
|
} | {
|
|
83551
83851
|
/** ID of the action attempt. */
|
|
@@ -88331,6 +88631,11 @@ export type Routes = {
|
|
|
88331
88631
|
type: 'no_credential_on_encoder';
|
|
88332
88632
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88333
88633
|
message: string;
|
|
88634
|
+
} | {
|
|
88635
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
88636
|
+
type: 'no_card_on_encoder';
|
|
88637
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88638
|
+
message: string;
|
|
88334
88639
|
};
|
|
88335
88640
|
} | {
|
|
88336
88641
|
/** ID of the action attempt. */
|
|
@@ -88645,6 +88950,11 @@ export type Routes = {
|
|
|
88645
88950
|
type: 'credential_cannot_be_reissued';
|
|
88646
88951
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88647
88952
|
message: string;
|
|
88953
|
+
} | {
|
|
88954
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
88955
|
+
type: 'no_card_on_encoder';
|
|
88956
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88957
|
+
message: string;
|
|
88648
88958
|
};
|
|
88649
88959
|
} | {
|
|
88650
88960
|
/** ID of the action attempt. */
|