@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.
@@ -15658,6 +15658,19 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
15658
15658
  }>, z.ZodObject<{
15659
15659
  message: z.ZodString;
15660
15660
  created_at: z.ZodString;
15661
+ } & {
15662
+ warning_code: z.ZodLiteral<"provider_issue">;
15663
+ }, "strip", z.ZodTypeAny, {
15664
+ message: string;
15665
+ created_at: string;
15666
+ warning_code: "provider_issue";
15667
+ }, {
15668
+ message: string;
15669
+ created_at: string;
15670
+ warning_code: "provider_issue";
15671
+ }>, z.ZodObject<{
15672
+ message: z.ZodString;
15673
+ created_at: z.ZodString;
15661
15674
  } & {
15662
15675
  warning_code: z.ZodLiteral<"keynest_unsupported_locker">;
15663
15676
  }, "strip", z.ZodTypeAny, {
@@ -18743,6 +18756,19 @@ declare const device: z.ZodObject<{
18743
18756
  }>, z.ZodObject<{
18744
18757
  message: z.ZodString;
18745
18758
  created_at: z.ZodString;
18759
+ } & {
18760
+ warning_code: z.ZodLiteral<"provider_issue">;
18761
+ }, "strip", z.ZodTypeAny, {
18762
+ message: string;
18763
+ created_at: string;
18764
+ warning_code: "provider_issue";
18765
+ }, {
18766
+ message: string;
18767
+ created_at: string;
18768
+ warning_code: "provider_issue";
18769
+ }>, z.ZodObject<{
18770
+ message: z.ZodString;
18771
+ created_at: z.ZodString;
18746
18772
  } & {
18747
18773
  warning_code: z.ZodLiteral<"keynest_unsupported_locker">;
18748
18774
  }, "strip", z.ZodTypeAny, {
@@ -19050,6 +19076,10 @@ declare const device: z.ZodObject<{
19050
19076
  message: string;
19051
19077
  created_at: string;
19052
19078
  warning_code: "hub_required_for_additional_capabilities";
19079
+ } | {
19080
+ message: string;
19081
+ created_at: string;
19082
+ warning_code: "provider_issue";
19053
19083
  } | {
19054
19084
  message: string;
19055
19085
  created_at: string;
@@ -19789,6 +19819,10 @@ declare const device: z.ZodObject<{
19789
19819
  message: string;
19790
19820
  created_at: string;
19791
19821
  warning_code: "hub_required_for_additional_capabilities";
19822
+ } | {
19823
+ message: string;
19824
+ created_at: string;
19825
+ warning_code: "provider_issue";
19792
19826
  } | {
19793
19827
  message: string;
19794
19828
  created_at: string;
@@ -23499,6 +23533,19 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23499
23533
  }>, z.ZodObject<{
23500
23534
  message: z.ZodString;
23501
23535
  created_at: z.ZodString;
23536
+ } & {
23537
+ warning_code: z.ZodLiteral<"provider_issue">;
23538
+ }, "strip", z.ZodTypeAny, {
23539
+ message: string;
23540
+ created_at: string;
23541
+ warning_code: "provider_issue";
23542
+ }, {
23543
+ message: string;
23544
+ created_at: string;
23545
+ warning_code: "provider_issue";
23546
+ }>, z.ZodObject<{
23547
+ message: z.ZodString;
23548
+ created_at: z.ZodString;
23502
23549
  } & {
23503
23550
  warning_code: z.ZodLiteral<"keynest_unsupported_locker">;
23504
23551
  }, "strip", z.ZodTypeAny, {
@@ -23962,6 +24009,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23962
24009
  message: string;
23963
24010
  created_at: string;
23964
24011
  warning_code: "hub_required_for_additional_capabilities";
24012
+ } | {
24013
+ message: string;
24014
+ created_at: string;
24015
+ warning_code: "provider_issue";
23965
24016
  } | {
23966
24017
  message: string;
23967
24018
  created_at: string;
@@ -24227,6 +24278,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
24227
24278
  message: string;
24228
24279
  created_at: string;
24229
24280
  warning_code: "hub_required_for_additional_capabilities";
24281
+ } | {
24282
+ message: string;
24283
+ created_at: string;
24284
+ warning_code: "provider_issue";
24230
24285
  } | {
24231
24286
  message: string;
24232
24287
  created_at: string;
@@ -30858,7 +30913,7 @@ type Routes = {
30858
30913
  result: null;
30859
30914
  /** Errors associated with the action attempt. Null for pending action attempts. */
30860
30915
  error: null;
30861
- /** Action attempt to track the status of assigning an existing credential to an access method. */
30916
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
30862
30917
  action_type: 'ASSIGN_CREDENTIAL';
30863
30918
  } | {
30864
30919
  /** ID of the action attempt. */
@@ -30866,9 +30921,9 @@ type Routes = {
30866
30921
  status: 'success';
30867
30922
  /** Errors associated with the action attempt. Null for successful action attempts. */
30868
30923
  error: null;
30869
- /** Action attempt to track the status of assigning an existing credential to an access method. */
30924
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
30870
30925
  action_type: 'ASSIGN_CREDENTIAL';
30871
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
30926
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
30872
30927
  result: {
30873
30928
  /** ID of the Seam workspace associated with the access method. */
30874
30929
  workspace_id: string;
@@ -30989,7 +31044,7 @@ type Routes = {
30989
31044
  status: 'error';
30990
31045
  /** Result of the action attempt. Null for failed action attempts. */
30991
31046
  result: null;
30992
- /** Action attempt to track the status of assigning an existing credential to an access method. */
31047
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
30993
31048
  action_type: 'ASSIGN_CREDENTIAL';
30994
31049
  error: {
30995
31050
  /** Type of the error associated with the action attempt. */
@@ -33857,7 +33912,7 @@ type Routes = {
33857
33912
  result: null;
33858
33913
  /** Errors associated with the action attempt. Null for pending action attempts. */
33859
33914
  error: null;
33860
- /** Action attempt to track the status of assigning an existing credential to an access method. */
33915
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
33861
33916
  action_type: 'ASSIGN_CREDENTIAL';
33862
33917
  } | {
33863
33918
  /** ID of the action attempt. */
@@ -33865,9 +33920,9 @@ type Routes = {
33865
33920
  status: 'success';
33866
33921
  /** Errors associated with the action attempt. Null for successful action attempts. */
33867
33922
  error: null;
33868
- /** Action attempt to track the status of assigning an existing credential to an access method. */
33923
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
33869
33924
  action_type: 'ASSIGN_CREDENTIAL';
33870
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
33925
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
33871
33926
  result: {
33872
33927
  /** ID of the Seam workspace associated with the access method. */
33873
33928
  workspace_id: string;
@@ -33988,7 +34043,7 @@ type Routes = {
33988
34043
  status: 'error';
33989
34044
  /** Result of the action attempt. Null for failed action attempts. */
33990
34045
  result: null;
33991
- /** Action attempt to track the status of assigning an existing credential to an access method. */
34046
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
33992
34047
  action_type: 'ASSIGN_CREDENTIAL';
33993
34048
  error: {
33994
34049
  /** Type of the error associated with the action attempt. */
@@ -38862,7 +38917,7 @@ type Routes = {
38862
38917
  result: null;
38863
38918
  /** Errors associated with the action attempt. Null for pending action attempts. */
38864
38919
  error: null;
38865
- /** Action attempt to track the status of assigning an existing credential to an access method. */
38920
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
38866
38921
  action_type: 'ASSIGN_CREDENTIAL';
38867
38922
  } | {
38868
38923
  /** ID of the action attempt. */
@@ -38870,9 +38925,9 @@ type Routes = {
38870
38925
  status: 'success';
38871
38926
  /** Errors associated with the action attempt. Null for successful action attempts. */
38872
38927
  error: null;
38873
- /** Action attempt to track the status of assigning an existing credential to an access method. */
38928
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
38874
38929
  action_type: 'ASSIGN_CREDENTIAL';
38875
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
38930
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
38876
38931
  result: {
38877
38932
  /** ID of the Seam workspace associated with the access method. */
38878
38933
  workspace_id: string;
@@ -38993,7 +39048,7 @@ type Routes = {
38993
39048
  status: 'error';
38994
39049
  /** Result of the action attempt. Null for failed action attempts. */
38995
39050
  result: null;
38996
- /** Action attempt to track the status of assigning an existing credential to an access method. */
39051
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
38997
39052
  action_type: 'ASSIGN_CREDENTIAL';
38998
39053
  error: {
38999
39054
  /** Type of the error associated with the action attempt. */
@@ -41743,7 +41798,7 @@ type Routes = {
41743
41798
  result: null;
41744
41799
  /** Errors associated with the action attempt. Null for pending action attempts. */
41745
41800
  error: null;
41746
- /** Action attempt to track the status of assigning an existing credential to an access method. */
41801
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
41747
41802
  action_type: 'ASSIGN_CREDENTIAL';
41748
41803
  } | {
41749
41804
  /** ID of the action attempt. */
@@ -41751,9 +41806,9 @@ type Routes = {
41751
41806
  status: 'success';
41752
41807
  /** Errors associated with the action attempt. Null for successful action attempts. */
41753
41808
  error: null;
41754
- /** Action attempt to track the status of assigning an existing credential to an access method. */
41809
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
41755
41810
  action_type: 'ASSIGN_CREDENTIAL';
41756
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
41811
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
41757
41812
  result: {
41758
41813
  /** ID of the Seam workspace associated with the access method. */
41759
41814
  workspace_id: string;
@@ -41874,7 +41929,7 @@ type Routes = {
41874
41929
  status: 'error';
41875
41930
  /** Result of the action attempt. Null for failed action attempts. */
41876
41931
  result: null;
41877
- /** Action attempt to track the status of assigning an existing credential to an access method. */
41932
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
41878
41933
  action_type: 'ASSIGN_CREDENTIAL';
41879
41934
  error: {
41880
41935
  /** Type of the error associated with the action attempt. */
@@ -44231,6 +44286,13 @@ type Routes = {
44231
44286
  created_at: string;
44232
44287
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
44233
44288
  warning_code: 'hub_required_for_additional_capabilities';
44289
+ } | {
44290
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
44291
+ message: string;
44292
+ /** Date and time at which Seam created the warning. */
44293
+ created_at: string;
44294
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
44295
+ warning_code: 'provider_issue';
44234
44296
  } | {
44235
44297
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
44236
44298
  message: string;
@@ -46948,7 +47010,7 @@ type Routes = {
46948
47010
  result: null;
46949
47011
  /** Errors associated with the action attempt. Null for pending action attempts. */
46950
47012
  error: null;
46951
- /** Action attempt to track the status of assigning an existing credential to an access method. */
47013
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
46952
47014
  action_type: 'ASSIGN_CREDENTIAL';
46953
47015
  } | {
46954
47016
  /** ID of the action attempt. */
@@ -46956,9 +47018,9 @@ type Routes = {
46956
47018
  status: 'success';
46957
47019
  /** Errors associated with the action attempt. Null for successful action attempts. */
46958
47020
  error: null;
46959
- /** Action attempt to track the status of assigning an existing credential to an access method. */
47021
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
46960
47022
  action_type: 'ASSIGN_CREDENTIAL';
46961
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
47023
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
46962
47024
  result: {
46963
47025
  /** ID of the Seam workspace associated with the access method. */
46964
47026
  workspace_id: string;
@@ -47079,7 +47141,7 @@ type Routes = {
47079
47141
  status: 'error';
47080
47142
  /** Result of the action attempt. Null for failed action attempts. */
47081
47143
  result: null;
47082
- /** Action attempt to track the status of assigning an existing credential to an access method. */
47144
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
47083
47145
  action_type: 'ASSIGN_CREDENTIAL';
47084
47146
  error: {
47085
47147
  /** Type of the error associated with the action attempt. */
@@ -48640,7 +48702,7 @@ type Routes = {
48640
48702
  result: null;
48641
48703
  /** Errors associated with the action attempt. Null for pending action attempts. */
48642
48704
  error: null;
48643
- /** Action attempt to track the status of assigning an existing credential to an access method. */
48705
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
48644
48706
  action_type: 'ASSIGN_CREDENTIAL';
48645
48707
  } | {
48646
48708
  /** ID of the action attempt. */
@@ -48648,9 +48710,9 @@ type Routes = {
48648
48710
  status: 'success';
48649
48711
  /** Errors associated with the action attempt. Null for successful action attempts. */
48650
48712
  error: null;
48651
- /** Action attempt to track the status of assigning an existing credential to an access method. */
48713
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
48652
48714
  action_type: 'ASSIGN_CREDENTIAL';
48653
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
48715
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
48654
48716
  result: {
48655
48717
  /** ID of the Seam workspace associated with the access method. */
48656
48718
  workspace_id: string;
@@ -48771,7 +48833,7 @@ type Routes = {
48771
48833
  status: 'error';
48772
48834
  /** Result of the action attempt. Null for failed action attempts. */
48773
48835
  result: null;
48774
- /** Action attempt to track the status of assigning an existing credential to an access method. */
48836
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
48775
48837
  action_type: 'ASSIGN_CREDENTIAL';
48776
48838
  error: {
48777
48839
  /** Type of the error associated with the action attempt. */
@@ -50771,6 +50833,13 @@ type Routes = {
50771
50833
  created_at: string;
50772
50834
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
50773
50835
  warning_code: 'hub_required_for_additional_capabilities';
50836
+ } | {
50837
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
50838
+ message: string;
50839
+ /** Date and time at which Seam created the warning. */
50840
+ created_at: string;
50841
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
50842
+ warning_code: 'provider_issue';
50774
50843
  } | {
50775
50844
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
50776
50845
  message: string;
@@ -52643,7 +52712,7 @@ type Routes = {
52643
52712
  result: null;
52644
52713
  /** Errors associated with the action attempt. Null for pending action attempts. */
52645
52714
  error: null;
52646
- /** Action attempt to track the status of assigning an existing credential to an access method. */
52715
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
52647
52716
  action_type: 'ASSIGN_CREDENTIAL';
52648
52717
  } | {
52649
52718
  /** ID of the action attempt. */
@@ -52651,9 +52720,9 @@ type Routes = {
52651
52720
  status: 'success';
52652
52721
  /** Errors associated with the action attempt. Null for successful action attempts. */
52653
52722
  error: null;
52654
- /** Action attempt to track the status of assigning an existing credential to an access method. */
52723
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
52655
52724
  action_type: 'ASSIGN_CREDENTIAL';
52656
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
52725
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
52657
52726
  result: {
52658
52727
  /** ID of the Seam workspace associated with the access method. */
52659
52728
  workspace_id: string;
@@ -52774,7 +52843,7 @@ type Routes = {
52774
52843
  status: 'error';
52775
52844
  /** Result of the action attempt. Null for failed action attempts. */
52776
52845
  result: null;
52777
- /** Action attempt to track the status of assigning an existing credential to an access method. */
52846
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
52778
52847
  action_type: 'ASSIGN_CREDENTIAL';
52779
52848
  error: {
52780
52849
  /** Type of the error associated with the action attempt. */
@@ -57517,7 +57586,7 @@ type Routes = {
57517
57586
  result: null;
57518
57587
  /** Errors associated with the action attempt. Null for pending action attempts. */
57519
57588
  error: null;
57520
- /** Action attempt to track the status of assigning an existing credential to an access method. */
57589
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
57521
57590
  action_type: 'ASSIGN_CREDENTIAL';
57522
57591
  } | {
57523
57592
  /** ID of the action attempt. */
@@ -57525,9 +57594,9 @@ type Routes = {
57525
57594
  status: 'success';
57526
57595
  /** Errors associated with the action attempt. Null for successful action attempts. */
57527
57596
  error: null;
57528
- /** Action attempt to track the status of assigning an existing credential to an access method. */
57597
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
57529
57598
  action_type: 'ASSIGN_CREDENTIAL';
57530
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
57599
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
57531
57600
  result: {
57532
57601
  /** ID of the Seam workspace associated with the access method. */
57533
57602
  workspace_id: string;
@@ -57648,7 +57717,7 @@ type Routes = {
57648
57717
  status: 'error';
57649
57718
  /** Result of the action attempt. Null for failed action attempts. */
57650
57719
  result: null;
57651
- /** Action attempt to track the status of assigning an existing credential to an access method. */
57720
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
57652
57721
  action_type: 'ASSIGN_CREDENTIAL';
57653
57722
  error: {
57654
57723
  /** Type of the error associated with the action attempt. */
@@ -59301,7 +59370,7 @@ type Routes = {
59301
59370
  result: null;
59302
59371
  /** Errors associated with the action attempt. Null for pending action attempts. */
59303
59372
  error: null;
59304
- /** Action attempt to track the status of assigning an existing credential to an access method. */
59373
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
59305
59374
  action_type: 'ASSIGN_CREDENTIAL';
59306
59375
  } | {
59307
59376
  /** ID of the action attempt. */
@@ -59309,9 +59378,9 @@ type Routes = {
59309
59378
  status: 'success';
59310
59379
  /** Errors associated with the action attempt. Null for successful action attempts. */
59311
59380
  error: null;
59312
- /** Action attempt to track the status of assigning an existing credential to an access method. */
59381
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
59313
59382
  action_type: 'ASSIGN_CREDENTIAL';
59314
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
59383
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
59315
59384
  result: {
59316
59385
  /** ID of the Seam workspace associated with the access method. */
59317
59386
  workspace_id: string;
@@ -59432,7 +59501,7 @@ type Routes = {
59432
59501
  status: 'error';
59433
59502
  /** Result of the action attempt. Null for failed action attempts. */
59434
59503
  result: null;
59435
- /** Action attempt to track the status of assigning an existing credential to an access method. */
59504
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
59436
59505
  action_type: 'ASSIGN_CREDENTIAL';
59437
59506
  error: {
59438
59507
  /** Type of the error associated with the action attempt. */
@@ -60981,7 +61050,7 @@ type Routes = {
60981
61050
  result: null;
60982
61051
  /** Errors associated with the action attempt. Null for pending action attempts. */
60983
61052
  error: null;
60984
- /** Action attempt to track the status of assigning an existing credential to an access method. */
61053
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
60985
61054
  action_type: 'ASSIGN_CREDENTIAL';
60986
61055
  } | {
60987
61056
  /** ID of the action attempt. */
@@ -60989,9 +61058,9 @@ type Routes = {
60989
61058
  status: 'success';
60990
61059
  /** Errors associated with the action attempt. Null for successful action attempts. */
60991
61060
  error: null;
60992
- /** Action attempt to track the status of assigning an existing credential to an access method. */
61061
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
60993
61062
  action_type: 'ASSIGN_CREDENTIAL';
60994
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
61063
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
60995
61064
  result: {
60996
61065
  /** ID of the Seam workspace associated with the access method. */
60997
61066
  workspace_id: string;
@@ -61112,7 +61181,7 @@ type Routes = {
61112
61181
  status: 'error';
61113
61182
  /** Result of the action attempt. Null for failed action attempts. */
61114
61183
  result: null;
61115
- /** Action attempt to track the status of assigning an existing credential to an access method. */
61184
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
61116
61185
  action_type: 'ASSIGN_CREDENTIAL';
61117
61186
  error: {
61118
61187
  /** Type of the error associated with the action attempt. */
@@ -63320,7 +63389,7 @@ type Routes = {
63320
63389
  result: null;
63321
63390
  /** Errors associated with the action attempt. Null for pending action attempts. */
63322
63391
  error: null;
63323
- /** Action attempt to track the status of assigning an existing credential to an access method. */
63392
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
63324
63393
  action_type: 'ASSIGN_CREDENTIAL';
63325
63394
  } | {
63326
63395
  /** ID of the action attempt. */
@@ -63328,9 +63397,9 @@ type Routes = {
63328
63397
  status: 'success';
63329
63398
  /** Errors associated with the action attempt. Null for successful action attempts. */
63330
63399
  error: null;
63331
- /** Action attempt to track the status of assigning an existing credential to an access method. */
63400
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
63332
63401
  action_type: 'ASSIGN_CREDENTIAL';
63333
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
63402
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
63334
63403
  result: {
63335
63404
  /** ID of the Seam workspace associated with the access method. */
63336
63405
  workspace_id: string;
@@ -63451,7 +63520,7 @@ type Routes = {
63451
63520
  status: 'error';
63452
63521
  /** Result of the action attempt. Null for failed action attempts. */
63453
63522
  result: null;
63454
- /** Action attempt to track the status of assigning an existing credential to an access method. */
63523
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
63455
63524
  action_type: 'ASSIGN_CREDENTIAL';
63456
63525
  error: {
63457
63526
  /** Type of the error associated with the action attempt. */
@@ -67183,7 +67252,7 @@ type Routes = {
67183
67252
  result: null;
67184
67253
  /** Errors associated with the action attempt. Null for pending action attempts. */
67185
67254
  error: null;
67186
- /** Action attempt to track the status of assigning an existing credential to an access method. */
67255
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
67187
67256
  action_type: 'ASSIGN_CREDENTIAL';
67188
67257
  } | {
67189
67258
  /** ID of the action attempt. */
@@ -67191,9 +67260,9 @@ type Routes = {
67191
67260
  status: 'success';
67192
67261
  /** Errors associated with the action attempt. Null for successful action attempts. */
67193
67262
  error: null;
67194
- /** Action attempt to track the status of assigning an existing credential to an access method. */
67263
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
67195
67264
  action_type: 'ASSIGN_CREDENTIAL';
67196
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
67265
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
67197
67266
  result: {
67198
67267
  /** ID of the Seam workspace associated with the access method. */
67199
67268
  workspace_id: string;
@@ -67314,7 +67383,7 @@ type Routes = {
67314
67383
  status: 'error';
67315
67384
  /** Result of the action attempt. Null for failed action attempts. */
67316
67385
  result: null;
67317
- /** Action attempt to track the status of assigning an existing credential to an access method. */
67386
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
67318
67387
  action_type: 'ASSIGN_CREDENTIAL';
67319
67388
  error: {
67320
67389
  /** Type of the error associated with the action attempt. */
@@ -68855,7 +68924,7 @@ type Routes = {
68855
68924
  result: null;
68856
68925
  /** Errors associated with the action attempt. Null for pending action attempts. */
68857
68926
  error: null;
68858
- /** Action attempt to track the status of assigning an existing credential to an access method. */
68927
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
68859
68928
  action_type: 'ASSIGN_CREDENTIAL';
68860
68929
  } | {
68861
68930
  /** ID of the action attempt. */
@@ -68863,9 +68932,9 @@ type Routes = {
68863
68932
  status: 'success';
68864
68933
  /** Errors associated with the action attempt. Null for successful action attempts. */
68865
68934
  error: null;
68866
- /** Action attempt to track the status of assigning an existing credential to an access method. */
68935
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
68867
68936
  action_type: 'ASSIGN_CREDENTIAL';
68868
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
68937
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
68869
68938
  result: {
68870
68939
  /** ID of the Seam workspace associated with the access method. */
68871
68940
  workspace_id: string;
@@ -68986,7 +69055,7 @@ type Routes = {
68986
69055
  status: 'error';
68987
69056
  /** Result of the action attempt. Null for failed action attempts. */
68988
69057
  result: null;
68989
- /** Action attempt to track the status of assigning an existing credential to an access method. */
69058
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
68990
69059
  action_type: 'ASSIGN_CREDENTIAL';
68991
69060
  error: {
68992
69061
  /** Type of the error associated with the action attempt. */
@@ -72878,6 +72947,13 @@ type Routes = {
72878
72947
  created_at: string;
72879
72948
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
72880
72949
  warning_code: 'hub_required_for_additional_capabilities';
72950
+ } | {
72951
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
72952
+ message: string;
72953
+ /** Date and time at which Seam created the warning. */
72954
+ created_at: string;
72955
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
72956
+ warning_code: 'provider_issue';
72881
72957
  } | {
72882
72958
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
72883
72959
  message: string;
@@ -74282,6 +74358,13 @@ type Routes = {
74282
74358
  created_at: string;
74283
74359
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
74284
74360
  warning_code: 'hub_required_for_additional_capabilities';
74361
+ } | {
74362
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
74363
+ message: string;
74364
+ /** Date and time at which Seam created the warning. */
74365
+ created_at: string;
74366
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
74367
+ warning_code: 'provider_issue';
74285
74368
  } | {
74286
74369
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
74287
74370
  message: string;
@@ -74855,6 +74938,13 @@ type Routes = {
74855
74938
  created_at: string;
74856
74939
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
74857
74940
  warning_code: 'hub_required_for_additional_capabilities';
74941
+ } | {
74942
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
74943
+ message: string;
74944
+ /** Date and time at which Seam created the warning. */
74945
+ created_at: string;
74946
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
74947
+ warning_code: 'provider_issue';
74858
74948
  } | {
74859
74949
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
74860
74950
  message: string;
@@ -75353,6 +75443,13 @@ type Routes = {
75353
75443
  created_at: string;
75354
75444
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
75355
75445
  warning_code: 'hub_required_for_additional_capabilities';
75446
+ } | {
75447
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
75448
+ message: string;
75449
+ /** Date and time at which Seam created the warning. */
75450
+ created_at: string;
75451
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
75452
+ warning_code: 'provider_issue';
75356
75453
  } | {
75357
75454
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
75358
75455
  message: string;
@@ -82276,7 +82373,7 @@ type Routes = {
82276
82373
  result: null;
82277
82374
  /** Errors associated with the action attempt. Null for pending action attempts. */
82278
82375
  error: null;
82279
- /** Action attempt to track the status of assigning an existing credential to an access method. */
82376
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
82280
82377
  action_type: 'ASSIGN_CREDENTIAL';
82281
82378
  } | {
82282
82379
  /** ID of the action attempt. */
@@ -82284,9 +82381,9 @@ type Routes = {
82284
82381
  status: 'success';
82285
82382
  /** Errors associated with the action attempt. Null for successful action attempts. */
82286
82383
  error: null;
82287
- /** Action attempt to track the status of assigning an existing credential to an access method. */
82384
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
82288
82385
  action_type: 'ASSIGN_CREDENTIAL';
82289
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
82386
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
82290
82387
  result: {
82291
82388
  /** ID of the Seam workspace associated with the access method. */
82292
82389
  workspace_id: string;
@@ -82407,7 +82504,7 @@ type Routes = {
82407
82504
  status: 'error';
82408
82505
  /** Result of the action attempt. Null for failed action attempts. */
82409
82506
  result: null;
82410
- /** Action attempt to track the status of assigning an existing credential to an access method. */
82507
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
82411
82508
  action_type: 'ASSIGN_CREDENTIAL';
82412
82509
  error: {
82413
82510
  /** Type of the error associated with the action attempt. */
@@ -84244,6 +84341,13 @@ type Routes = {
84244
84341
  created_at: string;
84245
84342
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
84246
84343
  warning_code: 'hub_required_for_additional_capabilities';
84344
+ } | {
84345
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
84346
+ message: string;
84347
+ /** Date and time at which Seam created the warning. */
84348
+ created_at: string;
84349
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
84350
+ warning_code: 'provider_issue';
84247
84351
  } | {
84248
84352
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
84249
84353
  message: string;
@@ -85598,6 +85702,13 @@ type Routes = {
85598
85702
  created_at: string;
85599
85703
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
85600
85704
  warning_code: 'hub_required_for_additional_capabilities';
85705
+ } | {
85706
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
85707
+ message: string;
85708
+ /** Date and time at which Seam created the warning. */
85709
+ created_at: string;
85710
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
85711
+ warning_code: 'provider_issue';
85601
85712
  } | {
85602
85713
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
85603
85714
  message: string;
@@ -87002,6 +87113,13 @@ type Routes = {
87002
87113
  created_at: string;
87003
87114
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
87004
87115
  warning_code: 'hub_required_for_additional_capabilities';
87116
+ } | {
87117
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
87118
+ message: string;
87119
+ /** Date and time at which Seam created the warning. */
87120
+ created_at: string;
87121
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
87122
+ warning_code: 'provider_issue';
87005
87123
  } | {
87006
87124
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
87007
87125
  message: string;
@@ -88355,6 +88473,13 @@ type Routes = {
88355
88473
  created_at: string;
88356
88474
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
88357
88475
  warning_code: 'hub_required_for_additional_capabilities';
88476
+ } | {
88477
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
88478
+ message: string;
88479
+ /** Date and time at which Seam created the warning. */
88480
+ created_at: string;
88481
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
88482
+ warning_code: 'provider_issue';
88358
88483
  } | {
88359
88484
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
88360
88485
  message: string;
@@ -89430,7 +89555,7 @@ type Routes = {
89430
89555
  result: null;
89431
89556
  /** Errors associated with the action attempt. Null for pending action attempts. */
89432
89557
  error: null;
89433
- /** Action attempt to track the status of assigning an existing credential to an access method. */
89558
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
89434
89559
  action_type: 'ASSIGN_CREDENTIAL';
89435
89560
  } | {
89436
89561
  /** ID of the action attempt. */
@@ -89438,9 +89563,9 @@ type Routes = {
89438
89563
  status: 'success';
89439
89564
  /** Errors associated with the action attempt. Null for successful action attempts. */
89440
89565
  error: null;
89441
- /** Action attempt to track the status of assigning an existing credential to an access method. */
89566
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
89442
89567
  action_type: 'ASSIGN_CREDENTIAL';
89443
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
89568
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
89444
89569
  result: {
89445
89570
  /** ID of the Seam workspace associated with the access method. */
89446
89571
  workspace_id: string;
@@ -89561,7 +89686,7 @@ type Routes = {
89561
89686
  status: 'error';
89562
89687
  /** Result of the action attempt. Null for failed action attempts. */
89563
89688
  result: null;
89564
- /** Action attempt to track the status of assigning an existing credential to an access method. */
89689
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
89565
89690
  action_type: 'ASSIGN_CREDENTIAL';
89566
89691
  error: {
89567
89692
  /** Type of the error associated with the action attempt. */
@@ -91103,7 +91228,7 @@ type Routes = {
91103
91228
  result: null;
91104
91229
  /** Errors associated with the action attempt. Null for pending action attempts. */
91105
91230
  error: null;
91106
- /** Action attempt to track the status of assigning an existing credential to an access method. */
91231
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
91107
91232
  action_type: 'ASSIGN_CREDENTIAL';
91108
91233
  } | {
91109
91234
  /** ID of the action attempt. */
@@ -91111,9 +91236,9 @@ type Routes = {
91111
91236
  status: 'success';
91112
91237
  /** Errors associated with the action attempt. Null for successful action attempts. */
91113
91238
  error: null;
91114
- /** Action attempt to track the status of assigning an existing credential to an access method. */
91239
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
91115
91240
  action_type: 'ASSIGN_CREDENTIAL';
91116
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
91241
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
91117
91242
  result: {
91118
91243
  /** ID of the Seam workspace associated with the access method. */
91119
91244
  workspace_id: string;
@@ -91234,7 +91359,7 @@ type Routes = {
91234
91359
  status: 'error';
91235
91360
  /** Result of the action attempt. Null for failed action attempts. */
91236
91361
  result: null;
91237
- /** Action attempt to track the status of assigning an existing credential to an access method. */
91362
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
91238
91363
  action_type: 'ASSIGN_CREDENTIAL';
91239
91364
  error: {
91240
91365
  /** Type of the error associated with the action attempt. */
@@ -92774,7 +92899,7 @@ type Routes = {
92774
92899
  result: null;
92775
92900
  /** Errors associated with the action attempt. Null for pending action attempts. */
92776
92901
  error: null;
92777
- /** Action attempt to track the status of assigning an existing credential to an access method. */
92902
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
92778
92903
  action_type: 'ASSIGN_CREDENTIAL';
92779
92904
  } | {
92780
92905
  /** ID of the action attempt. */
@@ -92782,9 +92907,9 @@ type Routes = {
92782
92907
  status: 'success';
92783
92908
  /** Errors associated with the action attempt. Null for successful action attempts. */
92784
92909
  error: null;
92785
- /** Action attempt to track the status of assigning an existing credential to an access method. */
92910
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
92786
92911
  action_type: 'ASSIGN_CREDENTIAL';
92787
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
92912
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
92788
92913
  result: {
92789
92914
  /** ID of the Seam workspace associated with the access method. */
92790
92915
  workspace_id: string;
@@ -92905,7 +93030,7 @@ type Routes = {
92905
93030
  status: 'error';
92906
93031
  /** Result of the action attempt. Null for failed action attempts. */
92907
93032
  result: null;
92908
- /** Action attempt to track the status of assigning an existing credential to an access method. */
93033
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
92909
93034
  action_type: 'ASSIGN_CREDENTIAL';
92910
93035
  error: {
92911
93036
  /** Type of the error associated with the action attempt. */
@@ -94447,7 +94572,7 @@ type Routes = {
94447
94572
  result: null;
94448
94573
  /** Errors associated with the action attempt. Null for pending action attempts. */
94449
94574
  error: null;
94450
- /** Action attempt to track the status of assigning an existing credential to an access method. */
94575
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
94451
94576
  action_type: 'ASSIGN_CREDENTIAL';
94452
94577
  } | {
94453
94578
  /** ID of the action attempt. */
@@ -94455,9 +94580,9 @@ type Routes = {
94455
94580
  status: 'success';
94456
94581
  /** Errors associated with the action attempt. Null for successful action attempts. */
94457
94582
  error: null;
94458
- /** Action attempt to track the status of assigning an existing credential to an access method. */
94583
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
94459
94584
  action_type: 'ASSIGN_CREDENTIAL';
94460
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
94585
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
94461
94586
  result: {
94462
94587
  /** ID of the Seam workspace associated with the access method. */
94463
94588
  workspace_id: string;
@@ -94578,7 +94703,7 @@ type Routes = {
94578
94703
  status: 'error';
94579
94704
  /** Result of the action attempt. Null for failed action attempts. */
94580
94705
  result: null;
94581
- /** Action attempt to track the status of assigning an existing credential to an access method. */
94706
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
94582
94707
  action_type: 'ASSIGN_CREDENTIAL';
94583
94708
  error: {
94584
94709
  /** Type of the error associated with the action attempt. */
@@ -96449,6 +96574,13 @@ type Routes = {
96449
96574
  created_at: string;
96450
96575
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
96451
96576
  warning_code: 'hub_required_for_additional_capabilities';
96577
+ } | {
96578
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
96579
+ message: string;
96580
+ /** Date and time at which Seam created the warning. */
96581
+ created_at: string;
96582
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
96583
+ warning_code: 'provider_issue';
96452
96584
  } | {
96453
96585
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
96454
96586
  message: string;
@@ -97802,6 +97934,13 @@ type Routes = {
97802
97934
  created_at: string;
97803
97935
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
97804
97936
  warning_code: 'hub_required_for_additional_capabilities';
97937
+ } | {
97938
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
97939
+ message: string;
97940
+ /** Date and time at which Seam created the warning. */
97941
+ created_at: string;
97942
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
97943
+ warning_code: 'provider_issue';
97805
97944
  } | {
97806
97945
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
97807
97946
  message: string;
@@ -98887,7 +99026,7 @@ type Routes = {
98887
99026
  result: null;
98888
99027
  /** Errors associated with the action attempt. Null for pending action attempts. */
98889
99028
  error: null;
98890
- /** Action attempt to track the status of assigning an existing credential to an access method. */
99029
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
98891
99030
  action_type: 'ASSIGN_CREDENTIAL';
98892
99031
  } | {
98893
99032
  /** ID of the action attempt. */
@@ -98895,9 +99034,9 @@ type Routes = {
98895
99034
  status: 'success';
98896
99035
  /** Errors associated with the action attempt. Null for successful action attempts. */
98897
99036
  error: null;
98898
- /** Action attempt to track the status of assigning an existing credential to an access method. */
99037
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
98899
99038
  action_type: 'ASSIGN_CREDENTIAL';
98900
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
99039
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
98901
99040
  result: {
98902
99041
  /** ID of the Seam workspace associated with the access method. */
98903
99042
  workspace_id: string;
@@ -99018,7 +99157,7 @@ type Routes = {
99018
99157
  status: 'error';
99019
99158
  /** Result of the action attempt. Null for failed action attempts. */
99020
99159
  result: null;
99021
- /** Action attempt to track the status of assigning an existing credential to an access method. */
99160
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
99022
99161
  action_type: 'ASSIGN_CREDENTIAL';
99023
99162
  error: {
99024
99163
  /** Type of the error associated with the action attempt. */
@@ -100579,7 +100718,7 @@ type Routes = {
100579
100718
  result: null;
100580
100719
  /** Errors associated with the action attempt. Null for pending action attempts. */
100581
100720
  error: null;
100582
- /** Action attempt to track the status of assigning an existing credential to an access method. */
100721
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
100583
100722
  action_type: 'ASSIGN_CREDENTIAL';
100584
100723
  } | {
100585
100724
  /** ID of the action attempt. */
@@ -100587,9 +100726,9 @@ type Routes = {
100587
100726
  status: 'success';
100588
100727
  /** Errors associated with the action attempt. Null for successful action attempts. */
100589
100728
  error: null;
100590
- /** Action attempt to track the status of assigning an existing credential to an access method. */
100729
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
100591
100730
  action_type: 'ASSIGN_CREDENTIAL';
100592
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
100731
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
100593
100732
  result: {
100594
100733
  /** ID of the Seam workspace associated with the access method. */
100595
100734
  workspace_id: string;
@@ -100710,7 +100849,7 @@ type Routes = {
100710
100849
  status: 'error';
100711
100850
  /** Result of the action attempt. Null for failed action attempts. */
100712
100851
  result: null;
100713
- /** Action attempt to track the status of assigning an existing credential to an access method. */
100852
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
100714
100853
  action_type: 'ASSIGN_CREDENTIAL';
100715
100854
  error: {
100716
100855
  /** Type of the error associated with the action attempt. */
@@ -102327,7 +102466,7 @@ type Routes = {
102327
102466
  result: null;
102328
102467
  /** Errors associated with the action attempt. Null for pending action attempts. */
102329
102468
  error: null;
102330
- /** Action attempt to track the status of assigning an existing credential to an access method. */
102469
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
102331
102470
  action_type: 'ASSIGN_CREDENTIAL';
102332
102471
  } | {
102333
102472
  /** ID of the action attempt. */
@@ -102335,9 +102474,9 @@ type Routes = {
102335
102474
  status: 'success';
102336
102475
  /** Errors associated with the action attempt. Null for successful action attempts. */
102337
102476
  error: null;
102338
- /** Action attempt to track the status of assigning an existing credential to an access method. */
102477
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
102339
102478
  action_type: 'ASSIGN_CREDENTIAL';
102340
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
102479
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
102341
102480
  result: {
102342
102481
  /** ID of the Seam workspace associated with the access method. */
102343
102482
  workspace_id: string;
@@ -102458,7 +102597,7 @@ type Routes = {
102458
102597
  status: 'error';
102459
102598
  /** Result of the action attempt. Null for failed action attempts. */
102460
102599
  result: null;
102461
- /** Action attempt to track the status of assigning an existing credential to an access method. */
102600
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
102462
102601
  action_type: 'ASSIGN_CREDENTIAL';
102463
102602
  error: {
102464
102603
  /** Type of the error associated with the action attempt. */
@@ -105048,7 +105187,7 @@ type Routes = {
105048
105187
  result: null;
105049
105188
  /** Errors associated with the action attempt. Null for pending action attempts. */
105050
105189
  error: null;
105051
- /** Action attempt to track the status of assigning an existing credential to an access method. */
105190
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
105052
105191
  action_type: 'ASSIGN_CREDENTIAL';
105053
105192
  } | {
105054
105193
  /** ID of the action attempt. */
@@ -105056,9 +105195,9 @@ type Routes = {
105056
105195
  status: 'success';
105057
105196
  /** Errors associated with the action attempt. Null for successful action attempts. */
105058
105197
  error: null;
105059
- /** Action attempt to track the status of assigning an existing credential to an access method. */
105198
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
105060
105199
  action_type: 'ASSIGN_CREDENTIAL';
105061
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
105200
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
105062
105201
  result: {
105063
105202
  /** ID of the Seam workspace associated with the access method. */
105064
105203
  workspace_id: string;
@@ -105179,7 +105318,7 @@ type Routes = {
105179
105318
  status: 'error';
105180
105319
  /** Result of the action attempt. Null for failed action attempts. */
105181
105320
  result: null;
105182
- /** Action attempt to track the status of assigning an existing credential to an access method. */
105321
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
105183
105322
  action_type: 'ASSIGN_CREDENTIAL';
105184
105323
  error: {
105185
105324
  /** Type of the error associated with the action attempt. */
@@ -112709,6 +112848,13 @@ type Routes = {
112709
112848
  created_at: string;
112710
112849
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
112711
112850
  warning_code: 'hub_required_for_additional_capabilities';
112851
+ } | {
112852
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
112853
+ message: string;
112854
+ /** Date and time at which Seam created the warning. */
112855
+ created_at: string;
112856
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
112857
+ warning_code: 'provider_issue';
112712
112858
  } | {
112713
112859
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
112714
112860
  message: string;
@@ -114535,7 +114681,7 @@ type Routes = {
114535
114681
  result: null;
114536
114682
  /** Errors associated with the action attempt. Null for pending action attempts. */
114537
114683
  error: null;
114538
- /** Action attempt to track the status of assigning an existing credential to an access method. */
114684
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
114539
114685
  action_type: 'ASSIGN_CREDENTIAL';
114540
114686
  } | {
114541
114687
  /** ID of the action attempt. */
@@ -114543,9 +114689,9 @@ type Routes = {
114543
114689
  status: 'success';
114544
114690
  /** Errors associated with the action attempt. Null for successful action attempts. */
114545
114691
  error: null;
114546
- /** Action attempt to track the status of assigning an existing credential to an access method. */
114692
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
114547
114693
  action_type: 'ASSIGN_CREDENTIAL';
114548
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
114694
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
114549
114695
  result: {
114550
114696
  /** ID of the Seam workspace associated with the access method. */
114551
114697
  workspace_id: string;
@@ -114666,7 +114812,7 @@ type Routes = {
114666
114812
  status: 'error';
114667
114813
  /** Result of the action attempt. Null for failed action attempts. */
114668
114814
  result: null;
114669
- /** Action attempt to track the status of assigning an existing credential to an access method. */
114815
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
114670
114816
  action_type: 'ASSIGN_CREDENTIAL';
114671
114817
  error: {
114672
114818
  /** Type of the error associated with the action attempt. */
@@ -116212,7 +116358,7 @@ type Routes = {
116212
116358
  result: null;
116213
116359
  /** Errors associated with the action attempt. Null for pending action attempts. */
116214
116360
  error: null;
116215
- /** Action attempt to track the status of assigning an existing credential to an access method. */
116361
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
116216
116362
  action_type: 'ASSIGN_CREDENTIAL';
116217
116363
  } | {
116218
116364
  /** ID of the action attempt. */
@@ -116220,9 +116366,9 @@ type Routes = {
116220
116366
  status: 'success';
116221
116367
  /** Errors associated with the action attempt. Null for successful action attempts. */
116222
116368
  error: null;
116223
- /** Action attempt to track the status of assigning an existing credential to an access method. */
116369
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
116224
116370
  action_type: 'ASSIGN_CREDENTIAL';
116225
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
116371
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
116226
116372
  result: {
116227
116373
  /** ID of the Seam workspace associated with the access method. */
116228
116374
  workspace_id: string;
@@ -116343,7 +116489,7 @@ type Routes = {
116343
116489
  status: 'error';
116344
116490
  /** Result of the action attempt. Null for failed action attempts. */
116345
116491
  result: null;
116346
- /** Action attempt to track the status of assigning an existing credential to an access method. */
116492
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
116347
116493
  action_type: 'ASSIGN_CREDENTIAL';
116348
116494
  error: {
116349
116495
  /** Type of the error associated with the action attempt. */
@@ -117995,7 +118141,7 @@ type Routes = {
117995
118141
  result: null;
117996
118142
  /** Errors associated with the action attempt. Null for pending action attempts. */
117997
118143
  error: null;
117998
- /** Action attempt to track the status of assigning an existing credential to an access method. */
118144
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
117999
118145
  action_type: 'ASSIGN_CREDENTIAL';
118000
118146
  } | {
118001
118147
  /** ID of the action attempt. */
@@ -118003,9 +118149,9 @@ type Routes = {
118003
118149
  status: 'success';
118004
118150
  /** Errors associated with the action attempt. Null for successful action attempts. */
118005
118151
  error: null;
118006
- /** Action attempt to track the status of assigning an existing credential to an access method. */
118152
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
118007
118153
  action_type: 'ASSIGN_CREDENTIAL';
118008
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
118154
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
118009
118155
  result: {
118010
118156
  /** ID of the Seam workspace associated with the access method. */
118011
118157
  workspace_id: string;
@@ -118126,7 +118272,7 @@ type Routes = {
118126
118272
  status: 'error';
118127
118273
  /** Result of the action attempt. Null for failed action attempts. */
118128
118274
  result: null;
118129
- /** Action attempt to track the status of assigning an existing credential to an access method. */
118275
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
118130
118276
  action_type: 'ASSIGN_CREDENTIAL';
118131
118277
  error: {
118132
118278
  /** Type of the error associated with the action attempt. */
@@ -119978,6 +120124,13 @@ type Routes = {
119978
120124
  created_at: string;
119979
120125
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
119980
120126
  warning_code: 'hub_required_for_additional_capabilities';
120127
+ } | {
120128
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
120129
+ message: string;
120130
+ /** Date and time at which Seam created the warning. */
120131
+ created_at: string;
120132
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
120133
+ warning_code: 'provider_issue';
119981
120134
  } | {
119982
120135
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
119983
120136
  message: string;
@@ -121057,7 +121210,7 @@ type Routes = {
121057
121210
  result: null;
121058
121211
  /** Errors associated with the action attempt. Null for pending action attempts. */
121059
121212
  error: null;
121060
- /** Action attempt to track the status of assigning an existing credential to an access method. */
121213
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
121061
121214
  action_type: 'ASSIGN_CREDENTIAL';
121062
121215
  } | {
121063
121216
  /** ID of the action attempt. */
@@ -121065,9 +121218,9 @@ type Routes = {
121065
121218
  status: 'success';
121066
121219
  /** Errors associated with the action attempt. Null for successful action attempts. */
121067
121220
  error: null;
121068
- /** Action attempt to track the status of assigning an existing credential to an access method. */
121221
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
121069
121222
  action_type: 'ASSIGN_CREDENTIAL';
121070
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
121223
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
121071
121224
  result: {
121072
121225
  /** ID of the Seam workspace associated with the access method. */
121073
121226
  workspace_id: string;
@@ -121188,7 +121341,7 @@ type Routes = {
121188
121341
  status: 'error';
121189
121342
  /** Result of the action attempt. Null for failed action attempts. */
121190
121343
  result: null;
121191
- /** Action attempt to track the status of assigning an existing credential to an access method. */
121344
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
121192
121345
  action_type: 'ASSIGN_CREDENTIAL';
121193
121346
  error: {
121194
121347
  /** Type of the error associated with the action attempt. */
@@ -122738,7 +122891,7 @@ type Routes = {
122738
122891
  result: null;
122739
122892
  /** Errors associated with the action attempt. Null for pending action attempts. */
122740
122893
  error: null;
122741
- /** Action attempt to track the status of assigning an existing credential to an access method. */
122894
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
122742
122895
  action_type: 'ASSIGN_CREDENTIAL';
122743
122896
  } | {
122744
122897
  /** ID of the action attempt. */
@@ -122746,9 +122899,9 @@ type Routes = {
122746
122899
  status: 'success';
122747
122900
  /** Errors associated with the action attempt. Null for successful action attempts. */
122748
122901
  error: null;
122749
- /** Action attempt to track the status of assigning an existing credential to an access method. */
122902
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
122750
122903
  action_type: 'ASSIGN_CREDENTIAL';
122751
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
122904
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
122752
122905
  result: {
122753
122906
  /** ID of the Seam workspace associated with the access method. */
122754
122907
  workspace_id: string;
@@ -122869,7 +123022,7 @@ type Routes = {
122869
123022
  status: 'error';
122870
123023
  /** Result of the action attempt. Null for failed action attempts. */
122871
123024
  result: null;
122872
- /** Action attempt to track the status of assigning an existing credential to an access method. */
123025
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
122873
123026
  action_type: 'ASSIGN_CREDENTIAL';
122874
123027
  error: {
122875
123028
  /** Type of the error associated with the action attempt. */
@@ -124740,6 +124893,13 @@ type Routes = {
124740
124893
  created_at: string;
124741
124894
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
124742
124895
  warning_code: 'hub_required_for_additional_capabilities';
124896
+ } | {
124897
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
124898
+ message: string;
124899
+ /** Date and time at which Seam created the warning. */
124900
+ created_at: string;
124901
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
124902
+ warning_code: 'provider_issue';
124743
124903
  } | {
124744
124904
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
124745
124905
  message: string;
@@ -126093,6 +126253,13 @@ type Routes = {
126093
126253
  created_at: string;
126094
126254
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
126095
126255
  warning_code: 'hub_required_for_additional_capabilities';
126256
+ } | {
126257
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
126258
+ message: string;
126259
+ /** Date and time at which Seam created the warning. */
126260
+ created_at: string;
126261
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
126262
+ warning_code: 'provider_issue';
126096
126263
  } | {
126097
126264
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
126098
126265
  message: string;
@@ -127168,7 +127335,7 @@ type Routes = {
127168
127335
  result: null;
127169
127336
  /** Errors associated with the action attempt. Null for pending action attempts. */
127170
127337
  error: null;
127171
- /** Action attempt to track the status of assigning an existing credential to an access method. */
127338
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
127172
127339
  action_type: 'ASSIGN_CREDENTIAL';
127173
127340
  } | {
127174
127341
  /** ID of the action attempt. */
@@ -127176,9 +127343,9 @@ type Routes = {
127176
127343
  status: 'success';
127177
127344
  /** Errors associated with the action attempt. Null for successful action attempts. */
127178
127345
  error: null;
127179
- /** Action attempt to track the status of assigning an existing credential to an access method. */
127346
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
127180
127347
  action_type: 'ASSIGN_CREDENTIAL';
127181
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
127348
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
127182
127349
  result: {
127183
127350
  /** ID of the Seam workspace associated with the access method. */
127184
127351
  workspace_id: string;
@@ -127299,7 +127466,7 @@ type Routes = {
127299
127466
  status: 'error';
127300
127467
  /** Result of the action attempt. Null for failed action attempts. */
127301
127468
  result: null;
127302
- /** Action attempt to track the status of assigning an existing credential to an access method. */
127469
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
127303
127470
  action_type: 'ASSIGN_CREDENTIAL';
127304
127471
  error: {
127305
127472
  /** Type of the error associated with the action attempt. */
@@ -129044,7 +129211,7 @@ type Routes = {
129044
129211
  result: null;
129045
129212
  /** Errors associated with the action attempt. Null for pending action attempts. */
129046
129213
  error: null;
129047
- /** Action attempt to track the status of assigning an existing credential to an access method. */
129214
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
129048
129215
  action_type: 'ASSIGN_CREDENTIAL';
129049
129216
  } | {
129050
129217
  /** ID of the action attempt. */
@@ -129052,9 +129219,9 @@ type Routes = {
129052
129219
  status: 'success';
129053
129220
  /** Errors associated with the action attempt. Null for successful action attempts. */
129054
129221
  error: null;
129055
- /** Action attempt to track the status of assigning an existing credential to an access method. */
129222
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
129056
129223
  action_type: 'ASSIGN_CREDENTIAL';
129057
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
129224
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
129058
129225
  result: {
129059
129226
  /** ID of the Seam workspace associated with the access method. */
129060
129227
  workspace_id: string;
@@ -129175,7 +129342,7 @@ type Routes = {
129175
129342
  status: 'error';
129176
129343
  /** Result of the action attempt. Null for failed action attempts. */
129177
129344
  result: null;
129178
- /** Action attempt to track the status of assigning an existing credential to an access method. */
129345
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
129179
129346
  action_type: 'ASSIGN_CREDENTIAL';
129180
129347
  error: {
129181
129348
  /** Type of the error associated with the action attempt. */
@@ -130748,7 +130915,7 @@ type Routes = {
130748
130915
  result: null;
130749
130916
  /** Errors associated with the action attempt. Null for pending action attempts. */
130750
130917
  error: null;
130751
- /** Action attempt to track the status of assigning an existing credential to an access method. */
130918
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
130752
130919
  action_type: 'ASSIGN_CREDENTIAL';
130753
130920
  } | {
130754
130921
  /** ID of the action attempt. */
@@ -130756,9 +130923,9 @@ type Routes = {
130756
130923
  status: 'success';
130757
130924
  /** Errors associated with the action attempt. Null for successful action attempts. */
130758
130925
  error: null;
130759
- /** Action attempt to track the status of assigning an existing credential to an access method. */
130926
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
130760
130927
  action_type: 'ASSIGN_CREDENTIAL';
130761
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
130928
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
130762
130929
  result: {
130763
130930
  /** ID of the Seam workspace associated with the access method. */
130764
130931
  workspace_id: string;
@@ -130879,7 +131046,7 @@ type Routes = {
130879
131046
  status: 'error';
130880
131047
  /** Result of the action attempt. Null for failed action attempts. */
130881
131048
  result: null;
130882
- /** Action attempt to track the status of assigning an existing credential to an access method. */
131049
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
130883
131050
  action_type: 'ASSIGN_CREDENTIAL';
130884
131051
  error: {
130885
131052
  /** Type of the error associated with the action attempt. */
@@ -132564,7 +132731,7 @@ type Routes = {
132564
132731
  result: null;
132565
132732
  /** Errors associated with the action attempt. Null for pending action attempts. */
132566
132733
  error: null;
132567
- /** Action attempt to track the status of assigning an existing credential to an access method. */
132734
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
132568
132735
  action_type: 'ASSIGN_CREDENTIAL';
132569
132736
  } | {
132570
132737
  /** ID of the action attempt. */
@@ -132572,9 +132739,9 @@ type Routes = {
132572
132739
  status: 'success';
132573
132740
  /** Errors associated with the action attempt. Null for successful action attempts. */
132574
132741
  error: null;
132575
- /** Action attempt to track the status of assigning an existing credential to an access method. */
132742
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
132576
132743
  action_type: 'ASSIGN_CREDENTIAL';
132577
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
132744
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
132578
132745
  result: {
132579
132746
  /** ID of the Seam workspace associated with the access method. */
132580
132747
  workspace_id: string;
@@ -132695,7 +132862,7 @@ type Routes = {
132695
132862
  status: 'error';
132696
132863
  /** Result of the action attempt. Null for failed action attempts. */
132697
132864
  result: null;
132698
- /** Action attempt to track the status of assigning an existing credential to an access method. */
132865
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
132699
132866
  action_type: 'ASSIGN_CREDENTIAL';
132700
132867
  error: {
132701
132868
  /** Type of the error associated with the action attempt. */
@@ -135084,6 +135251,13 @@ type Routes = {
135084
135251
  created_at: string;
135085
135252
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
135086
135253
  warning_code: 'hub_required_for_additional_capabilities';
135254
+ } | {
135255
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
135256
+ message: string;
135257
+ /** Date and time at which Seam created the warning. */
135258
+ created_at: string;
135259
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
135260
+ warning_code: 'provider_issue';
135087
135261
  } | {
135088
135262
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
135089
135263
  message: string;
@@ -136439,6 +136613,13 @@ type Routes = {
136439
136613
  created_at: string;
136440
136614
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
136441
136615
  warning_code: 'hub_required_for_additional_capabilities';
136616
+ } | {
136617
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
136618
+ message: string;
136619
+ /** Date and time at which Seam created the warning. */
136620
+ created_at: string;
136621
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
136622
+ warning_code: 'provider_issue';
136442
136623
  } | {
136443
136624
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
136444
136625
  message: string;
@@ -138990,6 +139171,13 @@ type Routes = {
138990
139171
  created_at: string;
138991
139172
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
138992
139173
  warning_code: 'hub_required_for_additional_capabilities';
139174
+ } | {
139175
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
139176
+ message: string;
139177
+ /** Date and time at which Seam created the warning. */
139178
+ created_at: string;
139179
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
139180
+ warning_code: 'provider_issue';
138993
139181
  } | {
138994
139182
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
138995
139183
  message: string;
@@ -140788,7 +140976,7 @@ type Routes = {
140788
140976
  result: null;
140789
140977
  /** Errors associated with the action attempt. Null for pending action attempts. */
140790
140978
  error: null;
140791
- /** Action attempt to track the status of assigning an existing credential to an access method. */
140979
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
140792
140980
  action_type: 'ASSIGN_CREDENTIAL';
140793
140981
  } | {
140794
140982
  /** ID of the action attempt. */
@@ -140796,9 +140984,9 @@ type Routes = {
140796
140984
  status: 'success';
140797
140985
  /** Errors associated with the action attempt. Null for successful action attempts. */
140798
140986
  error: null;
140799
- /** Action attempt to track the status of assigning an existing credential to an access method. */
140987
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
140800
140988
  action_type: 'ASSIGN_CREDENTIAL';
140801
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
140989
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
140802
140990
  result: {
140803
140991
  /** ID of the Seam workspace associated with the access method. */
140804
140992
  workspace_id: string;
@@ -140919,7 +141107,7 @@ type Routes = {
140919
141107
  status: 'error';
140920
141108
  /** Result of the action attempt. Null for failed action attempts. */
140921
141109
  result: null;
140922
- /** Action attempt to track the status of assigning an existing credential to an access method. */
141110
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
140923
141111
  action_type: 'ASSIGN_CREDENTIAL';
140924
141112
  error: {
140925
141113
  /** Type of the error associated with the action attempt. */
@@ -142227,6 +142415,13 @@ type Routes = {
142227
142415
  created_at: string;
142228
142416
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
142229
142417
  warning_code: 'hub_required_for_additional_capabilities';
142418
+ } | {
142419
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
142420
+ message: string;
142421
+ /** Date and time at which Seam created the warning. */
142422
+ created_at: string;
142423
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
142424
+ warning_code: 'provider_issue';
142230
142425
  } | {
142231
142426
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
142232
142427
  message: string;
@@ -148287,7 +148482,7 @@ type Routes = {
148287
148482
  result: null;
148288
148483
  /** Errors associated with the action attempt. Null for pending action attempts. */
148289
148484
  error: null;
148290
- /** Action attempt to track the status of assigning an existing credential to an access method. */
148485
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
148291
148486
  action_type: 'ASSIGN_CREDENTIAL';
148292
148487
  } | {
148293
148488
  /** ID of the action attempt. */
@@ -148295,9 +148490,9 @@ type Routes = {
148295
148490
  status: 'success';
148296
148491
  /** Errors associated with the action attempt. Null for successful action attempts. */
148297
148492
  error: null;
148298
- /** Action attempt to track the status of assigning an existing credential to an access method. */
148493
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
148299
148494
  action_type: 'ASSIGN_CREDENTIAL';
148300
- /** Result of an assignment attempt. If the attempt was successful, includes the updated access method with the assigned credential. */
148495
+ /** Result of assigning a credential. If successful, includes the updated access method with the assigned credential. */
148301
148496
  result: {
148302
148497
  /** ID of the Seam workspace associated with the access method. */
148303
148498
  workspace_id: string;
@@ -148418,7 +148613,7 @@ type Routes = {
148418
148613
  status: 'error';
148419
148614
  /** Result of the action attempt. Null for failed action attempts. */
148420
148615
  result: null;
148421
- /** Action attempt to track the status of assigning an existing credential to an access method. */
148616
+ /** Action attempt to track the status of assigning a pre-registered card credential to an access method. */
148422
148617
  action_type: 'ASSIGN_CREDENTIAL';
148423
148618
  error: {
148424
148619
  /** Type of the error associated with the action attempt. */