@seamapi/types 1.789.0 → 1.790.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 +28 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +186 -0
- package/dist/index.cjs +28 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +15 -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/batch.d.ts +21 -0
- package/lib/seam/connect/openapi.js +16 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +150 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +19 -0
- package/src/lib/seam/connect/route-types.ts +180 -0
|
@@ -1003,6 +1003,12 @@ export type Routes = {
|
|
|
1003
1003
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1004
1004
|
message: string
|
|
1005
1005
|
}
|
|
1006
|
+
| {
|
|
1007
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
1008
|
+
type: 'credential_deleted'
|
|
1009
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1010
|
+
message: string
|
|
1011
|
+
}
|
|
1006
1012
|
}
|
|
1007
1013
|
| {
|
|
1008
1014
|
/** ID of the action attempt. */
|
|
@@ -3735,6 +3741,12 @@ export type Routes = {
|
|
|
3735
3741
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3736
3742
|
message: string
|
|
3737
3743
|
}
|
|
3744
|
+
| {
|
|
3745
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
3746
|
+
type: 'credential_deleted'
|
|
3747
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3748
|
+
message: string
|
|
3749
|
+
}
|
|
3738
3750
|
}
|
|
3739
3751
|
| {
|
|
3740
3752
|
/** ID of the action attempt. */
|
|
@@ -8373,6 +8385,12 @@ export type Routes = {
|
|
|
8373
8385
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8374
8386
|
message: string
|
|
8375
8387
|
}
|
|
8388
|
+
| {
|
|
8389
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
8390
|
+
type: 'credential_deleted'
|
|
8391
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8392
|
+
message: string
|
|
8393
|
+
}
|
|
8376
8394
|
}
|
|
8377
8395
|
| {
|
|
8378
8396
|
/** ID of the action attempt. */
|
|
@@ -11141,6 +11159,12 @@ export type Routes = {
|
|
|
11141
11159
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11142
11160
|
message: string
|
|
11143
11161
|
}
|
|
11162
|
+
| {
|
|
11163
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
11164
|
+
type: 'credential_deleted'
|
|
11165
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11166
|
+
message: string
|
|
11167
|
+
}
|
|
11144
11168
|
}
|
|
11145
11169
|
| {
|
|
11146
11170
|
/** ID of the action attempt. */
|
|
@@ -16595,6 +16619,12 @@ export type Routes = {
|
|
|
16595
16619
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16596
16620
|
message: string
|
|
16597
16621
|
}
|
|
16622
|
+
| {
|
|
16623
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
16624
|
+
type: 'credential_deleted'
|
|
16625
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16626
|
+
message: string
|
|
16627
|
+
}
|
|
16598
16628
|
}
|
|
16599
16629
|
| {
|
|
16600
16630
|
/** ID of the action attempt. */
|
|
@@ -24427,6 +24457,12 @@ export type Routes = {
|
|
|
24427
24457
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24428
24458
|
message: string
|
|
24429
24459
|
}
|
|
24460
|
+
| {
|
|
24461
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
24462
|
+
type: 'credential_deleted'
|
|
24463
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24464
|
+
message: string
|
|
24465
|
+
}
|
|
24430
24466
|
}
|
|
24431
24467
|
| {
|
|
24432
24468
|
/** ID of the action attempt. */
|
|
@@ -26091,6 +26127,12 @@ export type Routes = {
|
|
|
26091
26127
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
26092
26128
|
message: string
|
|
26093
26129
|
}
|
|
26130
|
+
| {
|
|
26131
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
26132
|
+
type: 'credential_deleted'
|
|
26133
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
26134
|
+
message: string
|
|
26135
|
+
}
|
|
26094
26136
|
}
|
|
26095
26137
|
| {
|
|
26096
26138
|
/** ID of the action attempt. */
|
|
@@ -28309,6 +28351,12 @@ export type Routes = {
|
|
|
28309
28351
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28310
28352
|
message: string
|
|
28311
28353
|
}
|
|
28354
|
+
| {
|
|
28355
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
28356
|
+
type: 'credential_deleted'
|
|
28357
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28358
|
+
message: string
|
|
28359
|
+
}
|
|
28312
28360
|
}
|
|
28313
28361
|
| {
|
|
28314
28362
|
/** ID of the action attempt. */
|
|
@@ -32267,6 +32315,12 @@ export type Routes = {
|
|
|
32267
32315
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32268
32316
|
message: string
|
|
32269
32317
|
}
|
|
32318
|
+
| {
|
|
32319
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
32320
|
+
type: 'credential_deleted'
|
|
32321
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32322
|
+
message: string
|
|
32323
|
+
}
|
|
32270
32324
|
}
|
|
32271
32325
|
| {
|
|
32272
32326
|
/** ID of the action attempt. */
|
|
@@ -33820,6 +33874,12 @@ export type Routes = {
|
|
|
33820
33874
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33821
33875
|
message: string
|
|
33822
33876
|
}
|
|
33877
|
+
| {
|
|
33878
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
33879
|
+
type: 'credential_deleted'
|
|
33880
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33881
|
+
message: string
|
|
33882
|
+
}
|
|
33823
33883
|
}
|
|
33824
33884
|
| {
|
|
33825
33885
|
/** ID of the action attempt. */
|
|
@@ -49834,6 +49894,12 @@ export type Routes = {
|
|
|
49834
49894
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49835
49895
|
message: string
|
|
49836
49896
|
}
|
|
49897
|
+
| {
|
|
49898
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
49899
|
+
type: 'credential_deleted'
|
|
49900
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49901
|
+
message: string
|
|
49902
|
+
}
|
|
49837
49903
|
}
|
|
49838
49904
|
| {
|
|
49839
49905
|
/** ID of the action attempt. */
|
|
@@ -58193,6 +58259,12 @@ export type Routes = {
|
|
|
58193
58259
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58194
58260
|
message: string
|
|
58195
58261
|
}
|
|
58262
|
+
| {
|
|
58263
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
58264
|
+
type: 'credential_deleted'
|
|
58265
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58266
|
+
message: string
|
|
58267
|
+
}
|
|
58196
58268
|
}
|
|
58197
58269
|
| {
|
|
58198
58270
|
/** ID of the action attempt. */
|
|
@@ -59747,6 +59819,12 @@ export type Routes = {
|
|
|
59747
59819
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59748
59820
|
message: string
|
|
59749
59821
|
}
|
|
59822
|
+
| {
|
|
59823
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
59824
|
+
type: 'credential_deleted'
|
|
59825
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59826
|
+
message: string
|
|
59827
|
+
}
|
|
59750
59828
|
}
|
|
59751
59829
|
| {
|
|
59752
59830
|
/** ID of the action attempt. */
|
|
@@ -61299,6 +61377,12 @@ export type Routes = {
|
|
|
61299
61377
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61300
61378
|
message: string
|
|
61301
61379
|
}
|
|
61380
|
+
| {
|
|
61381
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
61382
|
+
type: 'credential_deleted'
|
|
61383
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61384
|
+
message: string
|
|
61385
|
+
}
|
|
61302
61386
|
}
|
|
61303
61387
|
| {
|
|
61304
61388
|
/** ID of the action attempt. */
|
|
@@ -62853,6 +62937,12 @@ export type Routes = {
|
|
|
62853
62937
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62854
62938
|
message: string
|
|
62855
62939
|
}
|
|
62940
|
+
| {
|
|
62941
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
62942
|
+
type: 'credential_deleted'
|
|
62943
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62944
|
+
message: string
|
|
62945
|
+
}
|
|
62856
62946
|
}
|
|
62857
62947
|
| {
|
|
62858
62948
|
/** ID of the action attempt. */
|
|
@@ -67814,6 +67904,12 @@ export type Routes = {
|
|
|
67814
67904
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67815
67905
|
message: string
|
|
67816
67906
|
}
|
|
67907
|
+
| {
|
|
67908
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
67909
|
+
type: 'credential_deleted'
|
|
67910
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67911
|
+
message: string
|
|
67912
|
+
}
|
|
67817
67913
|
}
|
|
67818
67914
|
| {
|
|
67819
67915
|
/** ID of the action attempt. */
|
|
@@ -69387,6 +69483,12 @@ export type Routes = {
|
|
|
69387
69483
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69388
69484
|
message: string
|
|
69389
69485
|
}
|
|
69486
|
+
| {
|
|
69487
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
69488
|
+
type: 'credential_deleted'
|
|
69489
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69490
|
+
message: string
|
|
69491
|
+
}
|
|
69390
69492
|
}
|
|
69391
69493
|
| {
|
|
69392
69494
|
/** ID of the action attempt. */
|
|
@@ -71016,6 +71118,12 @@ export type Routes = {
|
|
|
71016
71118
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71017
71119
|
message: string
|
|
71018
71120
|
}
|
|
71121
|
+
| {
|
|
71122
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
71123
|
+
type: 'credential_deleted'
|
|
71124
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71125
|
+
message: string
|
|
71126
|
+
}
|
|
71019
71127
|
}
|
|
71020
71128
|
| {
|
|
71021
71129
|
/** ID of the action attempt. */
|
|
@@ -73619,6 +73727,12 @@ export type Routes = {
|
|
|
73619
73727
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73620
73728
|
message: string
|
|
73621
73729
|
}
|
|
73730
|
+
| {
|
|
73731
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
73732
|
+
type: 'credential_deleted'
|
|
73733
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73734
|
+
message: string
|
|
73735
|
+
}
|
|
73622
73736
|
}
|
|
73623
73737
|
| {
|
|
73624
73738
|
/** ID of the action attempt. */
|
|
@@ -84170,6 +84284,12 @@ export type Routes = {
|
|
|
84170
84284
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84171
84285
|
message: string
|
|
84172
84286
|
}
|
|
84287
|
+
| {
|
|
84288
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
84289
|
+
type: 'credential_deleted'
|
|
84290
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84291
|
+
message: string
|
|
84292
|
+
}
|
|
84173
84293
|
}
|
|
84174
84294
|
| {
|
|
84175
84295
|
/** ID of the action attempt. */
|
|
@@ -85728,6 +85848,12 @@ export type Routes = {
|
|
|
85728
85848
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85729
85849
|
message: string
|
|
85730
85850
|
}
|
|
85851
|
+
| {
|
|
85852
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
85853
|
+
type: 'credential_deleted'
|
|
85854
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85855
|
+
message: string
|
|
85856
|
+
}
|
|
85731
85857
|
}
|
|
85732
85858
|
| {
|
|
85733
85859
|
/** ID of the action attempt. */
|
|
@@ -87398,6 +87524,12 @@ export type Routes = {
|
|
|
87398
87524
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87399
87525
|
message: string
|
|
87400
87526
|
}
|
|
87527
|
+
| {
|
|
87528
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
87529
|
+
type: 'credential_deleted'
|
|
87530
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87531
|
+
message: string
|
|
87532
|
+
}
|
|
87401
87533
|
}
|
|
87402
87534
|
| {
|
|
87403
87535
|
/** ID of the action attempt. */
|
|
@@ -90637,6 +90769,12 @@ export type Routes = {
|
|
|
90637
90769
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90638
90770
|
message: string
|
|
90639
90771
|
}
|
|
90772
|
+
| {
|
|
90773
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
90774
|
+
type: 'credential_deleted'
|
|
90775
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90776
|
+
message: string
|
|
90777
|
+
}
|
|
90640
90778
|
}
|
|
90641
90779
|
| {
|
|
90642
90780
|
/** ID of the action attempt. */
|
|
@@ -92199,6 +92337,12 @@ export type Routes = {
|
|
|
92199
92337
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92200
92338
|
message: string
|
|
92201
92339
|
}
|
|
92340
|
+
| {
|
|
92341
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
92342
|
+
type: 'credential_deleted'
|
|
92343
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92344
|
+
message: string
|
|
92345
|
+
}
|
|
92202
92346
|
}
|
|
92203
92347
|
| {
|
|
92204
92348
|
/** ID of the action attempt. */
|
|
@@ -97177,6 +97321,12 @@ export type Routes = {
|
|
|
97177
97321
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97178
97322
|
message: string
|
|
97179
97323
|
}
|
|
97324
|
+
| {
|
|
97325
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
97326
|
+
type: 'credential_deleted'
|
|
97327
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97328
|
+
message: string
|
|
97329
|
+
}
|
|
97180
97330
|
}
|
|
97181
97331
|
| {
|
|
97182
97332
|
/** ID of the action attempt. */
|
|
@@ -98934,6 +99084,12 @@ export type Routes = {
|
|
|
98934
99084
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
98935
99085
|
message: string
|
|
98936
99086
|
}
|
|
99087
|
+
| {
|
|
99088
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
99089
|
+
type: 'credential_deleted'
|
|
99090
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99091
|
+
message: string
|
|
99092
|
+
}
|
|
98937
99093
|
}
|
|
98938
99094
|
| {
|
|
98939
99095
|
/** ID of the action attempt. */
|
|
@@ -100524,6 +100680,12 @@ export type Routes = {
|
|
|
100524
100680
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
100525
100681
|
message: string
|
|
100526
100682
|
}
|
|
100683
|
+
| {
|
|
100684
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
100685
|
+
type: 'credential_deleted'
|
|
100686
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
100687
|
+
message: string
|
|
100688
|
+
}
|
|
100527
100689
|
}
|
|
100528
100690
|
| {
|
|
100529
100691
|
/** ID of the action attempt. */
|
|
@@ -102231,6 +102393,12 @@ export type Routes = {
|
|
|
102231
102393
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
102232
102394
|
message: string
|
|
102233
102395
|
}
|
|
102396
|
+
| {
|
|
102397
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
102398
|
+
type: 'credential_deleted'
|
|
102399
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
102400
|
+
message: string
|
|
102401
|
+
}
|
|
102234
102402
|
}
|
|
102235
102403
|
| {
|
|
102236
102404
|
/** ID of the action attempt. */
|
|
@@ -111457,6 +111625,12 @@ export type Routes = {
|
|
|
111457
111625
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
111458
111626
|
message: string
|
|
111459
111627
|
}
|
|
111628
|
+
| {
|
|
111629
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
111630
|
+
type: 'credential_deleted'
|
|
111631
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
111632
|
+
message: string
|
|
111633
|
+
}
|
|
111460
111634
|
}
|
|
111461
111635
|
| {
|
|
111462
111636
|
/** ID of the action attempt. */
|
|
@@ -119346,6 +119520,12 @@ export type Routes = {
|
|
|
119346
119520
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
119347
119521
|
message: string
|
|
119348
119522
|
}
|
|
119523
|
+
| {
|
|
119524
|
+
/** Error type to indicate that the credential was deleted while encoding was in progress. */
|
|
119525
|
+
type: 'credential_deleted'
|
|
119526
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
119527
|
+
message: string
|
|
119528
|
+
}
|
|
119349
119529
|
}
|
|
119350
119530
|
| {
|
|
119351
119531
|
/** ID of the action attempt. */
|