@seamapi/types 1.430.0 → 1.431.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 +38 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +297 -0
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +5 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -0
- package/lib/seam/connect/openapi.d.ts +35 -0
- package/lib/seam/connect/openapi.js +35 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +232 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +42 -0
- package/src/lib/seam/connect/route-types.ts +232 -0
|
@@ -188,6 +188,8 @@ export interface Routes {
|
|
|
188
188
|
acs_credential_id: string;
|
|
189
189
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
190
190
|
acs_user_id?: string | undefined;
|
|
191
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
192
|
+
user_identity_id?: string | undefined;
|
|
191
193
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
192
194
|
connected_account_id: string;
|
|
193
195
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -316,6 +318,8 @@ export interface Routes {
|
|
|
316
318
|
acs_credential_id: string;
|
|
317
319
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
318
320
|
acs_user_id?: string | undefined;
|
|
321
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
322
|
+
user_identity_id?: string | undefined;
|
|
319
323
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
320
324
|
connected_account_id: string;
|
|
321
325
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -496,6 +500,8 @@ export interface Routes {
|
|
|
496
500
|
acs_credential_id: string;
|
|
497
501
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
498
502
|
acs_user_id?: string | undefined;
|
|
503
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
504
|
+
user_identity_id?: string | undefined;
|
|
499
505
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
500
506
|
connected_account_id: string;
|
|
501
507
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -624,6 +630,8 @@ export interface Routes {
|
|
|
624
630
|
acs_credential_id: string;
|
|
625
631
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
626
632
|
acs_user_id?: string | undefined;
|
|
633
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
634
|
+
user_identity_id?: string | undefined;
|
|
627
635
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
628
636
|
connected_account_id: string;
|
|
629
637
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2508,6 +2516,8 @@ export interface Routes {
|
|
|
2508
2516
|
acs_credential_id: string;
|
|
2509
2517
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2510
2518
|
acs_user_id?: string | undefined;
|
|
2519
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2520
|
+
user_identity_id?: string | undefined;
|
|
2511
2521
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2512
2522
|
connected_account_id: string;
|
|
2513
2523
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2636,6 +2646,8 @@ export interface Routes {
|
|
|
2636
2646
|
acs_credential_id: string;
|
|
2637
2647
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2638
2648
|
acs_user_id?: string | undefined;
|
|
2649
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2650
|
+
user_identity_id?: string | undefined;
|
|
2639
2651
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2640
2652
|
connected_account_id: string;
|
|
2641
2653
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2816,6 +2828,8 @@ export interface Routes {
|
|
|
2816
2828
|
acs_credential_id: string;
|
|
2817
2829
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2818
2830
|
acs_user_id?: string | undefined;
|
|
2831
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2832
|
+
user_identity_id?: string | undefined;
|
|
2819
2833
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2820
2834
|
connected_account_id: string;
|
|
2821
2835
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2944,6 +2958,8 @@ export interface Routes {
|
|
|
2944
2958
|
acs_credential_id: string;
|
|
2945
2959
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2946
2960
|
acs_user_id?: string | undefined;
|
|
2961
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2962
|
+
user_identity_id?: string | undefined;
|
|
2947
2963
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2948
2964
|
connected_account_id: string;
|
|
2949
2965
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6432,6 +6448,8 @@ export interface Routes {
|
|
|
6432
6448
|
acs_credential_id: string;
|
|
6433
6449
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6434
6450
|
acs_user_id?: string | undefined;
|
|
6451
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6452
|
+
user_identity_id?: string | undefined;
|
|
6435
6453
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6436
6454
|
connected_account_id: string;
|
|
6437
6455
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6560,6 +6578,8 @@ export interface Routes {
|
|
|
6560
6578
|
acs_credential_id: string;
|
|
6561
6579
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6562
6580
|
acs_user_id?: string | undefined;
|
|
6581
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6582
|
+
user_identity_id?: string | undefined;
|
|
6563
6583
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6564
6584
|
connected_account_id: string;
|
|
6565
6585
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6740,6 +6760,8 @@ export interface Routes {
|
|
|
6740
6760
|
acs_credential_id: string;
|
|
6741
6761
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6742
6762
|
acs_user_id?: string | undefined;
|
|
6763
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6764
|
+
user_identity_id?: string | undefined;
|
|
6743
6765
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6744
6766
|
connected_account_id: string;
|
|
6745
6767
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6868,6 +6890,8 @@ export interface Routes {
|
|
|
6868
6890
|
acs_credential_id: string;
|
|
6869
6891
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6870
6892
|
acs_user_id?: string | undefined;
|
|
6893
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6894
|
+
user_identity_id?: string | undefined;
|
|
6871
6895
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6872
6896
|
connected_account_id: string;
|
|
6873
6897
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -8760,6 +8784,8 @@ export interface Routes {
|
|
|
8760
8784
|
acs_credential_id: string;
|
|
8761
8785
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8762
8786
|
acs_user_id?: string | undefined;
|
|
8787
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8788
|
+
user_identity_id?: string | undefined;
|
|
8763
8789
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8764
8790
|
connected_account_id: string;
|
|
8765
8791
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -8888,6 +8914,8 @@ export interface Routes {
|
|
|
8888
8914
|
acs_credential_id: string;
|
|
8889
8915
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8890
8916
|
acs_user_id?: string | undefined;
|
|
8917
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8918
|
+
user_identity_id?: string | undefined;
|
|
8891
8919
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8892
8920
|
connected_account_id: string;
|
|
8893
8921
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9068,6 +9096,8 @@ export interface Routes {
|
|
|
9068
9096
|
acs_credential_id: string;
|
|
9069
9097
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9070
9098
|
acs_user_id?: string | undefined;
|
|
9099
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9100
|
+
user_identity_id?: string | undefined;
|
|
9071
9101
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9072
9102
|
connected_account_id: string;
|
|
9073
9103
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9196,6 +9226,8 @@ export interface Routes {
|
|
|
9196
9226
|
acs_credential_id: string;
|
|
9197
9227
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9198
9228
|
acs_user_id?: string | undefined;
|
|
9229
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9230
|
+
user_identity_id?: string | undefined;
|
|
9199
9231
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9200
9232
|
connected_account_id: string;
|
|
9201
9233
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10272,6 +10304,8 @@ export interface Routes {
|
|
|
10272
10304
|
acs_credential_id: string;
|
|
10273
10305
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10274
10306
|
acs_user_id?: string | undefined;
|
|
10307
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10308
|
+
user_identity_id?: string | undefined;
|
|
10275
10309
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10276
10310
|
connected_account_id: string;
|
|
10277
10311
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10400,6 +10434,8 @@ export interface Routes {
|
|
|
10400
10434
|
acs_credential_id: string;
|
|
10401
10435
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10402
10436
|
acs_user_id?: string | undefined;
|
|
10437
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10438
|
+
user_identity_id?: string | undefined;
|
|
10403
10439
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10404
10440
|
connected_account_id: string;
|
|
10405
10441
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10580,6 +10616,8 @@ export interface Routes {
|
|
|
10580
10616
|
acs_credential_id: string;
|
|
10581
10617
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10582
10618
|
acs_user_id?: string | undefined;
|
|
10619
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10620
|
+
user_identity_id?: string | undefined;
|
|
10583
10621
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10584
10622
|
connected_account_id: string;
|
|
10585
10623
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10708,6 +10746,8 @@ export interface Routes {
|
|
|
10708
10746
|
acs_credential_id: string;
|
|
10709
10747
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10710
10748
|
acs_user_id?: string | undefined;
|
|
10749
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10750
|
+
user_identity_id?: string | undefined;
|
|
10711
10751
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10712
10752
|
connected_account_id: string;
|
|
10713
10753
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12077,6 +12117,8 @@ export interface Routes {
|
|
|
12077
12117
|
acs_credential_id: string;
|
|
12078
12118
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12079
12119
|
acs_user_id?: string | undefined;
|
|
12120
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12121
|
+
user_identity_id?: string | undefined;
|
|
12080
12122
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12081
12123
|
connected_account_id: string;
|
|
12082
12124
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12270,6 +12312,8 @@ export interface Routes {
|
|
|
12270
12312
|
acs_credential_id: string;
|
|
12271
12313
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12272
12314
|
acs_user_id?: string | undefined;
|
|
12315
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12316
|
+
user_identity_id?: string | undefined;
|
|
12273
12317
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12274
12318
|
connected_account_id: string;
|
|
12275
12319
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12425,6 +12469,8 @@ export interface Routes {
|
|
|
12425
12469
|
acs_credential_id: string;
|
|
12426
12470
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12427
12471
|
acs_user_id?: string | undefined;
|
|
12472
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12473
|
+
user_identity_id?: string | undefined;
|
|
12428
12474
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12429
12475
|
connected_account_id: string;
|
|
12430
12476
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12584,6 +12630,8 @@ export interface Routes {
|
|
|
12584
12630
|
acs_credential_id: string;
|
|
12585
12631
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12586
12632
|
acs_user_id?: string | undefined;
|
|
12633
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12634
|
+
user_identity_id?: string | undefined;
|
|
12587
12635
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12588
12636
|
connected_account_id: string;
|
|
12589
12637
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12744,6 +12792,8 @@ export interface Routes {
|
|
|
12744
12792
|
acs_credential_id: string;
|
|
12745
12793
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12746
12794
|
acs_user_id?: string | undefined;
|
|
12795
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12796
|
+
user_identity_id?: string | undefined;
|
|
12747
12797
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12748
12798
|
connected_account_id: string;
|
|
12749
12799
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13004,6 +13054,8 @@ export interface Routes {
|
|
|
13004
13054
|
acs_credential_id: string;
|
|
13005
13055
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13006
13056
|
acs_user_id?: string | undefined;
|
|
13057
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13058
|
+
user_identity_id?: string | undefined;
|
|
13007
13059
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13008
13060
|
connected_account_id: string;
|
|
13009
13061
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13147,6 +13199,8 @@ export interface Routes {
|
|
|
13147
13199
|
acs_credential_id: string;
|
|
13148
13200
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13149
13201
|
acs_user_id?: string | undefined;
|
|
13202
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13203
|
+
user_identity_id?: string | undefined;
|
|
13150
13204
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13151
13205
|
connected_account_id: string;
|
|
13152
13206
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13300,6 +13354,8 @@ export interface Routes {
|
|
|
13300
13354
|
acs_credential_id: string;
|
|
13301
13355
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13302
13356
|
acs_user_id?: string | undefined;
|
|
13357
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13358
|
+
user_identity_id?: string | undefined;
|
|
13303
13359
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13304
13360
|
connected_account_id: string;
|
|
13305
13361
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13451,6 +13507,8 @@ export interface Routes {
|
|
|
13451
13507
|
acs_credential_id: string;
|
|
13452
13508
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13453
13509
|
acs_user_id?: string | undefined;
|
|
13510
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13511
|
+
user_identity_id?: string | undefined;
|
|
13454
13512
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13455
13513
|
connected_account_id: string;
|
|
13456
13514
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13732,6 +13790,8 @@ export interface Routes {
|
|
|
13732
13790
|
acs_credential_id: string;
|
|
13733
13791
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13734
13792
|
acs_user_id?: string | undefined;
|
|
13793
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13794
|
+
user_identity_id?: string | undefined;
|
|
13735
13795
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13736
13796
|
connected_account_id: string;
|
|
13737
13797
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13860,6 +13920,8 @@ export interface Routes {
|
|
|
13860
13920
|
acs_credential_id: string;
|
|
13861
13921
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13862
13922
|
acs_user_id?: string | undefined;
|
|
13923
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13924
|
+
user_identity_id?: string | undefined;
|
|
13863
13925
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13864
13926
|
connected_account_id: string;
|
|
13865
13927
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -14040,6 +14102,8 @@ export interface Routes {
|
|
|
14040
14102
|
acs_credential_id: string;
|
|
14041
14103
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14042
14104
|
acs_user_id?: string | undefined;
|
|
14105
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14106
|
+
user_identity_id?: string | undefined;
|
|
14043
14107
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14044
14108
|
connected_account_id: string;
|
|
14045
14109
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -14168,6 +14232,8 @@ export interface Routes {
|
|
|
14168
14232
|
acs_credential_id: string;
|
|
14169
14233
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14170
14234
|
acs_user_id?: string | undefined;
|
|
14235
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14236
|
+
user_identity_id?: string | undefined;
|
|
14171
14237
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14172
14238
|
connected_account_id: string;
|
|
14173
14239
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15080,6 +15146,8 @@ export interface Routes {
|
|
|
15080
15146
|
acs_credential_id: string;
|
|
15081
15147
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15082
15148
|
acs_user_id?: string | undefined;
|
|
15149
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15150
|
+
user_identity_id?: string | undefined;
|
|
15083
15151
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15084
15152
|
connected_account_id: string;
|
|
15085
15153
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15208,6 +15276,8 @@ export interface Routes {
|
|
|
15208
15276
|
acs_credential_id: string;
|
|
15209
15277
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15210
15278
|
acs_user_id?: string | undefined;
|
|
15279
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15280
|
+
user_identity_id?: string | undefined;
|
|
15211
15281
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15212
15282
|
connected_account_id: string;
|
|
15213
15283
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15388,6 +15458,8 @@ export interface Routes {
|
|
|
15388
15458
|
acs_credential_id: string;
|
|
15389
15459
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15390
15460
|
acs_user_id?: string | undefined;
|
|
15461
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15462
|
+
user_identity_id?: string | undefined;
|
|
15391
15463
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15392
15464
|
connected_account_id: string;
|
|
15393
15465
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15516,6 +15588,8 @@ export interface Routes {
|
|
|
15516
15588
|
acs_credential_id: string;
|
|
15517
15589
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15518
15590
|
acs_user_id?: string | undefined;
|
|
15591
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15592
|
+
user_identity_id?: string | undefined;
|
|
15519
15593
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15520
15594
|
connected_account_id: string;
|
|
15521
15595
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -16524,6 +16598,8 @@ export interface Routes {
|
|
|
16524
16598
|
acs_credential_id: string;
|
|
16525
16599
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16526
16600
|
acs_user_id?: string | undefined;
|
|
16601
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16602
|
+
user_identity_id?: string | undefined;
|
|
16527
16603
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16528
16604
|
connected_account_id: string;
|
|
16529
16605
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -18610,6 +18686,8 @@ export interface Routes {
|
|
|
18610
18686
|
acs_credential_id: string;
|
|
18611
18687
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18612
18688
|
acs_user_id?: string | undefined;
|
|
18689
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18690
|
+
user_identity_id?: string | undefined;
|
|
18613
18691
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18614
18692
|
connected_account_id: string;
|
|
18615
18693
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -18738,6 +18816,8 @@ export interface Routes {
|
|
|
18738
18816
|
acs_credential_id: string;
|
|
18739
18817
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18740
18818
|
acs_user_id?: string | undefined;
|
|
18819
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18820
|
+
user_identity_id?: string | undefined;
|
|
18741
18821
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18742
18822
|
connected_account_id: string;
|
|
18743
18823
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -18918,6 +18998,8 @@ export interface Routes {
|
|
|
18918
18998
|
acs_credential_id: string;
|
|
18919
18999
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18920
19000
|
acs_user_id?: string | undefined;
|
|
19001
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19002
|
+
user_identity_id?: string | undefined;
|
|
18921
19003
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18922
19004
|
connected_account_id: string;
|
|
18923
19005
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19046,6 +19128,8 @@ export interface Routes {
|
|
|
19046
19128
|
acs_credential_id: string;
|
|
19047
19129
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19048
19130
|
acs_user_id?: string | undefined;
|
|
19131
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19132
|
+
user_identity_id?: string | undefined;
|
|
19049
19133
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19050
19134
|
connected_account_id: string;
|
|
19051
19135
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19855,6 +19939,8 @@ export interface Routes {
|
|
|
19855
19939
|
acs_credential_id: string;
|
|
19856
19940
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19857
19941
|
acs_user_id?: string | undefined;
|
|
19942
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19943
|
+
user_identity_id?: string | undefined;
|
|
19858
19944
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19859
19945
|
connected_account_id: string;
|
|
19860
19946
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19983,6 +20069,8 @@ export interface Routes {
|
|
|
19983
20069
|
acs_credential_id: string;
|
|
19984
20070
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19985
20071
|
acs_user_id?: string | undefined;
|
|
20072
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20073
|
+
user_identity_id?: string | undefined;
|
|
19986
20074
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19987
20075
|
connected_account_id: string;
|
|
19988
20076
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20163,6 +20251,8 @@ export interface Routes {
|
|
|
20163
20251
|
acs_credential_id: string;
|
|
20164
20252
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20165
20253
|
acs_user_id?: string | undefined;
|
|
20254
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20255
|
+
user_identity_id?: string | undefined;
|
|
20166
20256
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20167
20257
|
connected_account_id: string;
|
|
20168
20258
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20291,6 +20381,8 @@ export interface Routes {
|
|
|
20291
20381
|
acs_credential_id: string;
|
|
20292
20382
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20293
20383
|
acs_user_id?: string | undefined;
|
|
20384
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20385
|
+
user_identity_id?: string | undefined;
|
|
20294
20386
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20295
20387
|
connected_account_id: string;
|
|
20296
20388
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33371,6 +33463,8 @@ export interface Routes {
|
|
|
33371
33463
|
acs_credential_id: string;
|
|
33372
33464
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33373
33465
|
acs_user_id?: string | undefined;
|
|
33466
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33467
|
+
user_identity_id?: string | undefined;
|
|
33374
33468
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33375
33469
|
connected_account_id: string;
|
|
33376
33470
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33499,6 +33593,8 @@ export interface Routes {
|
|
|
33499
33593
|
acs_credential_id: string;
|
|
33500
33594
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33501
33595
|
acs_user_id?: string | undefined;
|
|
33596
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33597
|
+
user_identity_id?: string | undefined;
|
|
33502
33598
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33503
33599
|
connected_account_id: string;
|
|
33504
33600
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33679,6 +33775,8 @@ export interface Routes {
|
|
|
33679
33775
|
acs_credential_id: string;
|
|
33680
33776
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33681
33777
|
acs_user_id?: string | undefined;
|
|
33778
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33779
|
+
user_identity_id?: string | undefined;
|
|
33682
33780
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33683
33781
|
connected_account_id: string;
|
|
33684
33782
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33807,6 +33905,8 @@ export interface Routes {
|
|
|
33807
33905
|
acs_credential_id: string;
|
|
33808
33906
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33809
33907
|
acs_user_id?: string | undefined;
|
|
33908
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33909
|
+
user_identity_id?: string | undefined;
|
|
33810
33910
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33811
33911
|
connected_account_id: string;
|
|
33812
33912
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34623,6 +34723,8 @@ export interface Routes {
|
|
|
34623
34723
|
acs_credential_id: string;
|
|
34624
34724
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34625
34725
|
acs_user_id?: string | undefined;
|
|
34726
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34727
|
+
user_identity_id?: string | undefined;
|
|
34626
34728
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34627
34729
|
connected_account_id: string;
|
|
34628
34730
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34751,6 +34853,8 @@ export interface Routes {
|
|
|
34751
34853
|
acs_credential_id: string;
|
|
34752
34854
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34753
34855
|
acs_user_id?: string | undefined;
|
|
34856
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34857
|
+
user_identity_id?: string | undefined;
|
|
34754
34858
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34755
34859
|
connected_account_id: string;
|
|
34756
34860
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34931,6 +35035,8 @@ export interface Routes {
|
|
|
34931
35035
|
acs_credential_id: string;
|
|
34932
35036
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34933
35037
|
acs_user_id?: string | undefined;
|
|
35038
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35039
|
+
user_identity_id?: string | undefined;
|
|
34934
35040
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34935
35041
|
connected_account_id: string;
|
|
34936
35042
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35059,6 +35165,8 @@ export interface Routes {
|
|
|
35059
35165
|
acs_credential_id: string;
|
|
35060
35166
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35061
35167
|
acs_user_id?: string | undefined;
|
|
35168
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35169
|
+
user_identity_id?: string | undefined;
|
|
35062
35170
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35063
35171
|
connected_account_id: string;
|
|
35064
35172
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35873,6 +35981,8 @@ export interface Routes {
|
|
|
35873
35981
|
acs_credential_id: string;
|
|
35874
35982
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35875
35983
|
acs_user_id?: string | undefined;
|
|
35984
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35985
|
+
user_identity_id?: string | undefined;
|
|
35876
35986
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35877
35987
|
connected_account_id: string;
|
|
35878
35988
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36001,6 +36111,8 @@ export interface Routes {
|
|
|
36001
36111
|
acs_credential_id: string;
|
|
36002
36112
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36003
36113
|
acs_user_id?: string | undefined;
|
|
36114
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36115
|
+
user_identity_id?: string | undefined;
|
|
36004
36116
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36005
36117
|
connected_account_id: string;
|
|
36006
36118
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36181,6 +36293,8 @@ export interface Routes {
|
|
|
36181
36293
|
acs_credential_id: string;
|
|
36182
36294
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36183
36295
|
acs_user_id?: string | undefined;
|
|
36296
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36297
|
+
user_identity_id?: string | undefined;
|
|
36184
36298
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36185
36299
|
connected_account_id: string;
|
|
36186
36300
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36309,6 +36423,8 @@ export interface Routes {
|
|
|
36309
36423
|
acs_credential_id: string;
|
|
36310
36424
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36311
36425
|
acs_user_id?: string | undefined;
|
|
36426
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36427
|
+
user_identity_id?: string | undefined;
|
|
36312
36428
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36313
36429
|
connected_account_id: string;
|
|
36314
36430
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37125,6 +37241,8 @@ export interface Routes {
|
|
|
37125
37241
|
acs_credential_id: string;
|
|
37126
37242
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37127
37243
|
acs_user_id?: string | undefined;
|
|
37244
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37245
|
+
user_identity_id?: string | undefined;
|
|
37128
37246
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37129
37247
|
connected_account_id: string;
|
|
37130
37248
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37253,6 +37371,8 @@ export interface Routes {
|
|
|
37253
37371
|
acs_credential_id: string;
|
|
37254
37372
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37255
37373
|
acs_user_id?: string | undefined;
|
|
37374
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37375
|
+
user_identity_id?: string | undefined;
|
|
37256
37376
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37257
37377
|
connected_account_id: string;
|
|
37258
37378
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37433,6 +37553,8 @@ export interface Routes {
|
|
|
37433
37553
|
acs_credential_id: string;
|
|
37434
37554
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37435
37555
|
acs_user_id?: string | undefined;
|
|
37556
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37557
|
+
user_identity_id?: string | undefined;
|
|
37436
37558
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37437
37559
|
connected_account_id: string;
|
|
37438
37560
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37561,6 +37683,8 @@ export interface Routes {
|
|
|
37561
37683
|
acs_credential_id: string;
|
|
37562
37684
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37563
37685
|
acs_user_id?: string | undefined;
|
|
37686
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37687
|
+
user_identity_id?: string | undefined;
|
|
37564
37688
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37565
37689
|
connected_account_id: string;
|
|
37566
37690
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -40719,6 +40843,8 @@ export interface Routes {
|
|
|
40719
40843
|
acs_credential_id: string;
|
|
40720
40844
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40721
40845
|
acs_user_id?: string | undefined;
|
|
40846
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40847
|
+
user_identity_id?: string | undefined;
|
|
40722
40848
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40723
40849
|
connected_account_id: string;
|
|
40724
40850
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -40847,6 +40973,8 @@ export interface Routes {
|
|
|
40847
40973
|
acs_credential_id: string;
|
|
40848
40974
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40849
40975
|
acs_user_id?: string | undefined;
|
|
40976
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40977
|
+
user_identity_id?: string | undefined;
|
|
40850
40978
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40851
40979
|
connected_account_id: string;
|
|
40852
40980
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41027,6 +41155,8 @@ export interface Routes {
|
|
|
41027
41155
|
acs_credential_id: string;
|
|
41028
41156
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41029
41157
|
acs_user_id?: string | undefined;
|
|
41158
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41159
|
+
user_identity_id?: string | undefined;
|
|
41030
41160
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41031
41161
|
connected_account_id: string;
|
|
41032
41162
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41155,6 +41285,8 @@ export interface Routes {
|
|
|
41155
41285
|
acs_credential_id: string;
|
|
41156
41286
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41157
41287
|
acs_user_id?: string | undefined;
|
|
41288
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41289
|
+
user_identity_id?: string | undefined;
|
|
41158
41290
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41159
41291
|
connected_account_id: string;
|
|
41160
41292
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41990,6 +42122,8 @@ export interface Routes {
|
|
|
41990
42122
|
acs_credential_id: string;
|
|
41991
42123
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41992
42124
|
acs_user_id?: string | undefined;
|
|
42125
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42126
|
+
user_identity_id?: string | undefined;
|
|
41993
42127
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41994
42128
|
connected_account_id: string;
|
|
41995
42129
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42118,6 +42252,8 @@ export interface Routes {
|
|
|
42118
42252
|
acs_credential_id: string;
|
|
42119
42253
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42120
42254
|
acs_user_id?: string | undefined;
|
|
42255
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42256
|
+
user_identity_id?: string | undefined;
|
|
42121
42257
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42122
42258
|
connected_account_id: string;
|
|
42123
42259
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42298,6 +42434,8 @@ export interface Routes {
|
|
|
42298
42434
|
acs_credential_id: string;
|
|
42299
42435
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42300
42436
|
acs_user_id?: string | undefined;
|
|
42437
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42438
|
+
user_identity_id?: string | undefined;
|
|
42301
42439
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42302
42440
|
connected_account_id: string;
|
|
42303
42441
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42426,6 +42564,8 @@ export interface Routes {
|
|
|
42426
42564
|
acs_credential_id: string;
|
|
42427
42565
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42428
42566
|
acs_user_id?: string | undefined;
|
|
42567
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42568
|
+
user_identity_id?: string | undefined;
|
|
42429
42569
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42430
42570
|
connected_account_id: string;
|
|
42431
42571
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43315,6 +43455,8 @@ export interface Routes {
|
|
|
43315
43455
|
acs_credential_id: string;
|
|
43316
43456
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43317
43457
|
acs_user_id?: string | undefined;
|
|
43458
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43459
|
+
user_identity_id?: string | undefined;
|
|
43318
43460
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43319
43461
|
connected_account_id: string;
|
|
43320
43462
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43443,6 +43585,8 @@ export interface Routes {
|
|
|
43443
43585
|
acs_credential_id: string;
|
|
43444
43586
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43445
43587
|
acs_user_id?: string | undefined;
|
|
43588
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43589
|
+
user_identity_id?: string | undefined;
|
|
43446
43590
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43447
43591
|
connected_account_id: string;
|
|
43448
43592
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43623,6 +43767,8 @@ export interface Routes {
|
|
|
43623
43767
|
acs_credential_id: string;
|
|
43624
43768
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43625
43769
|
acs_user_id?: string | undefined;
|
|
43770
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43771
|
+
user_identity_id?: string | undefined;
|
|
43626
43772
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43627
43773
|
connected_account_id: string;
|
|
43628
43774
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43751,6 +43897,8 @@ export interface Routes {
|
|
|
43751
43897
|
acs_credential_id: string;
|
|
43752
43898
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43753
43899
|
acs_user_id?: string | undefined;
|
|
43900
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43901
|
+
user_identity_id?: string | undefined;
|
|
43754
43902
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43755
43903
|
connected_account_id: string;
|
|
43756
43904
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45201,6 +45349,8 @@ export interface Routes {
|
|
|
45201
45349
|
acs_credential_id: string;
|
|
45202
45350
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45203
45351
|
acs_user_id?: string | undefined;
|
|
45352
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45353
|
+
user_identity_id?: string | undefined;
|
|
45204
45354
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45205
45355
|
connected_account_id: string;
|
|
45206
45356
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45365,6 +45515,8 @@ export interface Routes {
|
|
|
45365
45515
|
acs_credentials: Array<{
|
|
45366
45516
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45367
45517
|
acs_user_id?: string | undefined;
|
|
45518
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45519
|
+
user_identity_id?: string | undefined;
|
|
45368
45520
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45369
45521
|
connected_account_id: string;
|
|
45370
45522
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45944,6 +46096,8 @@ export interface Routes {
|
|
|
45944
46096
|
acs_credential_id: string;
|
|
45945
46097
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45946
46098
|
acs_user_id?: string | undefined;
|
|
46099
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46100
|
+
user_identity_id?: string | undefined;
|
|
45947
46101
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45948
46102
|
connected_account_id: string;
|
|
45949
46103
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46072,6 +46226,8 @@ export interface Routes {
|
|
|
46072
46226
|
acs_credential_id: string;
|
|
46073
46227
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46074
46228
|
acs_user_id?: string | undefined;
|
|
46229
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46230
|
+
user_identity_id?: string | undefined;
|
|
46075
46231
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46076
46232
|
connected_account_id: string;
|
|
46077
46233
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46252,6 +46408,8 @@ export interface Routes {
|
|
|
46252
46408
|
acs_credential_id: string;
|
|
46253
46409
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46254
46410
|
acs_user_id?: string | undefined;
|
|
46411
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46412
|
+
user_identity_id?: string | undefined;
|
|
46255
46413
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46256
46414
|
connected_account_id: string;
|
|
46257
46415
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46380,6 +46538,8 @@ export interface Routes {
|
|
|
46380
46538
|
acs_credential_id: string;
|
|
46381
46539
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46382
46540
|
acs_user_id?: string | undefined;
|
|
46541
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46542
|
+
user_identity_id?: string | undefined;
|
|
46383
46543
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46384
46544
|
connected_account_id: string;
|
|
46385
46545
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47200,6 +47360,8 @@ export interface Routes {
|
|
|
47200
47360
|
acs_credential_id: string;
|
|
47201
47361
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47202
47362
|
acs_user_id?: string | undefined;
|
|
47363
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47364
|
+
user_identity_id?: string | undefined;
|
|
47203
47365
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47204
47366
|
connected_account_id: string;
|
|
47205
47367
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47328,6 +47490,8 @@ export interface Routes {
|
|
|
47328
47490
|
acs_credential_id: string;
|
|
47329
47491
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47330
47492
|
acs_user_id?: string | undefined;
|
|
47493
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47494
|
+
user_identity_id?: string | undefined;
|
|
47331
47495
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47332
47496
|
connected_account_id: string;
|
|
47333
47497
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47508,6 +47672,8 @@ export interface Routes {
|
|
|
47508
47672
|
acs_credential_id: string;
|
|
47509
47673
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47510
47674
|
acs_user_id?: string | undefined;
|
|
47675
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47676
|
+
user_identity_id?: string | undefined;
|
|
47511
47677
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47512
47678
|
connected_account_id: string;
|
|
47513
47679
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47636,6 +47802,8 @@ export interface Routes {
|
|
|
47636
47802
|
acs_credential_id: string;
|
|
47637
47803
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47638
47804
|
acs_user_id?: string | undefined;
|
|
47805
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47806
|
+
user_identity_id?: string | undefined;
|
|
47639
47807
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47640
47808
|
connected_account_id: string;
|
|
47641
47809
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48548,6 +48716,8 @@ export interface Routes {
|
|
|
48548
48716
|
acs_credential_id: string;
|
|
48549
48717
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48550
48718
|
acs_user_id?: string | undefined;
|
|
48719
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48720
|
+
user_identity_id?: string | undefined;
|
|
48551
48721
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48552
48722
|
connected_account_id: string;
|
|
48553
48723
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48676,6 +48846,8 @@ export interface Routes {
|
|
|
48676
48846
|
acs_credential_id: string;
|
|
48677
48847
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48678
48848
|
acs_user_id?: string | undefined;
|
|
48849
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48850
|
+
user_identity_id?: string | undefined;
|
|
48679
48851
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48680
48852
|
connected_account_id: string;
|
|
48681
48853
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48856,6 +49028,8 @@ export interface Routes {
|
|
|
48856
49028
|
acs_credential_id: string;
|
|
48857
49029
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48858
49030
|
acs_user_id?: string | undefined;
|
|
49031
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49032
|
+
user_identity_id?: string | undefined;
|
|
48859
49033
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48860
49034
|
connected_account_id: string;
|
|
48861
49035
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48984,6 +49158,8 @@ export interface Routes {
|
|
|
48984
49158
|
acs_credential_id: string;
|
|
48985
49159
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48986
49160
|
acs_user_id?: string | undefined;
|
|
49161
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49162
|
+
user_identity_id?: string | undefined;
|
|
48987
49163
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48988
49164
|
connected_account_id: string;
|
|
48989
49165
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -50959,6 +51135,8 @@ export interface Routes {
|
|
|
50959
51135
|
acs_credential_id: string;
|
|
50960
51136
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50961
51137
|
acs_user_id?: string | undefined;
|
|
51138
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51139
|
+
user_identity_id?: string | undefined;
|
|
50962
51140
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50963
51141
|
connected_account_id: string;
|
|
50964
51142
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51087,6 +51265,8 @@ export interface Routes {
|
|
|
51087
51265
|
acs_credential_id: string;
|
|
51088
51266
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51089
51267
|
acs_user_id?: string | undefined;
|
|
51268
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51269
|
+
user_identity_id?: string | undefined;
|
|
51090
51270
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51091
51271
|
connected_account_id: string;
|
|
51092
51272
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51267,6 +51447,8 @@ export interface Routes {
|
|
|
51267
51447
|
acs_credential_id: string;
|
|
51268
51448
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51269
51449
|
acs_user_id?: string | undefined;
|
|
51450
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51451
|
+
user_identity_id?: string | undefined;
|
|
51270
51452
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51271
51453
|
connected_account_id: string;
|
|
51272
51454
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51395,6 +51577,8 @@ export interface Routes {
|
|
|
51395
51577
|
acs_credential_id: string;
|
|
51396
51578
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51397
51579
|
acs_user_id?: string | undefined;
|
|
51580
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51581
|
+
user_identity_id?: string | undefined;
|
|
51398
51582
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51399
51583
|
connected_account_id: string;
|
|
51400
51584
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52219,6 +52403,8 @@ export interface Routes {
|
|
|
52219
52403
|
acs_credential_id: string;
|
|
52220
52404
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52221
52405
|
acs_user_id?: string | undefined;
|
|
52406
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52407
|
+
user_identity_id?: string | undefined;
|
|
52222
52408
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52223
52409
|
connected_account_id: string;
|
|
52224
52410
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52347,6 +52533,8 @@ export interface Routes {
|
|
|
52347
52533
|
acs_credential_id: string;
|
|
52348
52534
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52349
52535
|
acs_user_id?: string | undefined;
|
|
52536
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52537
|
+
user_identity_id?: string | undefined;
|
|
52350
52538
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52351
52539
|
connected_account_id: string;
|
|
52352
52540
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52527,6 +52715,8 @@ export interface Routes {
|
|
|
52527
52715
|
acs_credential_id: string;
|
|
52528
52716
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52529
52717
|
acs_user_id?: string | undefined;
|
|
52718
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52719
|
+
user_identity_id?: string | undefined;
|
|
52530
52720
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52531
52721
|
connected_account_id: string;
|
|
52532
52722
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52655,6 +52845,8 @@ export interface Routes {
|
|
|
52655
52845
|
acs_credential_id: string;
|
|
52656
52846
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52657
52847
|
acs_user_id?: string | undefined;
|
|
52848
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52849
|
+
user_identity_id?: string | undefined;
|
|
52658
52850
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52659
52851
|
connected_account_id: string;
|
|
52660
52852
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55768,6 +55960,8 @@ export interface Routes {
|
|
|
55768
55960
|
acs_credential_id: string;
|
|
55769
55961
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55770
55962
|
acs_user_id?: string | undefined;
|
|
55963
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55964
|
+
user_identity_id?: string | undefined;
|
|
55771
55965
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55772
55966
|
connected_account_id: string;
|
|
55773
55967
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55896,6 +56090,8 @@ export interface Routes {
|
|
|
55896
56090
|
acs_credential_id: string;
|
|
55897
56091
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55898
56092
|
acs_user_id?: string | undefined;
|
|
56093
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56094
|
+
user_identity_id?: string | undefined;
|
|
55899
56095
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55900
56096
|
connected_account_id: string;
|
|
55901
56097
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56076,6 +56272,8 @@ export interface Routes {
|
|
|
56076
56272
|
acs_credential_id: string;
|
|
56077
56273
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56078
56274
|
acs_user_id?: string | undefined;
|
|
56275
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56276
|
+
user_identity_id?: string | undefined;
|
|
56079
56277
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56080
56278
|
connected_account_id: string;
|
|
56081
56279
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56204,6 +56402,8 @@ export interface Routes {
|
|
|
56204
56402
|
acs_credential_id: string;
|
|
56205
56403
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56206
56404
|
acs_user_id?: string | undefined;
|
|
56405
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56406
|
+
user_identity_id?: string | undefined;
|
|
56207
56407
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56208
56408
|
connected_account_id: string;
|
|
56209
56409
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57217,6 +57417,8 @@ export interface Routes {
|
|
|
57217
57417
|
acs_credential_id: string;
|
|
57218
57418
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57219
57419
|
acs_user_id?: string | undefined;
|
|
57420
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57421
|
+
user_identity_id?: string | undefined;
|
|
57220
57422
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57221
57423
|
connected_account_id: string;
|
|
57222
57424
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57345,6 +57547,8 @@ export interface Routes {
|
|
|
57345
57547
|
acs_credential_id: string;
|
|
57346
57548
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57347
57549
|
acs_user_id?: string | undefined;
|
|
57550
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57551
|
+
user_identity_id?: string | undefined;
|
|
57348
57552
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57349
57553
|
connected_account_id: string;
|
|
57350
57554
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57525,6 +57729,8 @@ export interface Routes {
|
|
|
57525
57729
|
acs_credential_id: string;
|
|
57526
57730
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57527
57731
|
acs_user_id?: string | undefined;
|
|
57732
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57733
|
+
user_identity_id?: string | undefined;
|
|
57528
57734
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57529
57735
|
connected_account_id: string;
|
|
57530
57736
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57653,6 +57859,8 @@ export interface Routes {
|
|
|
57653
57859
|
acs_credential_id: string;
|
|
57654
57860
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57655
57861
|
acs_user_id?: string | undefined;
|
|
57862
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57863
|
+
user_identity_id?: string | undefined;
|
|
57656
57864
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57657
57865
|
connected_account_id: string;
|
|
57658
57866
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58496,6 +58704,8 @@ export interface Routes {
|
|
|
58496
58704
|
acs_credential_id: string;
|
|
58497
58705
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58498
58706
|
acs_user_id?: string | undefined;
|
|
58707
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58708
|
+
user_identity_id?: string | undefined;
|
|
58499
58709
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58500
58710
|
connected_account_id: string;
|
|
58501
58711
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58624,6 +58834,8 @@ export interface Routes {
|
|
|
58624
58834
|
acs_credential_id: string;
|
|
58625
58835
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58626
58836
|
acs_user_id?: string | undefined;
|
|
58837
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58838
|
+
user_identity_id?: string | undefined;
|
|
58627
58839
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58628
58840
|
connected_account_id: string;
|
|
58629
58841
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58804,6 +59016,8 @@ export interface Routes {
|
|
|
58804
59016
|
acs_credential_id: string;
|
|
58805
59017
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58806
59018
|
acs_user_id?: string | undefined;
|
|
59019
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59020
|
+
user_identity_id?: string | undefined;
|
|
58807
59021
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58808
59022
|
connected_account_id: string;
|
|
58809
59023
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58932,6 +59146,8 @@ export interface Routes {
|
|
|
58932
59146
|
acs_credential_id: string;
|
|
58933
59147
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58934
59148
|
acs_user_id?: string | undefined;
|
|
59149
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59150
|
+
user_identity_id?: string | undefined;
|
|
58935
59151
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58936
59152
|
connected_account_id: string;
|
|
58937
59153
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59876,6 +60092,8 @@ export interface Routes {
|
|
|
59876
60092
|
acs_credential_id: string;
|
|
59877
60093
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59878
60094
|
acs_user_id?: string | undefined;
|
|
60095
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60096
|
+
user_identity_id?: string | undefined;
|
|
59879
60097
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59880
60098
|
connected_account_id: string;
|
|
59881
60099
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60004,6 +60222,8 @@ export interface Routes {
|
|
|
60004
60222
|
acs_credential_id: string;
|
|
60005
60223
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60006
60224
|
acs_user_id?: string | undefined;
|
|
60225
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60226
|
+
user_identity_id?: string | undefined;
|
|
60007
60227
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60008
60228
|
connected_account_id: string;
|
|
60009
60229
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60184,6 +60404,8 @@ export interface Routes {
|
|
|
60184
60404
|
acs_credential_id: string;
|
|
60185
60405
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60186
60406
|
acs_user_id?: string | undefined;
|
|
60407
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60408
|
+
user_identity_id?: string | undefined;
|
|
60187
60409
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60188
60410
|
connected_account_id: string;
|
|
60189
60411
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60312,6 +60534,8 @@ export interface Routes {
|
|
|
60312
60534
|
acs_credential_id: string;
|
|
60313
60535
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60314
60536
|
acs_user_id?: string | undefined;
|
|
60537
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60538
|
+
user_identity_id?: string | undefined;
|
|
60315
60539
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60316
60540
|
connected_account_id: string;
|
|
60317
60541
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -64994,6 +65218,8 @@ export interface Routes {
|
|
|
64994
65218
|
acs_credential_id: string;
|
|
64995
65219
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64996
65220
|
acs_user_id?: string | undefined;
|
|
65221
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65222
|
+
user_identity_id?: string | undefined;
|
|
64997
65223
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64998
65224
|
connected_account_id: string;
|
|
64999
65225
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65122,6 +65348,8 @@ export interface Routes {
|
|
|
65122
65348
|
acs_credential_id: string;
|
|
65123
65349
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65124
65350
|
acs_user_id?: string | undefined;
|
|
65351
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65352
|
+
user_identity_id?: string | undefined;
|
|
65125
65353
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65126
65354
|
connected_account_id: string;
|
|
65127
65355
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65302,6 +65530,8 @@ export interface Routes {
|
|
|
65302
65530
|
acs_credential_id: string;
|
|
65303
65531
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65304
65532
|
acs_user_id?: string | undefined;
|
|
65533
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65534
|
+
user_identity_id?: string | undefined;
|
|
65305
65535
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65306
65536
|
connected_account_id: string;
|
|
65307
65537
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65430,6 +65660,8 @@ export interface Routes {
|
|
|
65430
65660
|
acs_credential_id: string;
|
|
65431
65661
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65432
65662
|
acs_user_id?: string | undefined;
|
|
65663
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65664
|
+
user_identity_id?: string | undefined;
|
|
65433
65665
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65434
65666
|
connected_account_id: string;
|
|
65435
65667
|
acs_credential_pool_id?: string | undefined;
|