@seamapi/types 1.883.0 → 1.885.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 +64 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +327 -132
- package/dist/index.cjs +64 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +8 -8
- package/lib/seam/connect/models/action-attempts/assign-credential.js +2 -2
- package/lib/seam/connect/models/action-attempts/assign-credential.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +10 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/openapi.js +49 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +272 -132
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/assign-credential.ts +2 -2
- package/src/lib/seam/connect/models/devices/device.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +57 -5
- package/src/lib/seam/connect/route-types.ts +292 -132
|
@@ -1018,7 +1018,7 @@ export type Routes = {
|
|
|
1018
1018
|
result: null;
|
|
1019
1019
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
1020
1020
|
error: null;
|
|
1021
|
-
/** Action attempt to track the status of assigning
|
|
1021
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
1022
1022
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
1023
1023
|
} | {
|
|
1024
1024
|
/** ID of the action attempt. */
|
|
@@ -1026,9 +1026,9 @@ export type Routes = {
|
|
|
1026
1026
|
status: 'success';
|
|
1027
1027
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
1028
1028
|
error: null;
|
|
1029
|
-
/** Action attempt to track the status of assigning
|
|
1029
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
1030
1030
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
1031
|
-
/** Result of
|
|
1031
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
1032
1032
|
result: {
|
|
1033
1033
|
/** ID of the Seam workspace associated with the access method. */
|
|
1034
1034
|
workspace_id: string;
|
|
@@ -1149,7 +1149,7 @@ export type Routes = {
|
|
|
1149
1149
|
status: 'error';
|
|
1150
1150
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
1151
1151
|
result: null;
|
|
1152
|
-
/** Action attempt to track the status of assigning
|
|
1152
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
1153
1153
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
1154
1154
|
error: {
|
|
1155
1155
|
/** Type of the error associated with the action attempt. */
|
|
@@ -4017,7 +4017,7 @@ export type Routes = {
|
|
|
4017
4017
|
result: null;
|
|
4018
4018
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
4019
4019
|
error: null;
|
|
4020
|
-
/** Action attempt to track the status of assigning
|
|
4020
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
4021
4021
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
4022
4022
|
} | {
|
|
4023
4023
|
/** ID of the action attempt. */
|
|
@@ -4025,9 +4025,9 @@ export type Routes = {
|
|
|
4025
4025
|
status: 'success';
|
|
4026
4026
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
4027
4027
|
error: null;
|
|
4028
|
-
/** Action attempt to track the status of assigning
|
|
4028
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
4029
4029
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
4030
|
-
/** Result of
|
|
4030
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
4031
4031
|
result: {
|
|
4032
4032
|
/** ID of the Seam workspace associated with the access method. */
|
|
4033
4033
|
workspace_id: string;
|
|
@@ -4148,7 +4148,7 @@ export type Routes = {
|
|
|
4148
4148
|
status: 'error';
|
|
4149
4149
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
4150
4150
|
result: null;
|
|
4151
|
-
/** Action attempt to track the status of assigning
|
|
4151
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
4152
4152
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
4153
4153
|
error: {
|
|
4154
4154
|
/** Type of the error associated with the action attempt. */
|
|
@@ -9022,7 +9022,7 @@ export type Routes = {
|
|
|
9022
9022
|
result: null;
|
|
9023
9023
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
9024
9024
|
error: null;
|
|
9025
|
-
/** Action attempt to track the status of assigning
|
|
9025
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
9026
9026
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
9027
9027
|
} | {
|
|
9028
9028
|
/** ID of the action attempt. */
|
|
@@ -9030,9 +9030,9 @@ export type Routes = {
|
|
|
9030
9030
|
status: 'success';
|
|
9031
9031
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
9032
9032
|
error: null;
|
|
9033
|
-
/** Action attempt to track the status of assigning
|
|
9033
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
9034
9034
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
9035
|
-
/** Result of
|
|
9035
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
9036
9036
|
result: {
|
|
9037
9037
|
/** ID of the Seam workspace associated with the access method. */
|
|
9038
9038
|
workspace_id: string;
|
|
@@ -9153,7 +9153,7 @@ export type Routes = {
|
|
|
9153
9153
|
status: 'error';
|
|
9154
9154
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
9155
9155
|
result: null;
|
|
9156
|
-
/** Action attempt to track the status of assigning
|
|
9156
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
9157
9157
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
9158
9158
|
error: {
|
|
9159
9159
|
/** Type of the error associated with the action attempt. */
|
|
@@ -11903,7 +11903,7 @@ export type Routes = {
|
|
|
11903
11903
|
result: null;
|
|
11904
11904
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
11905
11905
|
error: null;
|
|
11906
|
-
/** Action attempt to track the status of assigning
|
|
11906
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
11907
11907
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
11908
11908
|
} | {
|
|
11909
11909
|
/** ID of the action attempt. */
|
|
@@ -11911,9 +11911,9 @@ export type Routes = {
|
|
|
11911
11911
|
status: 'success';
|
|
11912
11912
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
11913
11913
|
error: null;
|
|
11914
|
-
/** Action attempt to track the status of assigning
|
|
11914
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
11915
11915
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
11916
|
-
/** Result of
|
|
11916
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
11917
11917
|
result: {
|
|
11918
11918
|
/** ID of the Seam workspace associated with the access method. */
|
|
11919
11919
|
workspace_id: string;
|
|
@@ -12034,7 +12034,7 @@ export type Routes = {
|
|
|
12034
12034
|
status: 'error';
|
|
12035
12035
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
12036
12036
|
result: null;
|
|
12037
|
-
/** Action attempt to track the status of assigning
|
|
12037
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
12038
12038
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
12039
12039
|
error: {
|
|
12040
12040
|
/** Type of the error associated with the action attempt. */
|
|
@@ -14391,6 +14391,13 @@ export type Routes = {
|
|
|
14391
14391
|
created_at: string;
|
|
14392
14392
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14393
14393
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
14394
|
+
} | {
|
|
14395
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14396
|
+
message: string;
|
|
14397
|
+
/** Date and time at which Seam created the warning. */
|
|
14398
|
+
created_at: string;
|
|
14399
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14400
|
+
warning_code: 'provider_issue';
|
|
14394
14401
|
} | {
|
|
14395
14402
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14396
14403
|
message: string;
|
|
@@ -17108,7 +17115,7 @@ export type Routes = {
|
|
|
17108
17115
|
result: null;
|
|
17109
17116
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
17110
17117
|
error: null;
|
|
17111
|
-
/** Action attempt to track the status of assigning
|
|
17118
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
17112
17119
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
17113
17120
|
} | {
|
|
17114
17121
|
/** ID of the action attempt. */
|
|
@@ -17116,9 +17123,9 @@ export type Routes = {
|
|
|
17116
17123
|
status: 'success';
|
|
17117
17124
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
17118
17125
|
error: null;
|
|
17119
|
-
/** Action attempt to track the status of assigning
|
|
17126
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
17120
17127
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
17121
|
-
/** Result of
|
|
17128
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
17122
17129
|
result: {
|
|
17123
17130
|
/** ID of the Seam workspace associated with the access method. */
|
|
17124
17131
|
workspace_id: string;
|
|
@@ -17239,7 +17246,7 @@ export type Routes = {
|
|
|
17239
17246
|
status: 'error';
|
|
17240
17247
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
17241
17248
|
result: null;
|
|
17242
|
-
/** Action attempt to track the status of assigning
|
|
17249
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
17243
17250
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
17244
17251
|
error: {
|
|
17245
17252
|
/** Type of the error associated with the action attempt. */
|
|
@@ -18800,7 +18807,7 @@ export type Routes = {
|
|
|
18800
18807
|
result: null;
|
|
18801
18808
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
18802
18809
|
error: null;
|
|
18803
|
-
/** Action attempt to track the status of assigning
|
|
18810
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
18804
18811
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
18805
18812
|
} | {
|
|
18806
18813
|
/** ID of the action attempt. */
|
|
@@ -18808,9 +18815,9 @@ export type Routes = {
|
|
|
18808
18815
|
status: 'success';
|
|
18809
18816
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
18810
18817
|
error: null;
|
|
18811
|
-
/** Action attempt to track the status of assigning
|
|
18818
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
18812
18819
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
18813
|
-
/** Result of
|
|
18820
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
18814
18821
|
result: {
|
|
18815
18822
|
/** ID of the Seam workspace associated with the access method. */
|
|
18816
18823
|
workspace_id: string;
|
|
@@ -18931,7 +18938,7 @@ export type Routes = {
|
|
|
18931
18938
|
status: 'error';
|
|
18932
18939
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
18933
18940
|
result: null;
|
|
18934
|
-
/** Action attempt to track the status of assigning
|
|
18941
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
18935
18942
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
18936
18943
|
error: {
|
|
18937
18944
|
/** Type of the error associated with the action attempt. */
|
|
@@ -20931,6 +20938,13 @@ export type Routes = {
|
|
|
20931
20938
|
created_at: string;
|
|
20932
20939
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20933
20940
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
20941
|
+
} | {
|
|
20942
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20943
|
+
message: string;
|
|
20944
|
+
/** Date and time at which Seam created the warning. */
|
|
20945
|
+
created_at: string;
|
|
20946
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20947
|
+
warning_code: 'provider_issue';
|
|
20934
20948
|
} | {
|
|
20935
20949
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20936
20950
|
message: string;
|
|
@@ -22803,7 +22817,7 @@ export type Routes = {
|
|
|
22803
22817
|
result: null;
|
|
22804
22818
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
22805
22819
|
error: null;
|
|
22806
|
-
/** Action attempt to track the status of assigning
|
|
22820
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
22807
22821
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
22808
22822
|
} | {
|
|
22809
22823
|
/** ID of the action attempt. */
|
|
@@ -22811,9 +22825,9 @@ export type Routes = {
|
|
|
22811
22825
|
status: 'success';
|
|
22812
22826
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
22813
22827
|
error: null;
|
|
22814
|
-
/** Action attempt to track the status of assigning
|
|
22828
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
22815
22829
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
22816
|
-
/** Result of
|
|
22830
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
22817
22831
|
result: {
|
|
22818
22832
|
/** ID of the Seam workspace associated with the access method. */
|
|
22819
22833
|
workspace_id: string;
|
|
@@ -22934,7 +22948,7 @@ export type Routes = {
|
|
|
22934
22948
|
status: 'error';
|
|
22935
22949
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
22936
22950
|
result: null;
|
|
22937
|
-
/** Action attempt to track the status of assigning
|
|
22951
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
22938
22952
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
22939
22953
|
error: {
|
|
22940
22954
|
/** Type of the error associated with the action attempt. */
|
|
@@ -27677,7 +27691,7 @@ export type Routes = {
|
|
|
27677
27691
|
result: null;
|
|
27678
27692
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
27679
27693
|
error: null;
|
|
27680
|
-
/** Action attempt to track the status of assigning
|
|
27694
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
27681
27695
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
27682
27696
|
} | {
|
|
27683
27697
|
/** ID of the action attempt. */
|
|
@@ -27685,9 +27699,9 @@ export type Routes = {
|
|
|
27685
27699
|
status: 'success';
|
|
27686
27700
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
27687
27701
|
error: null;
|
|
27688
|
-
/** Action attempt to track the status of assigning
|
|
27702
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
27689
27703
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
27690
|
-
/** Result of
|
|
27704
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
27691
27705
|
result: {
|
|
27692
27706
|
/** ID of the Seam workspace associated with the access method. */
|
|
27693
27707
|
workspace_id: string;
|
|
@@ -27808,7 +27822,7 @@ export type Routes = {
|
|
|
27808
27822
|
status: 'error';
|
|
27809
27823
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
27810
27824
|
result: null;
|
|
27811
|
-
/** Action attempt to track the status of assigning
|
|
27825
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
27812
27826
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
27813
27827
|
error: {
|
|
27814
27828
|
/** Type of the error associated with the action attempt. */
|
|
@@ -29461,7 +29475,7 @@ export type Routes = {
|
|
|
29461
29475
|
result: null;
|
|
29462
29476
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
29463
29477
|
error: null;
|
|
29464
|
-
/** Action attempt to track the status of assigning
|
|
29478
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
29465
29479
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
29466
29480
|
} | {
|
|
29467
29481
|
/** ID of the action attempt. */
|
|
@@ -29469,9 +29483,9 @@ export type Routes = {
|
|
|
29469
29483
|
status: 'success';
|
|
29470
29484
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
29471
29485
|
error: null;
|
|
29472
|
-
/** Action attempt to track the status of assigning
|
|
29486
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
29473
29487
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
29474
|
-
/** Result of
|
|
29488
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
29475
29489
|
result: {
|
|
29476
29490
|
/** ID of the Seam workspace associated with the access method. */
|
|
29477
29491
|
workspace_id: string;
|
|
@@ -29592,7 +29606,7 @@ export type Routes = {
|
|
|
29592
29606
|
status: 'error';
|
|
29593
29607
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
29594
29608
|
result: null;
|
|
29595
|
-
/** Action attempt to track the status of assigning
|
|
29609
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
29596
29610
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
29597
29611
|
error: {
|
|
29598
29612
|
/** Type of the error associated with the action attempt. */
|
|
@@ -31141,7 +31155,7 @@ export type Routes = {
|
|
|
31141
31155
|
result: null;
|
|
31142
31156
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
31143
31157
|
error: null;
|
|
31144
|
-
/** Action attempt to track the status of assigning
|
|
31158
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
31145
31159
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
31146
31160
|
} | {
|
|
31147
31161
|
/** ID of the action attempt. */
|
|
@@ -31149,9 +31163,9 @@ export type Routes = {
|
|
|
31149
31163
|
status: 'success';
|
|
31150
31164
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
31151
31165
|
error: null;
|
|
31152
|
-
/** Action attempt to track the status of assigning
|
|
31166
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
31153
31167
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
31154
|
-
/** Result of
|
|
31168
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
31155
31169
|
result: {
|
|
31156
31170
|
/** ID of the Seam workspace associated with the access method. */
|
|
31157
31171
|
workspace_id: string;
|
|
@@ -31272,7 +31286,7 @@ export type Routes = {
|
|
|
31272
31286
|
status: 'error';
|
|
31273
31287
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
31274
31288
|
result: null;
|
|
31275
|
-
/** Action attempt to track the status of assigning
|
|
31289
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
31276
31290
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
31277
31291
|
error: {
|
|
31278
31292
|
/** Type of the error associated with the action attempt. */
|
|
@@ -33480,7 +33494,7 @@ export type Routes = {
|
|
|
33480
33494
|
result: null;
|
|
33481
33495
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
33482
33496
|
error: null;
|
|
33483
|
-
/** Action attempt to track the status of assigning
|
|
33497
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
33484
33498
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
33485
33499
|
} | {
|
|
33486
33500
|
/** ID of the action attempt. */
|
|
@@ -33488,9 +33502,9 @@ export type Routes = {
|
|
|
33488
33502
|
status: 'success';
|
|
33489
33503
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
33490
33504
|
error: null;
|
|
33491
|
-
/** Action attempt to track the status of assigning
|
|
33505
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
33492
33506
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
33493
|
-
/** Result of
|
|
33507
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
33494
33508
|
result: {
|
|
33495
33509
|
/** ID of the Seam workspace associated with the access method. */
|
|
33496
33510
|
workspace_id: string;
|
|
@@ -33611,7 +33625,7 @@ export type Routes = {
|
|
|
33611
33625
|
status: 'error';
|
|
33612
33626
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
33613
33627
|
result: null;
|
|
33614
|
-
/** Action attempt to track the status of assigning
|
|
33628
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
33615
33629
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
33616
33630
|
error: {
|
|
33617
33631
|
/** Type of the error associated with the action attempt. */
|
|
@@ -37343,7 +37357,7 @@ export type Routes = {
|
|
|
37343
37357
|
result: null;
|
|
37344
37358
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
37345
37359
|
error: null;
|
|
37346
|
-
/** Action attempt to track the status of assigning
|
|
37360
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
37347
37361
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
37348
37362
|
} | {
|
|
37349
37363
|
/** ID of the action attempt. */
|
|
@@ -37351,9 +37365,9 @@ export type Routes = {
|
|
|
37351
37365
|
status: 'success';
|
|
37352
37366
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
37353
37367
|
error: null;
|
|
37354
|
-
/** Action attempt to track the status of assigning
|
|
37368
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
37355
37369
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
37356
|
-
/** Result of
|
|
37370
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
37357
37371
|
result: {
|
|
37358
37372
|
/** ID of the Seam workspace associated with the access method. */
|
|
37359
37373
|
workspace_id: string;
|
|
@@ -37474,7 +37488,7 @@ export type Routes = {
|
|
|
37474
37488
|
status: 'error';
|
|
37475
37489
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
37476
37490
|
result: null;
|
|
37477
|
-
/** Action attempt to track the status of assigning
|
|
37491
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
37478
37492
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
37479
37493
|
error: {
|
|
37480
37494
|
/** Type of the error associated with the action attempt. */
|
|
@@ -39015,7 +39029,7 @@ export type Routes = {
|
|
|
39015
39029
|
result: null;
|
|
39016
39030
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
39017
39031
|
error: null;
|
|
39018
|
-
/** Action attempt to track the status of assigning
|
|
39032
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
39019
39033
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
39020
39034
|
} | {
|
|
39021
39035
|
/** ID of the action attempt. */
|
|
@@ -39023,9 +39037,9 @@ export type Routes = {
|
|
|
39023
39037
|
status: 'success';
|
|
39024
39038
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
39025
39039
|
error: null;
|
|
39026
|
-
/** Action attempt to track the status of assigning
|
|
39040
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
39027
39041
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
39028
|
-
/** Result of
|
|
39042
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
39029
39043
|
result: {
|
|
39030
39044
|
/** ID of the Seam workspace associated with the access method. */
|
|
39031
39045
|
workspace_id: string;
|
|
@@ -39146,7 +39160,7 @@ export type Routes = {
|
|
|
39146
39160
|
status: 'error';
|
|
39147
39161
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
39148
39162
|
result: null;
|
|
39149
|
-
/** Action attempt to track the status of assigning
|
|
39163
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
39150
39164
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
39151
39165
|
error: {
|
|
39152
39166
|
/** Type of the error associated with the action attempt. */
|
|
@@ -43038,6 +43052,13 @@ export type Routes = {
|
|
|
43038
43052
|
created_at: string;
|
|
43039
43053
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43040
43054
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
43055
|
+
} | {
|
|
43056
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43057
|
+
message: string;
|
|
43058
|
+
/** Date and time at which Seam created the warning. */
|
|
43059
|
+
created_at: string;
|
|
43060
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43061
|
+
warning_code: 'provider_issue';
|
|
43041
43062
|
} | {
|
|
43042
43063
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43043
43064
|
message: string;
|
|
@@ -44442,6 +44463,13 @@ export type Routes = {
|
|
|
44442
44463
|
created_at: string;
|
|
44443
44464
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44444
44465
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
44466
|
+
} | {
|
|
44467
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44468
|
+
message: string;
|
|
44469
|
+
/** Date and time at which Seam created the warning. */
|
|
44470
|
+
created_at: string;
|
|
44471
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44472
|
+
warning_code: 'provider_issue';
|
|
44445
44473
|
} | {
|
|
44446
44474
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44447
44475
|
message: string;
|
|
@@ -45015,6 +45043,13 @@ export type Routes = {
|
|
|
45015
45043
|
created_at: string;
|
|
45016
45044
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45017
45045
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
45046
|
+
} | {
|
|
45047
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45048
|
+
message: string;
|
|
45049
|
+
/** Date and time at which Seam created the warning. */
|
|
45050
|
+
created_at: string;
|
|
45051
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45052
|
+
warning_code: 'provider_issue';
|
|
45018
45053
|
} | {
|
|
45019
45054
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45020
45055
|
message: string;
|
|
@@ -45513,6 +45548,13 @@ export type Routes = {
|
|
|
45513
45548
|
created_at: string;
|
|
45514
45549
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45515
45550
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
45551
|
+
} | {
|
|
45552
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45553
|
+
message: string;
|
|
45554
|
+
/** Date and time at which Seam created the warning. */
|
|
45555
|
+
created_at: string;
|
|
45556
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45557
|
+
warning_code: 'provider_issue';
|
|
45516
45558
|
} | {
|
|
45517
45559
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45518
45560
|
message: string;
|
|
@@ -52436,7 +52478,7 @@ export type Routes = {
|
|
|
52436
52478
|
result: null;
|
|
52437
52479
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
52438
52480
|
error: null;
|
|
52439
|
-
/** Action attempt to track the status of assigning
|
|
52481
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
52440
52482
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
52441
52483
|
} | {
|
|
52442
52484
|
/** ID of the action attempt. */
|
|
@@ -52444,9 +52486,9 @@ export type Routes = {
|
|
|
52444
52486
|
status: 'success';
|
|
52445
52487
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
52446
52488
|
error: null;
|
|
52447
|
-
/** Action attempt to track the status of assigning
|
|
52489
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
52448
52490
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
52449
|
-
/** Result of
|
|
52491
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
52450
52492
|
result: {
|
|
52451
52493
|
/** ID of the Seam workspace associated with the access method. */
|
|
52452
52494
|
workspace_id: string;
|
|
@@ -52567,7 +52609,7 @@ export type Routes = {
|
|
|
52567
52609
|
status: 'error';
|
|
52568
52610
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
52569
52611
|
result: null;
|
|
52570
|
-
/** Action attempt to track the status of assigning
|
|
52612
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
52571
52613
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
52572
52614
|
error: {
|
|
52573
52615
|
/** Type of the error associated with the action attempt. */
|
|
@@ -54404,6 +54446,13 @@ export type Routes = {
|
|
|
54404
54446
|
created_at: string;
|
|
54405
54447
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54406
54448
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
54449
|
+
} | {
|
|
54450
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54451
|
+
message: string;
|
|
54452
|
+
/** Date and time at which Seam created the warning. */
|
|
54453
|
+
created_at: string;
|
|
54454
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54455
|
+
warning_code: 'provider_issue';
|
|
54407
54456
|
} | {
|
|
54408
54457
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54409
54458
|
message: string;
|
|
@@ -55758,6 +55807,13 @@ export type Routes = {
|
|
|
55758
55807
|
created_at: string;
|
|
55759
55808
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55760
55809
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
55810
|
+
} | {
|
|
55811
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55812
|
+
message: string;
|
|
55813
|
+
/** Date and time at which Seam created the warning. */
|
|
55814
|
+
created_at: string;
|
|
55815
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55816
|
+
warning_code: 'provider_issue';
|
|
55761
55817
|
} | {
|
|
55762
55818
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55763
55819
|
message: string;
|
|
@@ -57162,6 +57218,13 @@ export type Routes = {
|
|
|
57162
57218
|
created_at: string;
|
|
57163
57219
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57164
57220
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
57221
|
+
} | {
|
|
57222
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57223
|
+
message: string;
|
|
57224
|
+
/** Date and time at which Seam created the warning. */
|
|
57225
|
+
created_at: string;
|
|
57226
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57227
|
+
warning_code: 'provider_issue';
|
|
57165
57228
|
} | {
|
|
57166
57229
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57167
57230
|
message: string;
|
|
@@ -58515,6 +58578,13 @@ export type Routes = {
|
|
|
58515
58578
|
created_at: string;
|
|
58516
58579
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58517
58580
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
58581
|
+
} | {
|
|
58582
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58583
|
+
message: string;
|
|
58584
|
+
/** Date and time at which Seam created the warning. */
|
|
58585
|
+
created_at: string;
|
|
58586
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58587
|
+
warning_code: 'provider_issue';
|
|
58518
58588
|
} | {
|
|
58519
58589
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58520
58590
|
message: string;
|
|
@@ -59590,7 +59660,7 @@ export type Routes = {
|
|
|
59590
59660
|
result: null;
|
|
59591
59661
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
59592
59662
|
error: null;
|
|
59593
|
-
/** Action attempt to track the status of assigning
|
|
59663
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
59594
59664
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
59595
59665
|
} | {
|
|
59596
59666
|
/** ID of the action attempt. */
|
|
@@ -59598,9 +59668,9 @@ export type Routes = {
|
|
|
59598
59668
|
status: 'success';
|
|
59599
59669
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
59600
59670
|
error: null;
|
|
59601
|
-
/** Action attempt to track the status of assigning
|
|
59671
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
59602
59672
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
59603
|
-
/** Result of
|
|
59673
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
59604
59674
|
result: {
|
|
59605
59675
|
/** ID of the Seam workspace associated with the access method. */
|
|
59606
59676
|
workspace_id: string;
|
|
@@ -59721,7 +59791,7 @@ export type Routes = {
|
|
|
59721
59791
|
status: 'error';
|
|
59722
59792
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
59723
59793
|
result: null;
|
|
59724
|
-
/** Action attempt to track the status of assigning
|
|
59794
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
59725
59795
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
59726
59796
|
error: {
|
|
59727
59797
|
/** Type of the error associated with the action attempt. */
|
|
@@ -61263,7 +61333,7 @@ export type Routes = {
|
|
|
61263
61333
|
result: null;
|
|
61264
61334
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
61265
61335
|
error: null;
|
|
61266
|
-
/** Action attempt to track the status of assigning
|
|
61336
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
61267
61337
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
61268
61338
|
} | {
|
|
61269
61339
|
/** ID of the action attempt. */
|
|
@@ -61271,9 +61341,9 @@ export type Routes = {
|
|
|
61271
61341
|
status: 'success';
|
|
61272
61342
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
61273
61343
|
error: null;
|
|
61274
|
-
/** Action attempt to track the status of assigning
|
|
61344
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
61275
61345
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
61276
|
-
/** Result of
|
|
61346
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
61277
61347
|
result: {
|
|
61278
61348
|
/** ID of the Seam workspace associated with the access method. */
|
|
61279
61349
|
workspace_id: string;
|
|
@@ -61394,7 +61464,7 @@ export type Routes = {
|
|
|
61394
61464
|
status: 'error';
|
|
61395
61465
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
61396
61466
|
result: null;
|
|
61397
|
-
/** Action attempt to track the status of assigning
|
|
61467
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
61398
61468
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
61399
61469
|
error: {
|
|
61400
61470
|
/** Type of the error associated with the action attempt. */
|
|
@@ -62934,7 +63004,7 @@ export type Routes = {
|
|
|
62934
63004
|
result: null;
|
|
62935
63005
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
62936
63006
|
error: null;
|
|
62937
|
-
/** Action attempt to track the status of assigning
|
|
63007
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
62938
63008
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
62939
63009
|
} | {
|
|
62940
63010
|
/** ID of the action attempt. */
|
|
@@ -62942,9 +63012,9 @@ export type Routes = {
|
|
|
62942
63012
|
status: 'success';
|
|
62943
63013
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
62944
63014
|
error: null;
|
|
62945
|
-
/** Action attempt to track the status of assigning
|
|
63015
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
62946
63016
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
62947
|
-
/** Result of
|
|
63017
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
62948
63018
|
result: {
|
|
62949
63019
|
/** ID of the Seam workspace associated with the access method. */
|
|
62950
63020
|
workspace_id: string;
|
|
@@ -63065,7 +63135,7 @@ export type Routes = {
|
|
|
63065
63135
|
status: 'error';
|
|
63066
63136
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
63067
63137
|
result: null;
|
|
63068
|
-
/** Action attempt to track the status of assigning
|
|
63138
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
63069
63139
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
63070
63140
|
error: {
|
|
63071
63141
|
/** Type of the error associated with the action attempt. */
|
|
@@ -64607,7 +64677,7 @@ export type Routes = {
|
|
|
64607
64677
|
result: null;
|
|
64608
64678
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
64609
64679
|
error: null;
|
|
64610
|
-
/** Action attempt to track the status of assigning
|
|
64680
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
64611
64681
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
64612
64682
|
} | {
|
|
64613
64683
|
/** ID of the action attempt. */
|
|
@@ -64615,9 +64685,9 @@ export type Routes = {
|
|
|
64615
64685
|
status: 'success';
|
|
64616
64686
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
64617
64687
|
error: null;
|
|
64618
|
-
/** Action attempt to track the status of assigning
|
|
64688
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
64619
64689
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
64620
|
-
/** Result of
|
|
64690
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
64621
64691
|
result: {
|
|
64622
64692
|
/** ID of the Seam workspace associated with the access method. */
|
|
64623
64693
|
workspace_id: string;
|
|
@@ -64738,7 +64808,7 @@ export type Routes = {
|
|
|
64738
64808
|
status: 'error';
|
|
64739
64809
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
64740
64810
|
result: null;
|
|
64741
|
-
/** Action attempt to track the status of assigning
|
|
64811
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
64742
64812
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
64743
64813
|
error: {
|
|
64744
64814
|
/** Type of the error associated with the action attempt. */
|
|
@@ -66609,6 +66679,13 @@ export type Routes = {
|
|
|
66609
66679
|
created_at: string;
|
|
66610
66680
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66611
66681
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
66682
|
+
} | {
|
|
66683
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
66684
|
+
message: string;
|
|
66685
|
+
/** Date and time at which Seam created the warning. */
|
|
66686
|
+
created_at: string;
|
|
66687
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66688
|
+
warning_code: 'provider_issue';
|
|
66612
66689
|
} | {
|
|
66613
66690
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
66614
66691
|
message: string;
|
|
@@ -67962,6 +68039,13 @@ export type Routes = {
|
|
|
67962
68039
|
created_at: string;
|
|
67963
68040
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67964
68041
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
68042
|
+
} | {
|
|
68043
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68044
|
+
message: string;
|
|
68045
|
+
/** Date and time at which Seam created the warning. */
|
|
68046
|
+
created_at: string;
|
|
68047
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68048
|
+
warning_code: 'provider_issue';
|
|
67965
68049
|
} | {
|
|
67966
68050
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67967
68051
|
message: string;
|
|
@@ -69047,7 +69131,7 @@ export type Routes = {
|
|
|
69047
69131
|
result: null;
|
|
69048
69132
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
69049
69133
|
error: null;
|
|
69050
|
-
/** Action attempt to track the status of assigning
|
|
69134
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
69051
69135
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
69052
69136
|
} | {
|
|
69053
69137
|
/** ID of the action attempt. */
|
|
@@ -69055,9 +69139,9 @@ export type Routes = {
|
|
|
69055
69139
|
status: 'success';
|
|
69056
69140
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
69057
69141
|
error: null;
|
|
69058
|
-
/** Action attempt to track the status of assigning
|
|
69142
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
69059
69143
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
69060
|
-
/** Result of
|
|
69144
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
69061
69145
|
result: {
|
|
69062
69146
|
/** ID of the Seam workspace associated with the access method. */
|
|
69063
69147
|
workspace_id: string;
|
|
@@ -69178,7 +69262,7 @@ export type Routes = {
|
|
|
69178
69262
|
status: 'error';
|
|
69179
69263
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
69180
69264
|
result: null;
|
|
69181
|
-
/** Action attempt to track the status of assigning
|
|
69265
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
69182
69266
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
69183
69267
|
error: {
|
|
69184
69268
|
/** Type of the error associated with the action attempt. */
|
|
@@ -70739,7 +70823,7 @@ export type Routes = {
|
|
|
70739
70823
|
result: null;
|
|
70740
70824
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
70741
70825
|
error: null;
|
|
70742
|
-
/** Action attempt to track the status of assigning
|
|
70826
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
70743
70827
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
70744
70828
|
} | {
|
|
70745
70829
|
/** ID of the action attempt. */
|
|
@@ -70747,9 +70831,9 @@ export type Routes = {
|
|
|
70747
70831
|
status: 'success';
|
|
70748
70832
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
70749
70833
|
error: null;
|
|
70750
|
-
/** Action attempt to track the status of assigning
|
|
70834
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
70751
70835
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
70752
|
-
/** Result of
|
|
70836
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
70753
70837
|
result: {
|
|
70754
70838
|
/** ID of the Seam workspace associated with the access method. */
|
|
70755
70839
|
workspace_id: string;
|
|
@@ -70870,7 +70954,7 @@ export type Routes = {
|
|
|
70870
70954
|
status: 'error';
|
|
70871
70955
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
70872
70956
|
result: null;
|
|
70873
|
-
/** Action attempt to track the status of assigning
|
|
70957
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
70874
70958
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
70875
70959
|
error: {
|
|
70876
70960
|
/** Type of the error associated with the action attempt. */
|
|
@@ -72487,7 +72571,7 @@ export type Routes = {
|
|
|
72487
72571
|
result: null;
|
|
72488
72572
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
72489
72573
|
error: null;
|
|
72490
|
-
/** Action attempt to track the status of assigning
|
|
72574
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
72491
72575
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
72492
72576
|
} | {
|
|
72493
72577
|
/** ID of the action attempt. */
|
|
@@ -72495,9 +72579,9 @@ export type Routes = {
|
|
|
72495
72579
|
status: 'success';
|
|
72496
72580
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
72497
72581
|
error: null;
|
|
72498
|
-
/** Action attempt to track the status of assigning
|
|
72582
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
72499
72583
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
72500
|
-
/** Result of
|
|
72584
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
72501
72585
|
result: {
|
|
72502
72586
|
/** ID of the Seam workspace associated with the access method. */
|
|
72503
72587
|
workspace_id: string;
|
|
@@ -72618,7 +72702,7 @@ export type Routes = {
|
|
|
72618
72702
|
status: 'error';
|
|
72619
72703
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
72620
72704
|
result: null;
|
|
72621
|
-
/** Action attempt to track the status of assigning
|
|
72705
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
72622
72706
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
72623
72707
|
error: {
|
|
72624
72708
|
/** Type of the error associated with the action attempt. */
|
|
@@ -75208,7 +75292,7 @@ export type Routes = {
|
|
|
75208
75292
|
result: null;
|
|
75209
75293
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
75210
75294
|
error: null;
|
|
75211
|
-
/** Action attempt to track the status of assigning
|
|
75295
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
75212
75296
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
75213
75297
|
} | {
|
|
75214
75298
|
/** ID of the action attempt. */
|
|
@@ -75216,9 +75300,9 @@ export type Routes = {
|
|
|
75216
75300
|
status: 'success';
|
|
75217
75301
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
75218
75302
|
error: null;
|
|
75219
|
-
/** Action attempt to track the status of assigning
|
|
75303
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
75220
75304
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
75221
|
-
/** Result of
|
|
75305
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
75222
75306
|
result: {
|
|
75223
75307
|
/** ID of the Seam workspace associated with the access method. */
|
|
75224
75308
|
workspace_id: string;
|
|
@@ -75339,7 +75423,7 @@ export type Routes = {
|
|
|
75339
75423
|
status: 'error';
|
|
75340
75424
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
75341
75425
|
result: null;
|
|
75342
|
-
/** Action attempt to track the status of assigning
|
|
75426
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
75343
75427
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
75344
75428
|
error: {
|
|
75345
75429
|
/** Type of the error associated with the action attempt. */
|
|
@@ -82869,6 +82953,13 @@ export type Routes = {
|
|
|
82869
82953
|
created_at: string;
|
|
82870
82954
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82871
82955
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
82956
|
+
} | {
|
|
82957
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82958
|
+
message: string;
|
|
82959
|
+
/** Date and time at which Seam created the warning. */
|
|
82960
|
+
created_at: string;
|
|
82961
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82962
|
+
warning_code: 'provider_issue';
|
|
82872
82963
|
} | {
|
|
82873
82964
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82874
82965
|
message: string;
|
|
@@ -84695,7 +84786,7 @@ export type Routes = {
|
|
|
84695
84786
|
result: null;
|
|
84696
84787
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
84697
84788
|
error: null;
|
|
84698
|
-
/** Action attempt to track the status of assigning
|
|
84789
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
84699
84790
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
84700
84791
|
} | {
|
|
84701
84792
|
/** ID of the action attempt. */
|
|
@@ -84703,9 +84794,9 @@ export type Routes = {
|
|
|
84703
84794
|
status: 'success';
|
|
84704
84795
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
84705
84796
|
error: null;
|
|
84706
|
-
/** Action attempt to track the status of assigning
|
|
84797
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
84707
84798
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
84708
|
-
/** Result of
|
|
84799
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
84709
84800
|
result: {
|
|
84710
84801
|
/** ID of the Seam workspace associated with the access method. */
|
|
84711
84802
|
workspace_id: string;
|
|
@@ -84826,7 +84917,7 @@ export type Routes = {
|
|
|
84826
84917
|
status: 'error';
|
|
84827
84918
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
84828
84919
|
result: null;
|
|
84829
|
-
/** Action attempt to track the status of assigning
|
|
84920
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
84830
84921
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
84831
84922
|
error: {
|
|
84832
84923
|
/** Type of the error associated with the action attempt. */
|
|
@@ -86372,7 +86463,7 @@ export type Routes = {
|
|
|
86372
86463
|
result: null;
|
|
86373
86464
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
86374
86465
|
error: null;
|
|
86375
|
-
/** Action attempt to track the status of assigning
|
|
86466
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
86376
86467
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
86377
86468
|
} | {
|
|
86378
86469
|
/** ID of the action attempt. */
|
|
@@ -86380,9 +86471,9 @@ export type Routes = {
|
|
|
86380
86471
|
status: 'success';
|
|
86381
86472
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
86382
86473
|
error: null;
|
|
86383
|
-
/** Action attempt to track the status of assigning
|
|
86474
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
86384
86475
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
86385
|
-
/** Result of
|
|
86476
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
86386
86477
|
result: {
|
|
86387
86478
|
/** ID of the Seam workspace associated with the access method. */
|
|
86388
86479
|
workspace_id: string;
|
|
@@ -86503,7 +86594,7 @@ export type Routes = {
|
|
|
86503
86594
|
status: 'error';
|
|
86504
86595
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
86505
86596
|
result: null;
|
|
86506
|
-
/** Action attempt to track the status of assigning
|
|
86597
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
86507
86598
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
86508
86599
|
error: {
|
|
86509
86600
|
/** Type of the error associated with the action attempt. */
|
|
@@ -88155,7 +88246,7 @@ export type Routes = {
|
|
|
88155
88246
|
result: null;
|
|
88156
88247
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
88157
88248
|
error: null;
|
|
88158
|
-
/** Action attempt to track the status of assigning
|
|
88249
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
88159
88250
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
88160
88251
|
} | {
|
|
88161
88252
|
/** ID of the action attempt. */
|
|
@@ -88163,9 +88254,9 @@ export type Routes = {
|
|
|
88163
88254
|
status: 'success';
|
|
88164
88255
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
88165
88256
|
error: null;
|
|
88166
|
-
/** Action attempt to track the status of assigning
|
|
88257
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
88167
88258
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
88168
|
-
/** Result of
|
|
88259
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
88169
88260
|
result: {
|
|
88170
88261
|
/** ID of the Seam workspace associated with the access method. */
|
|
88171
88262
|
workspace_id: string;
|
|
@@ -88286,7 +88377,7 @@ export type Routes = {
|
|
|
88286
88377
|
status: 'error';
|
|
88287
88378
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
88288
88379
|
result: null;
|
|
88289
|
-
/** Action attempt to track the status of assigning
|
|
88380
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
88290
88381
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
88291
88382
|
error: {
|
|
88292
88383
|
/** Type of the error associated with the action attempt. */
|
|
@@ -90138,6 +90229,13 @@ export type Routes = {
|
|
|
90138
90229
|
created_at: string;
|
|
90139
90230
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90140
90231
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
90232
|
+
} | {
|
|
90233
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90234
|
+
message: string;
|
|
90235
|
+
/** Date and time at which Seam created the warning. */
|
|
90236
|
+
created_at: string;
|
|
90237
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90238
|
+
warning_code: 'provider_issue';
|
|
90141
90239
|
} | {
|
|
90142
90240
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90143
90241
|
message: string;
|
|
@@ -91217,7 +91315,7 @@ export type Routes = {
|
|
|
91217
91315
|
result: null;
|
|
91218
91316
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
91219
91317
|
error: null;
|
|
91220
|
-
/** Action attempt to track the status of assigning
|
|
91318
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
91221
91319
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
91222
91320
|
} | {
|
|
91223
91321
|
/** ID of the action attempt. */
|
|
@@ -91225,9 +91323,9 @@ export type Routes = {
|
|
|
91225
91323
|
status: 'success';
|
|
91226
91324
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
91227
91325
|
error: null;
|
|
91228
|
-
/** Action attempt to track the status of assigning
|
|
91326
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
91229
91327
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
91230
|
-
/** Result of
|
|
91328
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
91231
91329
|
result: {
|
|
91232
91330
|
/** ID of the Seam workspace associated with the access method. */
|
|
91233
91331
|
workspace_id: string;
|
|
@@ -91348,7 +91446,7 @@ export type Routes = {
|
|
|
91348
91446
|
status: 'error';
|
|
91349
91447
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
91350
91448
|
result: null;
|
|
91351
|
-
/** Action attempt to track the status of assigning
|
|
91449
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
91352
91450
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
91353
91451
|
error: {
|
|
91354
91452
|
/** Type of the error associated with the action attempt. */
|
|
@@ -92898,7 +92996,7 @@ export type Routes = {
|
|
|
92898
92996
|
result: null;
|
|
92899
92997
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
92900
92998
|
error: null;
|
|
92901
|
-
/** Action attempt to track the status of assigning
|
|
92999
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
92902
93000
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
92903
93001
|
} | {
|
|
92904
93002
|
/** ID of the action attempt. */
|
|
@@ -92906,9 +93004,9 @@ export type Routes = {
|
|
|
92906
93004
|
status: 'success';
|
|
92907
93005
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
92908
93006
|
error: null;
|
|
92909
|
-
/** Action attempt to track the status of assigning
|
|
93007
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
92910
93008
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
92911
|
-
/** Result of
|
|
93009
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
92912
93010
|
result: {
|
|
92913
93011
|
/** ID of the Seam workspace associated with the access method. */
|
|
92914
93012
|
workspace_id: string;
|
|
@@ -93029,7 +93127,7 @@ export type Routes = {
|
|
|
93029
93127
|
status: 'error';
|
|
93030
93128
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
93031
93129
|
result: null;
|
|
93032
|
-
/** Action attempt to track the status of assigning
|
|
93130
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
93033
93131
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
93034
93132
|
error: {
|
|
93035
93133
|
/** Type of the error associated with the action attempt. */
|
|
@@ -94900,6 +94998,13 @@ export type Routes = {
|
|
|
94900
94998
|
created_at: string;
|
|
94901
94999
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94902
95000
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
95001
|
+
} | {
|
|
95002
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95003
|
+
message: string;
|
|
95004
|
+
/** Date and time at which Seam created the warning. */
|
|
95005
|
+
created_at: string;
|
|
95006
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95007
|
+
warning_code: 'provider_issue';
|
|
94903
95008
|
} | {
|
|
94904
95009
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94905
95010
|
message: string;
|
|
@@ -96253,6 +96358,13 @@ export type Routes = {
|
|
|
96253
96358
|
created_at: string;
|
|
96254
96359
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96255
96360
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
96361
|
+
} | {
|
|
96362
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96363
|
+
message: string;
|
|
96364
|
+
/** Date and time at which Seam created the warning. */
|
|
96365
|
+
created_at: string;
|
|
96366
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96367
|
+
warning_code: 'provider_issue';
|
|
96256
96368
|
} | {
|
|
96257
96369
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96258
96370
|
message: string;
|
|
@@ -97328,7 +97440,7 @@ export type Routes = {
|
|
|
97328
97440
|
result: null;
|
|
97329
97441
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
97330
97442
|
error: null;
|
|
97331
|
-
/** Action attempt to track the status of assigning
|
|
97443
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
97332
97444
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
97333
97445
|
} | {
|
|
97334
97446
|
/** ID of the action attempt. */
|
|
@@ -97336,9 +97448,9 @@ export type Routes = {
|
|
|
97336
97448
|
status: 'success';
|
|
97337
97449
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
97338
97450
|
error: null;
|
|
97339
|
-
/** Action attempt to track the status of assigning
|
|
97451
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
97340
97452
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
97341
|
-
/** Result of
|
|
97453
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
97342
97454
|
result: {
|
|
97343
97455
|
/** ID of the Seam workspace associated with the access method. */
|
|
97344
97456
|
workspace_id: string;
|
|
@@ -97459,7 +97571,7 @@ export type Routes = {
|
|
|
97459
97571
|
status: 'error';
|
|
97460
97572
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
97461
97573
|
result: null;
|
|
97462
|
-
/** Action attempt to track the status of assigning
|
|
97574
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
97463
97575
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
97464
97576
|
error: {
|
|
97465
97577
|
/** Type of the error associated with the action attempt. */
|
|
@@ -99204,7 +99316,7 @@ export type Routes = {
|
|
|
99204
99316
|
result: null;
|
|
99205
99317
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
99206
99318
|
error: null;
|
|
99207
|
-
/** Action attempt to track the status of assigning
|
|
99319
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
99208
99320
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
99209
99321
|
} | {
|
|
99210
99322
|
/** ID of the action attempt. */
|
|
@@ -99212,9 +99324,9 @@ export type Routes = {
|
|
|
99212
99324
|
status: 'success';
|
|
99213
99325
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
99214
99326
|
error: null;
|
|
99215
|
-
/** Action attempt to track the status of assigning
|
|
99327
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
99216
99328
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
99217
|
-
/** Result of
|
|
99329
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
99218
99330
|
result: {
|
|
99219
99331
|
/** ID of the Seam workspace associated with the access method. */
|
|
99220
99332
|
workspace_id: string;
|
|
@@ -99335,7 +99447,7 @@ export type Routes = {
|
|
|
99335
99447
|
status: 'error';
|
|
99336
99448
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
99337
99449
|
result: null;
|
|
99338
|
-
/** Action attempt to track the status of assigning
|
|
99450
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
99339
99451
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
99340
99452
|
error: {
|
|
99341
99453
|
/** Type of the error associated with the action attempt. */
|
|
@@ -100908,7 +101020,7 @@ export type Routes = {
|
|
|
100908
101020
|
result: null;
|
|
100909
101021
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
100910
101022
|
error: null;
|
|
100911
|
-
/** Action attempt to track the status of assigning
|
|
101023
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
100912
101024
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
100913
101025
|
} | {
|
|
100914
101026
|
/** ID of the action attempt. */
|
|
@@ -100916,9 +101028,9 @@ export type Routes = {
|
|
|
100916
101028
|
status: 'success';
|
|
100917
101029
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
100918
101030
|
error: null;
|
|
100919
|
-
/** Action attempt to track the status of assigning
|
|
101031
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
100920
101032
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
100921
|
-
/** Result of
|
|
101033
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
100922
101034
|
result: {
|
|
100923
101035
|
/** ID of the Seam workspace associated with the access method. */
|
|
100924
101036
|
workspace_id: string;
|
|
@@ -101039,7 +101151,7 @@ export type Routes = {
|
|
|
101039
101151
|
status: 'error';
|
|
101040
101152
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
101041
101153
|
result: null;
|
|
101042
|
-
/** Action attempt to track the status of assigning
|
|
101154
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
101043
101155
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
101044
101156
|
error: {
|
|
101045
101157
|
/** Type of the error associated with the action attempt. */
|
|
@@ -102724,7 +102836,7 @@ export type Routes = {
|
|
|
102724
102836
|
result: null;
|
|
102725
102837
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
102726
102838
|
error: null;
|
|
102727
|
-
/** Action attempt to track the status of assigning
|
|
102839
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
102728
102840
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
102729
102841
|
} | {
|
|
102730
102842
|
/** ID of the action attempt. */
|
|
@@ -102732,9 +102844,9 @@ export type Routes = {
|
|
|
102732
102844
|
status: 'success';
|
|
102733
102845
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
102734
102846
|
error: null;
|
|
102735
|
-
/** Action attempt to track the status of assigning
|
|
102847
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
102736
102848
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
102737
|
-
/** Result of
|
|
102849
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
102738
102850
|
result: {
|
|
102739
102851
|
/** ID of the Seam workspace associated with the access method. */
|
|
102740
102852
|
workspace_id: string;
|
|
@@ -102855,7 +102967,7 @@ export type Routes = {
|
|
|
102855
102967
|
status: 'error';
|
|
102856
102968
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
102857
102969
|
result: null;
|
|
102858
|
-
/** Action attempt to track the status of assigning
|
|
102970
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
102859
102971
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
102860
102972
|
error: {
|
|
102861
102973
|
/** Type of the error associated with the action attempt. */
|
|
@@ -105244,6 +105356,13 @@ export type Routes = {
|
|
|
105244
105356
|
created_at: string;
|
|
105245
105357
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105246
105358
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
105359
|
+
} | {
|
|
105360
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105361
|
+
message: string;
|
|
105362
|
+
/** Date and time at which Seam created the warning. */
|
|
105363
|
+
created_at: string;
|
|
105364
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105365
|
+
warning_code: 'provider_issue';
|
|
105247
105366
|
} | {
|
|
105248
105367
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105249
105368
|
message: string;
|
|
@@ -106599,6 +106718,13 @@ export type Routes = {
|
|
|
106599
106718
|
created_at: string;
|
|
106600
106719
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106601
106720
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
106721
|
+
} | {
|
|
106722
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
106723
|
+
message: string;
|
|
106724
|
+
/** Date and time at which Seam created the warning. */
|
|
106725
|
+
created_at: string;
|
|
106726
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106727
|
+
warning_code: 'provider_issue';
|
|
106602
106728
|
} | {
|
|
106603
106729
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
106604
106730
|
message: string;
|
|
@@ -109150,6 +109276,13 @@ export type Routes = {
|
|
|
109150
109276
|
created_at: string;
|
|
109151
109277
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109152
109278
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
109279
|
+
} | {
|
|
109280
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109281
|
+
message: string;
|
|
109282
|
+
/** Date and time at which Seam created the warning. */
|
|
109283
|
+
created_at: string;
|
|
109284
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109285
|
+
warning_code: 'provider_issue';
|
|
109153
109286
|
} | {
|
|
109154
109287
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109155
109288
|
message: string;
|
|
@@ -110948,7 +111081,7 @@ export type Routes = {
|
|
|
110948
111081
|
result: null;
|
|
110949
111082
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
110950
111083
|
error: null;
|
|
110951
|
-
/** Action attempt to track the status of assigning
|
|
111084
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
110952
111085
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
110953
111086
|
} | {
|
|
110954
111087
|
/** ID of the action attempt. */
|
|
@@ -110956,9 +111089,9 @@ export type Routes = {
|
|
|
110956
111089
|
status: 'success';
|
|
110957
111090
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
110958
111091
|
error: null;
|
|
110959
|
-
/** Action attempt to track the status of assigning
|
|
111092
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
110960
111093
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
110961
|
-
/** Result of
|
|
111094
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
110962
111095
|
result: {
|
|
110963
111096
|
/** ID of the Seam workspace associated with the access method. */
|
|
110964
111097
|
workspace_id: string;
|
|
@@ -111079,7 +111212,7 @@ export type Routes = {
|
|
|
111079
111212
|
status: 'error';
|
|
111080
111213
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
111081
111214
|
result: null;
|
|
111082
|
-
/** Action attempt to track the status of assigning
|
|
111215
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
111083
111216
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
111084
111217
|
error: {
|
|
111085
111218
|
/** Type of the error associated with the action attempt. */
|
|
@@ -112387,6 +112520,13 @@ export type Routes = {
|
|
|
112387
112520
|
created_at: string;
|
|
112388
112521
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112389
112522
|
warning_code: 'hub_required_for_additional_capabilities';
|
|
112523
|
+
} | {
|
|
112524
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
112525
|
+
message: string;
|
|
112526
|
+
/** Date and time at which Seam created the warning. */
|
|
112527
|
+
created_at: string;
|
|
112528
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112529
|
+
warning_code: 'provider_issue';
|
|
112390
112530
|
} | {
|
|
112391
112531
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
112392
112532
|
message: string;
|
|
@@ -118447,7 +118587,7 @@ export type Routes = {
|
|
|
118447
118587
|
result: null;
|
|
118448
118588
|
/** Errors associated with the action attempt. Null for pending action attempts. */
|
|
118449
118589
|
error: null;
|
|
118450
|
-
/** Action attempt to track the status of assigning
|
|
118590
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
118451
118591
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
118452
118592
|
} | {
|
|
118453
118593
|
/** ID of the action attempt. */
|
|
@@ -118455,9 +118595,9 @@ export type Routes = {
|
|
|
118455
118595
|
status: 'success';
|
|
118456
118596
|
/** Errors associated with the action attempt. Null for successful action attempts. */
|
|
118457
118597
|
error: null;
|
|
118458
|
-
/** Action attempt to track the status of assigning
|
|
118598
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
118459
118599
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
118460
|
-
/** Result of
|
|
118600
|
+
/** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
|
|
118461
118601
|
result: {
|
|
118462
118602
|
/** ID of the Seam workspace associated with the access method. */
|
|
118463
118603
|
workspace_id: string;
|
|
@@ -118578,7 +118718,7 @@ export type Routes = {
|
|
|
118578
118718
|
status: 'error';
|
|
118579
118719
|
/** Result of the action attempt. Null for failed action attempts. */
|
|
118580
118720
|
result: null;
|
|
118581
|
-
/** Action attempt to track the status of assigning
|
|
118721
|
+
/** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
|
|
118582
118722
|
action_type: 'ASSIGN_CREDENTIAL';
|
|
118583
118723
|
error: {
|
|
118584
118724
|
/** Type of the error associated with the action attempt. */
|