@seamapi/types 1.930.0 → 1.932.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 +47 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +225 -187
- package/dist/index.cjs +47 -33
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +4 -4
- package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -1
- package/lib/seam/connect/models/events/devices.d.ts +12 -0
- package/lib/seam/connect/models/events/devices.js +6 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/enrollment-automations.js +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -0
- package/lib/seam/connect/openapi.js +33 -25
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +219 -187
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -1
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +4 -4
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -1
- package/src/lib/seam/connect/models/events/devices.ts +6 -0
- package/src/lib/seam/connect/models/events/enrollment-automations.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +35 -25
- package/src/lib/seam/connect/route-types.ts +219 -187
|
@@ -27,7 +27,7 @@ export type Routes = {
|
|
|
27
27
|
common_code_key?: string | undefined;
|
|
28
28
|
/** Indicates whether [native scheduling](https://docs.seam.co/low-level-apis/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
|
|
29
29
|
prefer_native_scheduling?: boolean | undefined;
|
|
30
|
-
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
30
|
+
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code). */
|
|
31
31
|
use_backup_access_code_pool?: boolean | undefined;
|
|
32
32
|
/** Indicates whether [external modification](https://docs.seam.co/low-level-apis/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
33
33
|
allow_external_modification?: boolean | undefined;
|
|
@@ -197,7 +197,7 @@ export type Routes = {
|
|
|
197
197
|
acs_user_id?: string | undefined;
|
|
198
198
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
199
199
|
user_identity_id?: string | undefined;
|
|
200
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
200
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
201
201
|
connected_account_id: string;
|
|
202
202
|
/** ID of the credential pool to which the credential belongs. */
|
|
203
203
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -329,7 +329,7 @@ export type Routes = {
|
|
|
329
329
|
acs_user_id?: string | undefined;
|
|
330
330
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
331
331
|
user_identity_id?: string | undefined;
|
|
332
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
332
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
333
333
|
connected_account_id: string;
|
|
334
334
|
/** ID of the credential pool to which the credential belongs. */
|
|
335
335
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -527,7 +527,7 @@ export type Routes = {
|
|
|
527
527
|
acs_user_id?: string | undefined;
|
|
528
528
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
529
529
|
user_identity_id?: string | undefined;
|
|
530
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
530
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
531
531
|
connected_account_id: string;
|
|
532
532
|
/** ID of the credential pool to which the credential belongs. */
|
|
533
533
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -659,7 +659,7 @@ export type Routes = {
|
|
|
659
659
|
acs_user_id?: string | undefined;
|
|
660
660
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
661
661
|
user_identity_id?: string | undefined;
|
|
662
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
662
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
663
663
|
connected_account_id: string;
|
|
664
664
|
/** ID of the credential pool to which the credential belongs. */
|
|
665
665
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -869,7 +869,7 @@ export type Routes = {
|
|
|
869
869
|
acs_user_id?: string | undefined;
|
|
870
870
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
871
871
|
user_identity_id?: string | undefined;
|
|
872
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
872
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
873
873
|
connected_account_id: string;
|
|
874
874
|
/** ID of the credential pool to which the credential belongs. */
|
|
875
875
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2250,7 +2250,7 @@ export type Routes = {
|
|
|
2250
2250
|
allow_external_modification?: boolean | undefined;
|
|
2251
2251
|
/** Indicates whether [external modification](https://docs.seam.co/low-level-apis/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
2252
2252
|
is_external_modification_allowed?: boolean | undefined;
|
|
2253
|
-
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
2253
|
+
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code). */
|
|
2254
2254
|
use_backup_access_code_pool?: boolean | undefined;
|
|
2255
2255
|
};
|
|
2256
2256
|
commonParams: {};
|
|
@@ -2915,7 +2915,7 @@ export type Routes = {
|
|
|
2915
2915
|
acs_user_id?: string | undefined;
|
|
2916
2916
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
2917
2917
|
user_identity_id?: string | undefined;
|
|
2918
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
2918
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
2919
2919
|
connected_account_id: string;
|
|
2920
2920
|
/** ID of the credential pool to which the credential belongs. */
|
|
2921
2921
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3047,7 +3047,7 @@ export type Routes = {
|
|
|
3047
3047
|
acs_user_id?: string | undefined;
|
|
3048
3048
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3049
3049
|
user_identity_id?: string | undefined;
|
|
3050
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
3050
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3051
3051
|
connected_account_id: string;
|
|
3052
3052
|
/** ID of the credential pool to which the credential belongs. */
|
|
3053
3053
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3245,7 +3245,7 @@ export type Routes = {
|
|
|
3245
3245
|
acs_user_id?: string | undefined;
|
|
3246
3246
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3247
3247
|
user_identity_id?: string | undefined;
|
|
3248
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
3248
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3249
3249
|
connected_account_id: string;
|
|
3250
3250
|
/** ID of the credential pool to which the credential belongs. */
|
|
3251
3251
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3377,7 +3377,7 @@ export type Routes = {
|
|
|
3377
3377
|
acs_user_id?: string | undefined;
|
|
3378
3378
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3379
3379
|
user_identity_id?: string | undefined;
|
|
3380
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
3380
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3381
3381
|
connected_account_id: string;
|
|
3382
3382
|
/** ID of the credential pool to which the credential belongs. */
|
|
3383
3383
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3587,7 +3587,7 @@ export type Routes = {
|
|
|
3587
3587
|
acs_user_id?: string | undefined;
|
|
3588
3588
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3589
3589
|
user_identity_id?: string | undefined;
|
|
3590
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
3590
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3591
3591
|
connected_account_id: string;
|
|
3592
3592
|
/** ID of the credential pool to which the credential belongs. */
|
|
3593
3593
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -7205,7 +7205,7 @@ export type Routes = {
|
|
|
7205
7205
|
acs_user_id?: string | undefined;
|
|
7206
7206
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7207
7207
|
user_identity_id?: string | undefined;
|
|
7208
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
7208
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7209
7209
|
connected_account_id: string;
|
|
7210
7210
|
/** ID of the credential pool to which the credential belongs. */
|
|
7211
7211
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -7337,7 +7337,7 @@ export type Routes = {
|
|
|
7337
7337
|
acs_user_id?: string | undefined;
|
|
7338
7338
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7339
7339
|
user_identity_id?: string | undefined;
|
|
7340
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
7340
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7341
7341
|
connected_account_id: string;
|
|
7342
7342
|
/** ID of the credential pool to which the credential belongs. */
|
|
7343
7343
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -7535,7 +7535,7 @@ export type Routes = {
|
|
|
7535
7535
|
acs_user_id?: string | undefined;
|
|
7536
7536
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7537
7537
|
user_identity_id?: string | undefined;
|
|
7538
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
7538
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7539
7539
|
connected_account_id: string;
|
|
7540
7540
|
/** ID of the credential pool to which the credential belongs. */
|
|
7541
7541
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -7667,7 +7667,7 @@ export type Routes = {
|
|
|
7667
7667
|
acs_user_id?: string | undefined;
|
|
7668
7668
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7669
7669
|
user_identity_id?: string | undefined;
|
|
7670
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
7670
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7671
7671
|
connected_account_id: string;
|
|
7672
7672
|
/** ID of the credential pool to which the credential belongs. */
|
|
7673
7673
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -7877,7 +7877,7 @@ export type Routes = {
|
|
|
7877
7877
|
acs_user_id?: string | undefined;
|
|
7878
7878
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7879
7879
|
user_identity_id?: string | undefined;
|
|
7880
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
7880
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
7881
7881
|
connected_account_id: string;
|
|
7882
7882
|
/** ID of the credential pool to which the credential belongs. */
|
|
7883
7883
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9625,7 +9625,7 @@ export type Routes = {
|
|
|
9625
9625
|
attempt_for_offline_device?: boolean;
|
|
9626
9626
|
/** Indicates whether [native scheduling](https://docs.seam.co/low-level-apis/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
|
|
9627
9627
|
prefer_native_scheduling?: boolean | undefined;
|
|
9628
|
-
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes
|
|
9628
|
+
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/api/access_codes/pull_backup_access_code). */
|
|
9629
9629
|
use_backup_access_code_pool?: boolean | undefined;
|
|
9630
9630
|
/** Indicates whether [external modification](https://docs.seam.co/low-level-apis/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
9631
9631
|
allow_external_modification?: boolean | undefined;
|
|
@@ -9803,7 +9803,7 @@ export type Routes = {
|
|
|
9803
9803
|
acs_user_id?: string | undefined;
|
|
9804
9804
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
9805
9805
|
user_identity_id?: string | undefined;
|
|
9806
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
9806
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
9807
9807
|
connected_account_id: string;
|
|
9808
9808
|
/** ID of the credential pool to which the credential belongs. */
|
|
9809
9809
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9935,7 +9935,7 @@ export type Routes = {
|
|
|
9935
9935
|
acs_user_id?: string | undefined;
|
|
9936
9936
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
9937
9937
|
user_identity_id?: string | undefined;
|
|
9938
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
9938
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
9939
9939
|
connected_account_id: string;
|
|
9940
9940
|
/** ID of the credential pool to which the credential belongs. */
|
|
9941
9941
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10133,7 +10133,7 @@ export type Routes = {
|
|
|
10133
10133
|
acs_user_id?: string | undefined;
|
|
10134
10134
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
10135
10135
|
user_identity_id?: string | undefined;
|
|
10136
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
10136
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
10137
10137
|
connected_account_id: string;
|
|
10138
10138
|
/** ID of the credential pool to which the credential belongs. */
|
|
10139
10139
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10265,7 +10265,7 @@ export type Routes = {
|
|
|
10265
10265
|
acs_user_id?: string | undefined;
|
|
10266
10266
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
10267
10267
|
user_identity_id?: string | undefined;
|
|
10268
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
10268
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
10269
10269
|
connected_account_id: string;
|
|
10270
10270
|
/** ID of the credential pool to which the credential belongs. */
|
|
10271
10271
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10475,7 +10475,7 @@ export type Routes = {
|
|
|
10475
10475
|
acs_user_id?: string | undefined;
|
|
10476
10476
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
10477
10477
|
user_identity_id?: string | undefined;
|
|
10478
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
10478
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
10479
10479
|
connected_account_id: string;
|
|
10480
10480
|
/** ID of the credential pool to which the credential belongs. */
|
|
10481
10481
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15160,7 +15160,7 @@ export type Routes = {
|
|
|
15160
15160
|
acs_user_id?: string | undefined;
|
|
15161
15161
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15162
15162
|
user_identity_id?: string | undefined;
|
|
15163
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
15163
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15164
15164
|
connected_account_id: string;
|
|
15165
15165
|
/** ID of the credential pool to which the credential belongs. */
|
|
15166
15166
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15292,7 +15292,7 @@ export type Routes = {
|
|
|
15292
15292
|
acs_user_id?: string | undefined;
|
|
15293
15293
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15294
15294
|
user_identity_id?: string | undefined;
|
|
15295
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
15295
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15296
15296
|
connected_account_id: string;
|
|
15297
15297
|
/** ID of the credential pool to which the credential belongs. */
|
|
15298
15298
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15490,7 +15490,7 @@ export type Routes = {
|
|
|
15490
15490
|
acs_user_id?: string | undefined;
|
|
15491
15491
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15492
15492
|
user_identity_id?: string | undefined;
|
|
15493
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
15493
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15494
15494
|
connected_account_id: string;
|
|
15495
15495
|
/** ID of the credential pool to which the credential belongs. */
|
|
15496
15496
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15622,7 +15622,7 @@ export type Routes = {
|
|
|
15622
15622
|
acs_user_id?: string | undefined;
|
|
15623
15623
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15624
15624
|
user_identity_id?: string | undefined;
|
|
15625
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
15625
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15626
15626
|
connected_account_id: string;
|
|
15627
15627
|
/** ID of the credential pool to which the credential belongs. */
|
|
15628
15628
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15832,7 +15832,7 @@ export type Routes = {
|
|
|
15832
15832
|
acs_user_id?: string | undefined;
|
|
15833
15833
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15834
15834
|
user_identity_id?: string | undefined;
|
|
15835
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
15835
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
15836
15836
|
connected_account_id: string;
|
|
15837
15837
|
/** ID of the credential pool to which the credential belongs. */
|
|
15838
15838
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -16861,7 +16861,7 @@ export type Routes = {
|
|
|
16861
16861
|
acs_user_id?: string | undefined;
|
|
16862
16862
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
16863
16863
|
user_identity_id?: string | undefined;
|
|
16864
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
16864
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
16865
16865
|
connected_account_id: string;
|
|
16866
16866
|
/** ID of the credential pool to which the credential belongs. */
|
|
16867
16867
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -16993,7 +16993,7 @@ export type Routes = {
|
|
|
16993
16993
|
acs_user_id?: string | undefined;
|
|
16994
16994
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
16995
16995
|
user_identity_id?: string | undefined;
|
|
16996
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
16996
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
16997
16997
|
connected_account_id: string;
|
|
16998
16998
|
/** ID of the credential pool to which the credential belongs. */
|
|
16999
16999
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -17191,7 +17191,7 @@ export type Routes = {
|
|
|
17191
17191
|
acs_user_id?: string | undefined;
|
|
17192
17192
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17193
17193
|
user_identity_id?: string | undefined;
|
|
17194
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
17194
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17195
17195
|
connected_account_id: string;
|
|
17196
17196
|
/** ID of the credential pool to which the credential belongs. */
|
|
17197
17197
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -17323,7 +17323,7 @@ export type Routes = {
|
|
|
17323
17323
|
acs_user_id?: string | undefined;
|
|
17324
17324
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17325
17325
|
user_identity_id?: string | undefined;
|
|
17326
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
17326
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17327
17327
|
connected_account_id: string;
|
|
17328
17328
|
/** ID of the credential pool to which the credential belongs. */
|
|
17329
17329
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -17533,7 +17533,7 @@ export type Routes = {
|
|
|
17533
17533
|
acs_user_id?: string | undefined;
|
|
17534
17534
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17535
17535
|
user_identity_id?: string | undefined;
|
|
17536
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
17536
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17537
17537
|
connected_account_id: string;
|
|
17538
17538
|
/** ID of the credential pool to which the credential belongs. */
|
|
17539
17539
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20544,7 +20544,7 @@ export type Routes = {
|
|
|
20544
20544
|
acs_user_id?: string | undefined;
|
|
20545
20545
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
20546
20546
|
user_identity_id?: string | undefined;
|
|
20547
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
20547
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
20548
20548
|
connected_account_id: string;
|
|
20549
20549
|
/** ID of the credential pool to which the credential belongs. */
|
|
20550
20550
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20974,7 +20974,7 @@ export type Routes = {
|
|
|
20974
20974
|
acs_user_id?: string | undefined;
|
|
20975
20975
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
20976
20976
|
user_identity_id?: string | undefined;
|
|
20977
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
20977
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
20978
20978
|
connected_account_id: string;
|
|
20979
20979
|
/** ID of the credential pool to which the credential belongs. */
|
|
20980
20980
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -21106,7 +21106,7 @@ export type Routes = {
|
|
|
21106
21106
|
acs_user_id?: string | undefined;
|
|
21107
21107
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
21108
21108
|
user_identity_id?: string | undefined;
|
|
21109
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
21109
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
21110
21110
|
connected_account_id: string;
|
|
21111
21111
|
/** ID of the credential pool to which the credential belongs. */
|
|
21112
21112
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -21304,7 +21304,7 @@ export type Routes = {
|
|
|
21304
21304
|
acs_user_id?: string | undefined;
|
|
21305
21305
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
21306
21306
|
user_identity_id?: string | undefined;
|
|
21307
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
21307
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
21308
21308
|
connected_account_id: string;
|
|
21309
21309
|
/** ID of the credential pool to which the credential belongs. */
|
|
21310
21310
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -21436,7 +21436,7 @@ export type Routes = {
|
|
|
21436
21436
|
acs_user_id?: string | undefined;
|
|
21437
21437
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
21438
21438
|
user_identity_id?: string | undefined;
|
|
21439
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
21439
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
21440
21440
|
connected_account_id: string;
|
|
21441
21441
|
/** ID of the credential pool to which the credential belongs. */
|
|
21442
21442
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -21646,7 +21646,7 @@ export type Routes = {
|
|
|
21646
21646
|
acs_user_id?: string | undefined;
|
|
21647
21647
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
21648
21648
|
user_identity_id?: string | undefined;
|
|
21649
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
21649
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
21650
21650
|
connected_account_id: string;
|
|
21651
21651
|
/** ID of the credential pool to which the credential belongs. */
|
|
21652
21652
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -24071,7 +24071,7 @@ export type Routes = {
|
|
|
24071
24071
|
acs_user_id?: string | undefined;
|
|
24072
24072
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24073
24073
|
user_identity_id?: string | undefined;
|
|
24074
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
24074
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24075
24075
|
connected_account_id: string;
|
|
24076
24076
|
/** ID of the credential pool to which the credential belongs. */
|
|
24077
24077
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -24276,7 +24276,7 @@ export type Routes = {
|
|
|
24276
24276
|
acs_user_id?: string | undefined;
|
|
24277
24277
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24278
24278
|
user_identity_id?: string | undefined;
|
|
24279
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
24279
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24280
24280
|
connected_account_id: string;
|
|
24281
24281
|
/** ID of the credential pool to which the credential belongs. */
|
|
24282
24282
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -24438,7 +24438,7 @@ export type Routes = {
|
|
|
24438
24438
|
acs_user_id?: string | undefined;
|
|
24439
24439
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24440
24440
|
user_identity_id?: string | undefined;
|
|
24441
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
24441
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24442
24442
|
connected_account_id: string;
|
|
24443
24443
|
/** ID of the credential pool to which the credential belongs. */
|
|
24444
24444
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -24605,7 +24605,7 @@ export type Routes = {
|
|
|
24605
24605
|
acs_user_id?: string | undefined;
|
|
24606
24606
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24607
24607
|
user_identity_id?: string | undefined;
|
|
24608
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
24608
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24609
24609
|
connected_account_id: string;
|
|
24610
24610
|
/** ID of the credential pool to which the credential belongs. */
|
|
24611
24611
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -24774,7 +24774,7 @@ export type Routes = {
|
|
|
24774
24774
|
acs_user_id?: string | undefined;
|
|
24775
24775
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24776
24776
|
user_identity_id?: string | undefined;
|
|
24777
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
24777
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24778
24778
|
connected_account_id: string;
|
|
24779
24779
|
/** ID of the credential pool to which the credential belongs. */
|
|
24780
24780
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25135,7 +25135,7 @@ export type Routes = {
|
|
|
25135
25135
|
acs_user_id?: string | undefined;
|
|
25136
25136
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25137
25137
|
user_identity_id?: string | undefined;
|
|
25138
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
25138
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25139
25139
|
connected_account_id: string;
|
|
25140
25140
|
/** ID of the credential pool to which the credential belongs. */
|
|
25141
25141
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25283,7 +25283,7 @@ export type Routes = {
|
|
|
25283
25283
|
acs_user_id?: string | undefined;
|
|
25284
25284
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25285
25285
|
user_identity_id?: string | undefined;
|
|
25286
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
25286
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25287
25287
|
connected_account_id: string;
|
|
25288
25288
|
/** ID of the credential pool to which the credential belongs. */
|
|
25289
25289
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25443,7 +25443,7 @@ export type Routes = {
|
|
|
25443
25443
|
acs_user_id?: string | undefined;
|
|
25444
25444
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25445
25445
|
user_identity_id?: string | undefined;
|
|
25446
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
25446
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25447
25447
|
connected_account_id: string;
|
|
25448
25448
|
/** ID of the credential pool to which the credential belongs. */
|
|
25449
25449
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25600,7 +25600,7 @@ export type Routes = {
|
|
|
25600
25600
|
acs_user_id?: string | undefined;
|
|
25601
25601
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25602
25602
|
user_identity_id?: string | undefined;
|
|
25603
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
25603
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25604
25604
|
connected_account_id: string;
|
|
25605
25605
|
/** ID of the credential pool to which the credential belongs. */
|
|
25606
25606
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25893,7 +25893,7 @@ export type Routes = {
|
|
|
25893
25893
|
acs_user_id?: string | undefined;
|
|
25894
25894
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25895
25895
|
user_identity_id?: string | undefined;
|
|
25896
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
25896
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25897
25897
|
connected_account_id: string;
|
|
25898
25898
|
/** ID of the credential pool to which the credential belongs. */
|
|
25899
25899
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26025,7 +26025,7 @@ export type Routes = {
|
|
|
26025
26025
|
acs_user_id?: string | undefined;
|
|
26026
26026
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26027
26027
|
user_identity_id?: string | undefined;
|
|
26028
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
26028
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26029
26029
|
connected_account_id: string;
|
|
26030
26030
|
/** ID of the credential pool to which the credential belongs. */
|
|
26031
26031
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26223,7 +26223,7 @@ export type Routes = {
|
|
|
26223
26223
|
acs_user_id?: string | undefined;
|
|
26224
26224
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26225
26225
|
user_identity_id?: string | undefined;
|
|
26226
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
26226
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26227
26227
|
connected_account_id: string;
|
|
26228
26228
|
/** ID of the credential pool to which the credential belongs. */
|
|
26229
26229
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26355,7 +26355,7 @@ export type Routes = {
|
|
|
26355
26355
|
acs_user_id?: string | undefined;
|
|
26356
26356
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26357
26357
|
user_identity_id?: string | undefined;
|
|
26358
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
26358
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26359
26359
|
connected_account_id: string;
|
|
26360
26360
|
/** ID of the credential pool to which the credential belongs. */
|
|
26361
26361
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26565,7 +26565,7 @@ export type Routes = {
|
|
|
26565
26565
|
acs_user_id?: string | undefined;
|
|
26566
26566
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26567
26567
|
user_identity_id?: string | undefined;
|
|
26568
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
26568
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26569
26569
|
connected_account_id: string;
|
|
26570
26570
|
/** ID of the credential pool to which the credential belongs. */
|
|
26571
26571
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27439,7 +27439,7 @@ export type Routes = {
|
|
|
27439
27439
|
|
|
27440
27440
|
To verify if your access control system requires a card encoder, see the corresponding [system integration guide](https://docs.seam.co/device-and-system-integration-guides#access-control-systems). */
|
|
27441
27441
|
acs_encoder: {
|
|
27442
|
-
/** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners. */
|
|
27442
|
+
/** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
|
|
27443
27443
|
acs_encoder_id: string;
|
|
27444
27444
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
|
|
27445
27445
|
acs_system_id: string;
|
|
@@ -27487,7 +27487,7 @@ export type Routes = {
|
|
|
27487
27487
|
formData: {};
|
|
27488
27488
|
jsonResponse: {
|
|
27489
27489
|
acs_encoders: {
|
|
27490
|
-
/** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners. */
|
|
27490
|
+
/** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
|
|
27491
27491
|
acs_encoder_id: string;
|
|
27492
27492
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
|
|
27493
27493
|
acs_system_id: string;
|
|
@@ -27686,7 +27686,7 @@ export type Routes = {
|
|
|
27686
27686
|
acs_user_id?: string | undefined;
|
|
27687
27687
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
27688
27688
|
user_identity_id?: string | undefined;
|
|
27689
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
27689
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
27690
27690
|
connected_account_id: string;
|
|
27691
27691
|
/** ID of the credential pool to which the credential belongs. */
|
|
27692
27692
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27818,7 +27818,7 @@ export type Routes = {
|
|
|
27818
27818
|
acs_user_id?: string | undefined;
|
|
27819
27819
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
27820
27820
|
user_identity_id?: string | undefined;
|
|
27821
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
27821
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
27822
27822
|
connected_account_id: string;
|
|
27823
27823
|
/** ID of the credential pool to which the credential belongs. */
|
|
27824
27824
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -28016,7 +28016,7 @@ export type Routes = {
|
|
|
28016
28016
|
acs_user_id?: string | undefined;
|
|
28017
28017
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28018
28018
|
user_identity_id?: string | undefined;
|
|
28019
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
28019
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28020
28020
|
connected_account_id: string;
|
|
28021
28021
|
/** ID of the credential pool to which the credential belongs. */
|
|
28022
28022
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -28148,7 +28148,7 @@ export type Routes = {
|
|
|
28148
28148
|
acs_user_id?: string | undefined;
|
|
28149
28149
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28150
28150
|
user_identity_id?: string | undefined;
|
|
28151
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
28151
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28152
28152
|
connected_account_id: string;
|
|
28153
28153
|
/** ID of the credential pool to which the credential belongs. */
|
|
28154
28154
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -28358,7 +28358,7 @@ export type Routes = {
|
|
|
28358
28358
|
acs_user_id?: string | undefined;
|
|
28359
28359
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28360
28360
|
user_identity_id?: string | undefined;
|
|
28361
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
28361
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28362
28362
|
connected_account_id: string;
|
|
28363
28363
|
/** ID of the credential pool to which the credential belongs. */
|
|
28364
28364
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -29375,7 +29375,7 @@ export type Routes = {
|
|
|
29375
29375
|
acs_user_id?: string | undefined;
|
|
29376
29376
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29377
29377
|
user_identity_id?: string | undefined;
|
|
29378
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
29378
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29379
29379
|
connected_account_id: string;
|
|
29380
29380
|
/** ID of the credential pool to which the credential belongs. */
|
|
29381
29381
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -29507,7 +29507,7 @@ export type Routes = {
|
|
|
29507
29507
|
acs_user_id?: string | undefined;
|
|
29508
29508
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29509
29509
|
user_identity_id?: string | undefined;
|
|
29510
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
29510
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29511
29511
|
connected_account_id: string;
|
|
29512
29512
|
/** ID of the credential pool to which the credential belongs. */
|
|
29513
29513
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -29705,7 +29705,7 @@ export type Routes = {
|
|
|
29705
29705
|
acs_user_id?: string | undefined;
|
|
29706
29706
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29707
29707
|
user_identity_id?: string | undefined;
|
|
29708
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
29708
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29709
29709
|
connected_account_id: string;
|
|
29710
29710
|
/** ID of the credential pool to which the credential belongs. */
|
|
29711
29711
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -29837,7 +29837,7 @@ export type Routes = {
|
|
|
29837
29837
|
acs_user_id?: string | undefined;
|
|
29838
29838
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29839
29839
|
user_identity_id?: string | undefined;
|
|
29840
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
29840
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29841
29841
|
connected_account_id: string;
|
|
29842
29842
|
/** ID of the credential pool to which the credential belongs. */
|
|
29843
29843
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -30047,7 +30047,7 @@ export type Routes = {
|
|
|
30047
30047
|
acs_user_id?: string | undefined;
|
|
30048
30048
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
30049
30049
|
user_identity_id?: string | undefined;
|
|
30050
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
30050
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
30051
30051
|
connected_account_id: string;
|
|
30052
30052
|
/** ID of the credential pool to which the credential belongs. */
|
|
30053
30053
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -31434,7 +31434,7 @@ export type Routes = {
|
|
|
31434
31434
|
acs_user_id?: string | undefined;
|
|
31435
31435
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
31436
31436
|
user_identity_id?: string | undefined;
|
|
31437
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
31437
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
31438
31438
|
connected_account_id: string;
|
|
31439
31439
|
/** ID of the credential pool to which the credential belongs. */
|
|
31440
31440
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -31725,7 +31725,7 @@ export type Routes = {
|
|
|
31725
31725
|
acs_user_id?: string | undefined;
|
|
31726
31726
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
31727
31727
|
user_identity_id?: string | undefined;
|
|
31728
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
31728
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
31729
31729
|
connected_account_id: string;
|
|
31730
31730
|
/** ID of the credential pool to which the credential belongs. */
|
|
31731
31731
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -31857,7 +31857,7 @@ export type Routes = {
|
|
|
31857
31857
|
acs_user_id?: string | undefined;
|
|
31858
31858
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
31859
31859
|
user_identity_id?: string | undefined;
|
|
31860
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
31860
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
31861
31861
|
connected_account_id: string;
|
|
31862
31862
|
/** ID of the credential pool to which the credential belongs. */
|
|
31863
31863
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -32055,7 +32055,7 @@ export type Routes = {
|
|
|
32055
32055
|
acs_user_id?: string | undefined;
|
|
32056
32056
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32057
32057
|
user_identity_id?: string | undefined;
|
|
32058
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
32058
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32059
32059
|
connected_account_id: string;
|
|
32060
32060
|
/** ID of the credential pool to which the credential belongs. */
|
|
32061
32061
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -32187,7 +32187,7 @@ export type Routes = {
|
|
|
32187
32187
|
acs_user_id?: string | undefined;
|
|
32188
32188
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32189
32189
|
user_identity_id?: string | undefined;
|
|
32190
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
32190
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32191
32191
|
connected_account_id: string;
|
|
32192
32192
|
/** ID of the credential pool to which the credential belongs. */
|
|
32193
32193
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -32397,7 +32397,7 @@ export type Routes = {
|
|
|
32397
32397
|
acs_user_id?: string | undefined;
|
|
32398
32398
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32399
32399
|
user_identity_id?: string | undefined;
|
|
32400
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
32400
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32401
32401
|
connected_account_id: string;
|
|
32402
32402
|
/** ID of the credential pool to which the credential belongs. */
|
|
32403
32403
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33258,7 +33258,7 @@ export type Routes = {
|
|
|
33258
33258
|
jsonResponse: {
|
|
33259
33259
|
/** Represents an [access control system](https://docs.seam.co/low-level-apis/access-systems).
|
|
33260
33260
|
|
|
33261
|
-
Within an `acs_system`, create [`acs_user`s](https://docs.seam.co/api/acs/users
|
|
33261
|
+
Within an `acs_system`, create [`acs_user`s](https://docs.seam.co/api/acs/users/object) and [`acs_credential`s](https://docs.seam.co/api/acs/credentials/object) to grant access to the `acs_user`s.
|
|
33262
33262
|
|
|
33263
33263
|
For details about the resources associated with an access control system, see the [access control systems namespace](https://docs.seam.co/api/acs). */
|
|
33264
33264
|
acs_system: {
|
|
@@ -35642,7 +35642,7 @@ export type Routes = {
|
|
|
35642
35642
|
acs_user_id?: string | undefined;
|
|
35643
35643
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
35644
35644
|
user_identity_id?: string | undefined;
|
|
35645
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
35645
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
35646
35646
|
connected_account_id: string;
|
|
35647
35647
|
/** ID of the credential pool to which the credential belongs. */
|
|
35648
35648
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35774,7 +35774,7 @@ export type Routes = {
|
|
|
35774
35774
|
acs_user_id?: string | undefined;
|
|
35775
35775
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
35776
35776
|
user_identity_id?: string | undefined;
|
|
35777
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
35777
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
35778
35778
|
connected_account_id: string;
|
|
35779
35779
|
/** ID of the credential pool to which the credential belongs. */
|
|
35780
35780
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35972,7 +35972,7 @@ export type Routes = {
|
|
|
35972
35972
|
acs_user_id?: string | undefined;
|
|
35973
35973
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
35974
35974
|
user_identity_id?: string | undefined;
|
|
35975
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
35975
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
35976
35976
|
connected_account_id: string;
|
|
35977
35977
|
/** ID of the credential pool to which the credential belongs. */
|
|
35978
35978
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36104,7 +36104,7 @@ export type Routes = {
|
|
|
36104
36104
|
acs_user_id?: string | undefined;
|
|
36105
36105
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
36106
36106
|
user_identity_id?: string | undefined;
|
|
36107
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
36107
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
36108
36108
|
connected_account_id: string;
|
|
36109
36109
|
/** ID of the credential pool to which the credential belongs. */
|
|
36110
36110
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36314,7 +36314,7 @@ export type Routes = {
|
|
|
36314
36314
|
acs_user_id?: string | undefined;
|
|
36315
36315
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
36316
36316
|
user_identity_id?: string | undefined;
|
|
36317
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
36317
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
36318
36318
|
connected_account_id: string;
|
|
36319
36319
|
/** ID of the credential pool to which the credential belongs. */
|
|
36320
36320
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37323,7 +37323,7 @@ export type Routes = {
|
|
|
37323
37323
|
acs_user_id?: string | undefined;
|
|
37324
37324
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37325
37325
|
user_identity_id?: string | undefined;
|
|
37326
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
37326
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37327
37327
|
connected_account_id: string;
|
|
37328
37328
|
/** ID of the credential pool to which the credential belongs. */
|
|
37329
37329
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37455,7 +37455,7 @@ export type Routes = {
|
|
|
37455
37455
|
acs_user_id?: string | undefined;
|
|
37456
37456
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37457
37457
|
user_identity_id?: string | undefined;
|
|
37458
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
37458
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37459
37459
|
connected_account_id: string;
|
|
37460
37460
|
/** ID of the credential pool to which the credential belongs. */
|
|
37461
37461
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37653,7 +37653,7 @@ export type Routes = {
|
|
|
37653
37653
|
acs_user_id?: string | undefined;
|
|
37654
37654
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37655
37655
|
user_identity_id?: string | undefined;
|
|
37656
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
37656
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37657
37657
|
connected_account_id: string;
|
|
37658
37658
|
/** ID of the credential pool to which the credential belongs. */
|
|
37659
37659
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37785,7 +37785,7 @@ export type Routes = {
|
|
|
37785
37785
|
acs_user_id?: string | undefined;
|
|
37786
37786
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37787
37787
|
user_identity_id?: string | undefined;
|
|
37788
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
37788
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37789
37789
|
connected_account_id: string;
|
|
37790
37790
|
/** ID of the credential pool to which the credential belongs. */
|
|
37791
37791
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37995,7 +37995,7 @@ export type Routes = {
|
|
|
37995
37995
|
acs_user_id?: string | undefined;
|
|
37996
37996
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37997
37997
|
user_identity_id?: string | undefined;
|
|
37998
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
37998
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37999
37999
|
connected_account_id: string;
|
|
38000
38000
|
/** ID of the credential pool to which the credential belongs. */
|
|
38001
38001
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47740,6 +47740,10 @@ export type Routes = {
|
|
|
47740
47740
|
event_type: 'lock.locked';
|
|
47741
47741
|
/** ID of the access code that was used to lock the device. */
|
|
47742
47742
|
access_code_id?: string | undefined;
|
|
47743
|
+
/**
|
|
47744
|
+
Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
47745
|
+
*/
|
|
47746
|
+
code?: string | undefined;
|
|
47743
47747
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
47744
47748
|
access_code_is_managed?: boolean | undefined;
|
|
47745
47749
|
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
@@ -47780,6 +47784,10 @@ export type Routes = {
|
|
|
47780
47784
|
event_type: 'lock.unlocked';
|
|
47781
47785
|
/** ID of the access code that was used to unlock the affected device. */
|
|
47782
47786
|
access_code_id?: string | undefined;
|
|
47787
|
+
/**
|
|
47788
|
+
Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
47789
|
+
*/
|
|
47790
|
+
code?: string | undefined;
|
|
47783
47791
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
47784
47792
|
access_code_is_managed?: boolean | undefined;
|
|
47785
47793
|
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
@@ -50777,6 +50785,10 @@ export type Routes = {
|
|
|
50777
50785
|
event_type: 'lock.locked';
|
|
50778
50786
|
/** ID of the access code that was used to lock the device. */
|
|
50779
50787
|
access_code_id?: string | undefined;
|
|
50788
|
+
/**
|
|
50789
|
+
Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
50790
|
+
*/
|
|
50791
|
+
code?: string | undefined;
|
|
50780
50792
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
50781
50793
|
access_code_is_managed?: boolean | undefined;
|
|
50782
50794
|
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
@@ -50817,6 +50829,10 @@ export type Routes = {
|
|
|
50817
50829
|
event_type: 'lock.unlocked';
|
|
50818
50830
|
/** ID of the access code that was used to unlock the affected device. */
|
|
50819
50831
|
access_code_id?: string | undefined;
|
|
50832
|
+
/**
|
|
50833
|
+
Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
50834
|
+
*/
|
|
50835
|
+
code?: string | undefined;
|
|
50820
50836
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
50821
50837
|
access_code_is_managed?: boolean | undefined;
|
|
50822
50838
|
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
@@ -51544,7 +51560,7 @@ export type Routes = {
|
|
|
51544
51560
|
acs_user_id?: string | undefined;
|
|
51545
51561
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
51546
51562
|
user_identity_id?: string | undefined;
|
|
51547
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
51563
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
51548
51564
|
connected_account_id: string;
|
|
51549
51565
|
/** ID of the credential pool to which the credential belongs. */
|
|
51550
51566
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51676,7 +51692,7 @@ export type Routes = {
|
|
|
51676
51692
|
acs_user_id?: string | undefined;
|
|
51677
51693
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
51678
51694
|
user_identity_id?: string | undefined;
|
|
51679
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
51695
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
51680
51696
|
connected_account_id: string;
|
|
51681
51697
|
/** ID of the credential pool to which the credential belongs. */
|
|
51682
51698
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51874,7 +51890,7 @@ export type Routes = {
|
|
|
51874
51890
|
acs_user_id?: string | undefined;
|
|
51875
51891
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
51876
51892
|
user_identity_id?: string | undefined;
|
|
51877
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
51893
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
51878
51894
|
connected_account_id: string;
|
|
51879
51895
|
/** ID of the credential pool to which the credential belongs. */
|
|
51880
51896
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52006,7 +52022,7 @@ export type Routes = {
|
|
|
52006
52022
|
acs_user_id?: string | undefined;
|
|
52007
52023
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
52008
52024
|
user_identity_id?: string | undefined;
|
|
52009
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
52025
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
52010
52026
|
connected_account_id: string;
|
|
52011
52027
|
/** ID of the credential pool to which the credential belongs. */
|
|
52012
52028
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52216,7 +52232,7 @@ export type Routes = {
|
|
|
52216
52232
|
acs_user_id?: string | undefined;
|
|
52217
52233
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
52218
52234
|
user_identity_id?: string | undefined;
|
|
52219
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
52235
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
52220
52236
|
connected_account_id: string;
|
|
52221
52237
|
/** ID of the credential pool to which the credential belongs. */
|
|
52222
52238
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59067,7 +59083,7 @@ export type Routes = {
|
|
|
59067
59083
|
acs_user_id?: string | undefined;
|
|
59068
59084
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59069
59085
|
user_identity_id?: string | undefined;
|
|
59070
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
59086
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59071
59087
|
connected_account_id: string;
|
|
59072
59088
|
/** ID of the credential pool to which the credential belongs. */
|
|
59073
59089
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59199,7 +59215,7 @@ export type Routes = {
|
|
|
59199
59215
|
acs_user_id?: string | undefined;
|
|
59200
59216
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59201
59217
|
user_identity_id?: string | undefined;
|
|
59202
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
59218
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59203
59219
|
connected_account_id: string;
|
|
59204
59220
|
/** ID of the credential pool to which the credential belongs. */
|
|
59205
59221
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59397,7 +59413,7 @@ export type Routes = {
|
|
|
59397
59413
|
acs_user_id?: string | undefined;
|
|
59398
59414
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59399
59415
|
user_identity_id?: string | undefined;
|
|
59400
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
59416
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59401
59417
|
connected_account_id: string;
|
|
59402
59418
|
/** ID of the credential pool to which the credential belongs. */
|
|
59403
59419
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59529,7 +59545,7 @@ export type Routes = {
|
|
|
59529
59545
|
acs_user_id?: string | undefined;
|
|
59530
59546
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59531
59547
|
user_identity_id?: string | undefined;
|
|
59532
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
59548
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59533
59549
|
connected_account_id: string;
|
|
59534
59550
|
/** ID of the credential pool to which the credential belongs. */
|
|
59535
59551
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59739,7 +59755,7 @@ export type Routes = {
|
|
|
59739
59755
|
acs_user_id?: string | undefined;
|
|
59740
59756
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59741
59757
|
user_identity_id?: string | undefined;
|
|
59742
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
59758
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
59743
59759
|
connected_account_id: string;
|
|
59744
59760
|
/** ID of the credential pool to which the credential belongs. */
|
|
59745
59761
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60749,7 +60765,7 @@ export type Routes = {
|
|
|
60749
60765
|
acs_user_id?: string | undefined;
|
|
60750
60766
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
60751
60767
|
user_identity_id?: string | undefined;
|
|
60752
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
60768
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
60753
60769
|
connected_account_id: string;
|
|
60754
60770
|
/** ID of the credential pool to which the credential belongs. */
|
|
60755
60771
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60881,7 +60897,7 @@ export type Routes = {
|
|
|
60881
60897
|
acs_user_id?: string | undefined;
|
|
60882
60898
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
60883
60899
|
user_identity_id?: string | undefined;
|
|
60884
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
60900
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
60885
60901
|
connected_account_id: string;
|
|
60886
60902
|
/** ID of the credential pool to which the credential belongs. */
|
|
60887
60903
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -61079,7 +61095,7 @@ export type Routes = {
|
|
|
61079
61095
|
acs_user_id?: string | undefined;
|
|
61080
61096
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61081
61097
|
user_identity_id?: string | undefined;
|
|
61082
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
61098
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61083
61099
|
connected_account_id: string;
|
|
61084
61100
|
/** ID of the credential pool to which the credential belongs. */
|
|
61085
61101
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -61211,7 +61227,7 @@ export type Routes = {
|
|
|
61211
61227
|
acs_user_id?: string | undefined;
|
|
61212
61228
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61213
61229
|
user_identity_id?: string | undefined;
|
|
61214
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
61230
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61215
61231
|
connected_account_id: string;
|
|
61216
61232
|
/** ID of the credential pool to which the credential belongs. */
|
|
61217
61233
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -61421,7 +61437,7 @@ export type Routes = {
|
|
|
61421
61437
|
acs_user_id?: string | undefined;
|
|
61422
61438
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61423
61439
|
user_identity_id?: string | undefined;
|
|
61424
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
61440
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61425
61441
|
connected_account_id: string;
|
|
61426
61442
|
/** ID of the credential pool to which the credential belongs. */
|
|
61427
61443
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -62429,7 +62445,7 @@ export type Routes = {
|
|
|
62429
62445
|
acs_user_id?: string | undefined;
|
|
62430
62446
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62431
62447
|
user_identity_id?: string | undefined;
|
|
62432
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
62448
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62433
62449
|
connected_account_id: string;
|
|
62434
62450
|
/** ID of the credential pool to which the credential belongs. */
|
|
62435
62451
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -62561,7 +62577,7 @@ export type Routes = {
|
|
|
62561
62577
|
acs_user_id?: string | undefined;
|
|
62562
62578
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62563
62579
|
user_identity_id?: string | undefined;
|
|
62564
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
62580
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62565
62581
|
connected_account_id: string;
|
|
62566
62582
|
/** ID of the credential pool to which the credential belongs. */
|
|
62567
62583
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -62759,7 +62775,7 @@ export type Routes = {
|
|
|
62759
62775
|
acs_user_id?: string | undefined;
|
|
62760
62776
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62761
62777
|
user_identity_id?: string | undefined;
|
|
62762
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
62778
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62763
62779
|
connected_account_id: string;
|
|
62764
62780
|
/** ID of the credential pool to which the credential belongs. */
|
|
62765
62781
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -62891,7 +62907,7 @@ export type Routes = {
|
|
|
62891
62907
|
acs_user_id?: string | undefined;
|
|
62892
62908
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62893
62909
|
user_identity_id?: string | undefined;
|
|
62894
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
62910
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62895
62911
|
connected_account_id: string;
|
|
62896
62912
|
/** ID of the credential pool to which the credential belongs. */
|
|
62897
62913
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -63101,7 +63117,7 @@ export type Routes = {
|
|
|
63101
63117
|
acs_user_id?: string | undefined;
|
|
63102
63118
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
63103
63119
|
user_identity_id?: string | undefined;
|
|
63104
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
63120
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
63105
63121
|
connected_account_id: string;
|
|
63106
63122
|
/** ID of the credential pool to which the credential belongs. */
|
|
63107
63123
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -64111,7 +64127,7 @@ export type Routes = {
|
|
|
64111
64127
|
acs_user_id?: string | undefined;
|
|
64112
64128
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64113
64129
|
user_identity_id?: string | undefined;
|
|
64114
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
64130
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64115
64131
|
connected_account_id: string;
|
|
64116
64132
|
/** ID of the credential pool to which the credential belongs. */
|
|
64117
64133
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -64243,7 +64259,7 @@ export type Routes = {
|
|
|
64243
64259
|
acs_user_id?: string | undefined;
|
|
64244
64260
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64245
64261
|
user_identity_id?: string | undefined;
|
|
64246
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
64262
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64247
64263
|
connected_account_id: string;
|
|
64248
64264
|
/** ID of the credential pool to which the credential belongs. */
|
|
64249
64265
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -64441,7 +64457,7 @@ export type Routes = {
|
|
|
64441
64457
|
acs_user_id?: string | undefined;
|
|
64442
64458
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64443
64459
|
user_identity_id?: string | undefined;
|
|
64444
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
64460
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64445
64461
|
connected_account_id: string;
|
|
64446
64462
|
/** ID of the credential pool to which the credential belongs. */
|
|
64447
64463
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -64573,7 +64589,7 @@ export type Routes = {
|
|
|
64573
64589
|
acs_user_id?: string | undefined;
|
|
64574
64590
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64575
64591
|
user_identity_id?: string | undefined;
|
|
64576
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
64592
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64577
64593
|
connected_account_id: string;
|
|
64578
64594
|
/** ID of the credential pool to which the credential belongs. */
|
|
64579
64595
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -64783,7 +64799,7 @@ export type Routes = {
|
|
|
64783
64799
|
acs_user_id?: string | undefined;
|
|
64784
64800
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64785
64801
|
user_identity_id?: string | undefined;
|
|
64786
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
64802
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
64787
64803
|
connected_account_id: string;
|
|
64788
64804
|
/** ID of the credential pool to which the credential belongs. */
|
|
64789
64805
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -68740,7 +68756,7 @@ export type Routes = {
|
|
|
68740
68756
|
acs_user_id?: string | undefined;
|
|
68741
68757
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
68742
68758
|
user_identity_id?: string | undefined;
|
|
68743
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
68759
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
68744
68760
|
connected_account_id: string;
|
|
68745
68761
|
/** ID of the credential pool to which the credential belongs. */
|
|
68746
68762
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -68872,7 +68888,7 @@ export type Routes = {
|
|
|
68872
68888
|
acs_user_id?: string | undefined;
|
|
68873
68889
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
68874
68890
|
user_identity_id?: string | undefined;
|
|
68875
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
68891
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
68876
68892
|
connected_account_id: string;
|
|
68877
68893
|
/** ID of the credential pool to which the credential belongs. */
|
|
68878
68894
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -69070,7 +69086,7 @@ export type Routes = {
|
|
|
69070
69086
|
acs_user_id?: string | undefined;
|
|
69071
69087
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
69072
69088
|
user_identity_id?: string | undefined;
|
|
69073
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
69089
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
69074
69090
|
connected_account_id: string;
|
|
69075
69091
|
/** ID of the credential pool to which the credential belongs. */
|
|
69076
69092
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -69202,7 +69218,7 @@ export type Routes = {
|
|
|
69202
69218
|
acs_user_id?: string | undefined;
|
|
69203
69219
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
69204
69220
|
user_identity_id?: string | undefined;
|
|
69205
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
69221
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
69206
69222
|
connected_account_id: string;
|
|
69207
69223
|
/** ID of the credential pool to which the credential belongs. */
|
|
69208
69224
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -69412,7 +69428,7 @@ export type Routes = {
|
|
|
69412
69428
|
acs_user_id?: string | undefined;
|
|
69413
69429
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
69414
69430
|
user_identity_id?: string | undefined;
|
|
69415
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
69431
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
69416
69432
|
connected_account_id: string;
|
|
69417
69433
|
/** ID of the credential pool to which the credential belongs. */
|
|
69418
69434
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70441,7 +70457,7 @@ export type Routes = {
|
|
|
70441
70457
|
acs_user_id?: string | undefined;
|
|
70442
70458
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70443
70459
|
user_identity_id?: string | undefined;
|
|
70444
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
70460
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70445
70461
|
connected_account_id: string;
|
|
70446
70462
|
/** ID of the credential pool to which the credential belongs. */
|
|
70447
70463
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70573,7 +70589,7 @@ export type Routes = {
|
|
|
70573
70589
|
acs_user_id?: string | undefined;
|
|
70574
70590
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70575
70591
|
user_identity_id?: string | undefined;
|
|
70576
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
70592
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70577
70593
|
connected_account_id: string;
|
|
70578
70594
|
/** ID of the credential pool to which the credential belongs. */
|
|
70579
70595
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70771,7 +70787,7 @@ export type Routes = {
|
|
|
70771
70787
|
acs_user_id?: string | undefined;
|
|
70772
70788
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70773
70789
|
user_identity_id?: string | undefined;
|
|
70774
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
70790
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70775
70791
|
connected_account_id: string;
|
|
70776
70792
|
/** ID of the credential pool to which the credential belongs. */
|
|
70777
70793
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70903,7 +70919,7 @@ export type Routes = {
|
|
|
70903
70919
|
acs_user_id?: string | undefined;
|
|
70904
70920
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70905
70921
|
user_identity_id?: string | undefined;
|
|
70906
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
70922
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70907
70923
|
connected_account_id: string;
|
|
70908
70924
|
/** ID of the credential pool to which the credential belongs. */
|
|
70909
70925
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -71113,7 +71129,7 @@ export type Routes = {
|
|
|
71113
71129
|
acs_user_id?: string | undefined;
|
|
71114
71130
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
71115
71131
|
user_identity_id?: string | undefined;
|
|
71116
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
71132
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
71117
71133
|
connected_account_id: string;
|
|
71118
71134
|
/** ID of the credential pool to which the credential belongs. */
|
|
71119
71135
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -72198,7 +72214,7 @@ export type Routes = {
|
|
|
72198
72214
|
acs_user_id?: string | undefined;
|
|
72199
72215
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72200
72216
|
user_identity_id?: string | undefined;
|
|
72201
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
72217
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72202
72218
|
connected_account_id: string;
|
|
72203
72219
|
/** ID of the credential pool to which the credential belongs. */
|
|
72204
72220
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -72330,7 +72346,7 @@ export type Routes = {
|
|
|
72330
72346
|
acs_user_id?: string | undefined;
|
|
72331
72347
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72332
72348
|
user_identity_id?: string | undefined;
|
|
72333
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
72349
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72334
72350
|
connected_account_id: string;
|
|
72335
72351
|
/** ID of the credential pool to which the credential belongs. */
|
|
72336
72352
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -72528,7 +72544,7 @@ export type Routes = {
|
|
|
72528
72544
|
acs_user_id?: string | undefined;
|
|
72529
72545
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72530
72546
|
user_identity_id?: string | undefined;
|
|
72531
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
72547
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72532
72548
|
connected_account_id: string;
|
|
72533
72549
|
/** ID of the credential pool to which the credential belongs. */
|
|
72534
72550
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -72660,7 +72676,7 @@ export type Routes = {
|
|
|
72660
72676
|
acs_user_id?: string | undefined;
|
|
72661
72677
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72662
72678
|
user_identity_id?: string | undefined;
|
|
72663
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
72679
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72664
72680
|
connected_account_id: string;
|
|
72665
72681
|
/** ID of the credential pool to which the credential belongs. */
|
|
72666
72682
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -72870,7 +72886,7 @@ export type Routes = {
|
|
|
72870
72886
|
acs_user_id?: string | undefined;
|
|
72871
72887
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72872
72888
|
user_identity_id?: string | undefined;
|
|
72873
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
72889
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72874
72890
|
connected_account_id: string;
|
|
72875
72891
|
/** ID of the credential pool to which the credential belongs. */
|
|
72876
72892
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -75120,7 +75136,7 @@ export type Routes = {
|
|
|
75120
75136
|
acs_user_id?: string | undefined;
|
|
75121
75137
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75122
75138
|
user_identity_id?: string | undefined;
|
|
75123
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
75139
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75124
75140
|
connected_account_id: string;
|
|
75125
75141
|
/** ID of the credential pool to which the credential belongs. */
|
|
75126
75142
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -75252,7 +75268,7 @@ export type Routes = {
|
|
|
75252
75268
|
acs_user_id?: string | undefined;
|
|
75253
75269
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75254
75270
|
user_identity_id?: string | undefined;
|
|
75255
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
75271
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75256
75272
|
connected_account_id: string;
|
|
75257
75273
|
/** ID of the credential pool to which the credential belongs. */
|
|
75258
75274
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -75450,7 +75466,7 @@ export type Routes = {
|
|
|
75450
75466
|
acs_user_id?: string | undefined;
|
|
75451
75467
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75452
75468
|
user_identity_id?: string | undefined;
|
|
75453
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
75469
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75454
75470
|
connected_account_id: string;
|
|
75455
75471
|
/** ID of the credential pool to which the credential belongs. */
|
|
75456
75472
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -75582,7 +75598,7 @@ export type Routes = {
|
|
|
75582
75598
|
acs_user_id?: string | undefined;
|
|
75583
75599
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75584
75600
|
user_identity_id?: string | undefined;
|
|
75585
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
75601
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75586
75602
|
connected_account_id: string;
|
|
75587
75603
|
/** ID of the credential pool to which the credential belongs. */
|
|
75588
75604
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -75792,7 +75808,7 @@ export type Routes = {
|
|
|
75792
75808
|
acs_user_id?: string | undefined;
|
|
75793
75809
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75794
75810
|
user_identity_id?: string | undefined;
|
|
75795
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
75811
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75796
75812
|
connected_account_id: string;
|
|
75797
75813
|
/** ID of the credential pool to which the credential belongs. */
|
|
75798
75814
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -79962,6 +79978,10 @@ export type Routes = {
|
|
|
79962
79978
|
event_type: 'lock.locked';
|
|
79963
79979
|
/** ID of the access code that was used to lock the device. */
|
|
79964
79980
|
access_code_id?: string | undefined;
|
|
79981
|
+
/**
|
|
79982
|
+
Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
79983
|
+
*/
|
|
79984
|
+
code?: string | undefined;
|
|
79965
79985
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
79966
79986
|
access_code_is_managed?: boolean | undefined;
|
|
79967
79987
|
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
@@ -80002,6 +80022,10 @@ export type Routes = {
|
|
|
80002
80022
|
event_type: 'lock.unlocked';
|
|
80003
80023
|
/** ID of the access code that was used to unlock the affected device. */
|
|
80004
80024
|
access_code_id?: string | undefined;
|
|
80025
|
+
/**
|
|
80026
|
+
Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
80027
|
+
*/
|
|
80028
|
+
code?: string | undefined;
|
|
80005
80029
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
80006
80030
|
access_code_is_managed?: boolean | undefined;
|
|
80007
80031
|
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
@@ -81783,7 +81807,7 @@ export type Routes = {
|
|
|
81783
81807
|
acs_user_id?: string | undefined;
|
|
81784
81808
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
81785
81809
|
user_identity_id?: string | undefined;
|
|
81786
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
81810
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
81787
81811
|
connected_account_id: string;
|
|
81788
81812
|
/** ID of the credential pool to which the credential belongs. */
|
|
81789
81813
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -81952,7 +81976,7 @@ export type Routes = {
|
|
|
81952
81976
|
acs_user_id?: string | undefined;
|
|
81953
81977
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
81954
81978
|
user_identity_id?: string | undefined;
|
|
81955
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
81979
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
81956
81980
|
connected_account_id: string;
|
|
81957
81981
|
/** ID of the credential pool to which the credential belongs. */
|
|
81958
81982
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -85050,7 +85074,7 @@ export type Routes = {
|
|
|
85050
85074
|
acs_user_id?: string | undefined;
|
|
85051
85075
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85052
85076
|
user_identity_id?: string | undefined;
|
|
85053
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
85077
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85054
85078
|
connected_account_id: string;
|
|
85055
85079
|
/** ID of the credential pool to which the credential belongs. */
|
|
85056
85080
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -85182,7 +85206,7 @@ export type Routes = {
|
|
|
85182
85206
|
acs_user_id?: string | undefined;
|
|
85183
85207
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85184
85208
|
user_identity_id?: string | undefined;
|
|
85185
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
85209
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85186
85210
|
connected_account_id: string;
|
|
85187
85211
|
/** ID of the credential pool to which the credential belongs. */
|
|
85188
85212
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -85380,7 +85404,7 @@ export type Routes = {
|
|
|
85380
85404
|
acs_user_id?: string | undefined;
|
|
85381
85405
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85382
85406
|
user_identity_id?: string | undefined;
|
|
85383
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
85407
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85384
85408
|
connected_account_id: string;
|
|
85385
85409
|
/** ID of the credential pool to which the credential belongs. */
|
|
85386
85410
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -85512,7 +85536,7 @@ export type Routes = {
|
|
|
85512
85536
|
acs_user_id?: string | undefined;
|
|
85513
85537
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85514
85538
|
user_identity_id?: string | undefined;
|
|
85515
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
85539
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85516
85540
|
connected_account_id: string;
|
|
85517
85541
|
/** ID of the credential pool to which the credential belongs. */
|
|
85518
85542
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -85722,7 +85746,7 @@ export type Routes = {
|
|
|
85722
85746
|
acs_user_id?: string | undefined;
|
|
85723
85747
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85724
85748
|
user_identity_id?: string | undefined;
|
|
85725
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
85749
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85726
85750
|
connected_account_id: string;
|
|
85727
85751
|
/** ID of the credential pool to which the credential belongs. */
|
|
85728
85752
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -86736,7 +86760,7 @@ export type Routes = {
|
|
|
86736
86760
|
acs_user_id?: string | undefined;
|
|
86737
86761
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
86738
86762
|
user_identity_id?: string | undefined;
|
|
86739
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
86763
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
86740
86764
|
connected_account_id: string;
|
|
86741
86765
|
/** ID of the credential pool to which the credential belongs. */
|
|
86742
86766
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -86868,7 +86892,7 @@ export type Routes = {
|
|
|
86868
86892
|
acs_user_id?: string | undefined;
|
|
86869
86893
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
86870
86894
|
user_identity_id?: string | undefined;
|
|
86871
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
86895
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
86872
86896
|
connected_account_id: string;
|
|
86873
86897
|
/** ID of the credential pool to which the credential belongs. */
|
|
86874
86898
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -87066,7 +87090,7 @@ export type Routes = {
|
|
|
87066
87090
|
acs_user_id?: string | undefined;
|
|
87067
87091
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
87068
87092
|
user_identity_id?: string | undefined;
|
|
87069
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
87093
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
87070
87094
|
connected_account_id: string;
|
|
87071
87095
|
/** ID of the credential pool to which the credential belongs. */
|
|
87072
87096
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -87198,7 +87222,7 @@ export type Routes = {
|
|
|
87198
87222
|
acs_user_id?: string | undefined;
|
|
87199
87223
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
87200
87224
|
user_identity_id?: string | undefined;
|
|
87201
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
87225
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
87202
87226
|
connected_account_id: string;
|
|
87203
87227
|
/** ID of the credential pool to which the credential belongs. */
|
|
87204
87228
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -87408,7 +87432,7 @@ export type Routes = {
|
|
|
87408
87432
|
acs_user_id?: string | undefined;
|
|
87409
87433
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
87410
87434
|
user_identity_id?: string | undefined;
|
|
87411
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
87435
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
87412
87436
|
connected_account_id: string;
|
|
87413
87437
|
/** ID of the credential pool to which the credential belongs. */
|
|
87414
87438
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -88528,7 +88552,7 @@ export type Routes = {
|
|
|
88528
88552
|
acs_user_id?: string | undefined;
|
|
88529
88553
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88530
88554
|
user_identity_id?: string | undefined;
|
|
88531
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
88555
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88532
88556
|
connected_account_id: string;
|
|
88533
88557
|
/** ID of the credential pool to which the credential belongs. */
|
|
88534
88558
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -88660,7 +88684,7 @@ export type Routes = {
|
|
|
88660
88684
|
acs_user_id?: string | undefined;
|
|
88661
88685
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88662
88686
|
user_identity_id?: string | undefined;
|
|
88663
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
88687
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88664
88688
|
connected_account_id: string;
|
|
88665
88689
|
/** ID of the credential pool to which the credential belongs. */
|
|
88666
88690
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -88858,7 +88882,7 @@ export type Routes = {
|
|
|
88858
88882
|
acs_user_id?: string | undefined;
|
|
88859
88883
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88860
88884
|
user_identity_id?: string | undefined;
|
|
88861
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
88885
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88862
88886
|
connected_account_id: string;
|
|
88863
88887
|
/** ID of the credential pool to which the credential belongs. */
|
|
88864
88888
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -88990,7 +89014,7 @@ export type Routes = {
|
|
|
88990
89014
|
acs_user_id?: string | undefined;
|
|
88991
89015
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88992
89016
|
user_identity_id?: string | undefined;
|
|
88993
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
89017
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88994
89018
|
connected_account_id: string;
|
|
88995
89019
|
/** ID of the credential pool to which the credential belongs. */
|
|
88996
89020
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -89200,7 +89224,7 @@ export type Routes = {
|
|
|
89200
89224
|
acs_user_id?: string | undefined;
|
|
89201
89225
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
89202
89226
|
user_identity_id?: string | undefined;
|
|
89203
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
89227
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
89204
89228
|
connected_account_id: string;
|
|
89205
89229
|
/** ID of the credential pool to which the credential belongs. */
|
|
89206
89230
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -91689,7 +91713,7 @@ export type Routes = {
|
|
|
91689
91713
|
acs_user_id?: string | undefined;
|
|
91690
91714
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
91691
91715
|
user_identity_id?: string | undefined;
|
|
91692
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
91716
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
91693
91717
|
connected_account_id: string;
|
|
91694
91718
|
/** ID of the credential pool to which the credential belongs. */
|
|
91695
91719
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -91821,7 +91845,7 @@ export type Routes = {
|
|
|
91821
91845
|
acs_user_id?: string | undefined;
|
|
91822
91846
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
91823
91847
|
user_identity_id?: string | undefined;
|
|
91824
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
91848
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
91825
91849
|
connected_account_id: string;
|
|
91826
91850
|
/** ID of the credential pool to which the credential belongs. */
|
|
91827
91851
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -92019,7 +92043,7 @@ export type Routes = {
|
|
|
92019
92043
|
acs_user_id?: string | undefined;
|
|
92020
92044
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
92021
92045
|
user_identity_id?: string | undefined;
|
|
92022
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
92046
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
92023
92047
|
connected_account_id: string;
|
|
92024
92048
|
/** ID of the credential pool to which the credential belongs. */
|
|
92025
92049
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -92151,7 +92175,7 @@ export type Routes = {
|
|
|
92151
92175
|
acs_user_id?: string | undefined;
|
|
92152
92176
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
92153
92177
|
user_identity_id?: string | undefined;
|
|
92154
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
92178
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
92155
92179
|
connected_account_id: string;
|
|
92156
92180
|
/** ID of the credential pool to which the credential belongs. */
|
|
92157
92181
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -92361,7 +92385,7 @@ export type Routes = {
|
|
|
92361
92385
|
acs_user_id?: string | undefined;
|
|
92362
92386
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
92363
92387
|
user_identity_id?: string | undefined;
|
|
92364
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
92388
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
92365
92389
|
connected_account_id: string;
|
|
92366
92390
|
/** ID of the credential pool to which the credential belongs. */
|
|
92367
92391
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -93379,7 +93403,7 @@ export type Routes = {
|
|
|
93379
93403
|
acs_user_id?: string | undefined;
|
|
93380
93404
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
93381
93405
|
user_identity_id?: string | undefined;
|
|
93382
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
93406
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
93383
93407
|
connected_account_id: string;
|
|
93384
93408
|
/** ID of the credential pool to which the credential belongs. */
|
|
93385
93409
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -93511,7 +93535,7 @@ export type Routes = {
|
|
|
93511
93535
|
acs_user_id?: string | undefined;
|
|
93512
93536
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
93513
93537
|
user_identity_id?: string | undefined;
|
|
93514
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
93538
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
93515
93539
|
connected_account_id: string;
|
|
93516
93540
|
/** ID of the credential pool to which the credential belongs. */
|
|
93517
93541
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -93709,7 +93733,7 @@ export type Routes = {
|
|
|
93709
93733
|
acs_user_id?: string | undefined;
|
|
93710
93734
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
93711
93735
|
user_identity_id?: string | undefined;
|
|
93712
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
93736
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
93713
93737
|
connected_account_id: string;
|
|
93714
93738
|
/** ID of the credential pool to which the credential belongs. */
|
|
93715
93739
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -93841,7 +93865,7 @@ export type Routes = {
|
|
|
93841
93865
|
acs_user_id?: string | undefined;
|
|
93842
93866
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
93843
93867
|
user_identity_id?: string | undefined;
|
|
93844
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
93868
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
93845
93869
|
connected_account_id: string;
|
|
93846
93870
|
/** ID of the credential pool to which the credential belongs. */
|
|
93847
93871
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -94051,7 +94075,7 @@ export type Routes = {
|
|
|
94051
94075
|
acs_user_id?: string | undefined;
|
|
94052
94076
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
94053
94077
|
user_identity_id?: string | undefined;
|
|
94054
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
94078
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
94055
94079
|
connected_account_id: string;
|
|
94056
94080
|
/** ID of the credential pool to which the credential belongs. */
|
|
94057
94081
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -97998,7 +98022,7 @@ export type Routes = {
|
|
|
97998
98022
|
acs_user_id?: string | undefined;
|
|
97999
98023
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98000
98024
|
user_identity_id?: string | undefined;
|
|
98001
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
98025
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98002
98026
|
connected_account_id: string;
|
|
98003
98027
|
/** ID of the credential pool to which the credential belongs. */
|
|
98004
98028
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -98130,7 +98154,7 @@ export type Routes = {
|
|
|
98130
98154
|
acs_user_id?: string | undefined;
|
|
98131
98155
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98132
98156
|
user_identity_id?: string | undefined;
|
|
98133
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
98157
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98134
98158
|
connected_account_id: string;
|
|
98135
98159
|
/** ID of the credential pool to which the credential belongs. */
|
|
98136
98160
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -98328,7 +98352,7 @@ export type Routes = {
|
|
|
98328
98352
|
acs_user_id?: string | undefined;
|
|
98329
98353
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98330
98354
|
user_identity_id?: string | undefined;
|
|
98331
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
98355
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98332
98356
|
connected_account_id: string;
|
|
98333
98357
|
/** ID of the credential pool to which the credential belongs. */
|
|
98334
98358
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -98460,7 +98484,7 @@ export type Routes = {
|
|
|
98460
98484
|
acs_user_id?: string | undefined;
|
|
98461
98485
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98462
98486
|
user_identity_id?: string | undefined;
|
|
98463
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
98487
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98464
98488
|
connected_account_id: string;
|
|
98465
98489
|
/** ID of the credential pool to which the credential belongs. */
|
|
98466
98490
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -98670,7 +98694,7 @@ export type Routes = {
|
|
|
98670
98694
|
acs_user_id?: string | undefined;
|
|
98671
98695
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98672
98696
|
user_identity_id?: string | undefined;
|
|
98673
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
98697
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
98674
98698
|
connected_account_id: string;
|
|
98675
98699
|
/** ID of the credential pool to which the credential belongs. */
|
|
98676
98700
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -99883,7 +99907,7 @@ export type Routes = {
|
|
|
99883
99907
|
acs_user_id?: string | undefined;
|
|
99884
99908
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
99885
99909
|
user_identity_id?: string | undefined;
|
|
99886
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
99910
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
99887
99911
|
connected_account_id: string;
|
|
99888
99912
|
/** ID of the credential pool to which the credential belongs. */
|
|
99889
99913
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -100015,7 +100039,7 @@ export type Routes = {
|
|
|
100015
100039
|
acs_user_id?: string | undefined;
|
|
100016
100040
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100017
100041
|
user_identity_id?: string | undefined;
|
|
100018
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
100042
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100019
100043
|
connected_account_id: string;
|
|
100020
100044
|
/** ID of the credential pool to which the credential belongs. */
|
|
100021
100045
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -100213,7 +100237,7 @@ export type Routes = {
|
|
|
100213
100237
|
acs_user_id?: string | undefined;
|
|
100214
100238
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100215
100239
|
user_identity_id?: string | undefined;
|
|
100216
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
100240
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100217
100241
|
connected_account_id: string;
|
|
100218
100242
|
/** ID of the credential pool to which the credential belongs. */
|
|
100219
100243
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -100345,7 +100369,7 @@ export type Routes = {
|
|
|
100345
100369
|
acs_user_id?: string | undefined;
|
|
100346
100370
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100347
100371
|
user_identity_id?: string | undefined;
|
|
100348
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
100372
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100349
100373
|
connected_account_id: string;
|
|
100350
100374
|
/** ID of the credential pool to which the credential belongs. */
|
|
100351
100375
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -100555,7 +100579,7 @@ export type Routes = {
|
|
|
100555
100579
|
acs_user_id?: string | undefined;
|
|
100556
100580
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100557
100581
|
user_identity_id?: string | undefined;
|
|
100558
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
100582
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100559
100583
|
connected_account_id: string;
|
|
100560
100584
|
/** ID of the credential pool to which the credential belongs. */
|
|
100561
100585
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -101596,7 +101620,7 @@ export type Routes = {
|
|
|
101596
101620
|
acs_user_id?: string | undefined;
|
|
101597
101621
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
101598
101622
|
user_identity_id?: string | undefined;
|
|
101599
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
101623
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
101600
101624
|
connected_account_id: string;
|
|
101601
101625
|
/** ID of the credential pool to which the credential belongs. */
|
|
101602
101626
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -101728,7 +101752,7 @@ export type Routes = {
|
|
|
101728
101752
|
acs_user_id?: string | undefined;
|
|
101729
101753
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
101730
101754
|
user_identity_id?: string | undefined;
|
|
101731
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
101755
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
101732
101756
|
connected_account_id: string;
|
|
101733
101757
|
/** ID of the credential pool to which the credential belongs. */
|
|
101734
101758
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -101926,7 +101950,7 @@ export type Routes = {
|
|
|
101926
101950
|
acs_user_id?: string | undefined;
|
|
101927
101951
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
101928
101952
|
user_identity_id?: string | undefined;
|
|
101929
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
101953
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
101930
101954
|
connected_account_id: string;
|
|
101931
101955
|
/** ID of the credential pool to which the credential belongs. */
|
|
101932
101956
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -102058,7 +102082,7 @@ export type Routes = {
|
|
|
102058
102082
|
acs_user_id?: string | undefined;
|
|
102059
102083
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
102060
102084
|
user_identity_id?: string | undefined;
|
|
102061
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
102085
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
102062
102086
|
connected_account_id: string;
|
|
102063
102087
|
/** ID of the credential pool to which the credential belongs. */
|
|
102064
102088
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -102268,7 +102292,7 @@ export type Routes = {
|
|
|
102268
102292
|
acs_user_id?: string | undefined;
|
|
102269
102293
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
102270
102294
|
user_identity_id?: string | undefined;
|
|
102271
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
102295
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
102272
102296
|
connected_account_id: string;
|
|
102273
102297
|
/** ID of the credential pool to which the credential belongs. */
|
|
102274
102298
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -103421,7 +103445,7 @@ export type Routes = {
|
|
|
103421
103445
|
acs_user_id?: string | undefined;
|
|
103422
103446
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103423
103447
|
user_identity_id?: string | undefined;
|
|
103424
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
103448
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103425
103449
|
connected_account_id: string;
|
|
103426
103450
|
/** ID of the credential pool to which the credential belongs. */
|
|
103427
103451
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -103553,7 +103577,7 @@ export type Routes = {
|
|
|
103553
103577
|
acs_user_id?: string | undefined;
|
|
103554
103578
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103555
103579
|
user_identity_id?: string | undefined;
|
|
103556
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
103580
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103557
103581
|
connected_account_id: string;
|
|
103558
103582
|
/** ID of the credential pool to which the credential belongs. */
|
|
103559
103583
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -103751,7 +103775,7 @@ export type Routes = {
|
|
|
103751
103775
|
acs_user_id?: string | undefined;
|
|
103752
103776
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103753
103777
|
user_identity_id?: string | undefined;
|
|
103754
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
103778
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103755
103779
|
connected_account_id: string;
|
|
103756
103780
|
/** ID of the credential pool to which the credential belongs. */
|
|
103757
103781
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -103883,7 +103907,7 @@ export type Routes = {
|
|
|
103883
103907
|
acs_user_id?: string | undefined;
|
|
103884
103908
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103885
103909
|
user_identity_id?: string | undefined;
|
|
103886
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
103910
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103887
103911
|
connected_account_id: string;
|
|
103888
103912
|
/** ID of the credential pool to which the credential belongs. */
|
|
103889
103913
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -104093,7 +104117,7 @@ export type Routes = {
|
|
|
104093
104117
|
acs_user_id?: string | undefined;
|
|
104094
104118
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
104095
104119
|
user_identity_id?: string | undefined;
|
|
104096
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
104120
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
104097
104121
|
connected_account_id: string;
|
|
104098
104122
|
/** ID of the credential pool to which the credential belongs. */
|
|
104099
104123
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -111875,7 +111899,7 @@ export type Routes = {
|
|
|
111875
111899
|
is_managed: true;
|
|
111876
111900
|
}[] | undefined;
|
|
111877
111901
|
acs_encoders?: {
|
|
111878
|
-
/** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners. */
|
|
111902
|
+
/** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
|
|
111879
111903
|
acs_encoder_id: string;
|
|
111880
111904
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
|
|
111881
111905
|
acs_system_id: string;
|
|
@@ -112041,7 +112065,7 @@ export type Routes = {
|
|
|
112041
112065
|
acs_user_id?: string | undefined;
|
|
112042
112066
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112043
112067
|
user_identity_id?: string | undefined;
|
|
112044
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
112068
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112045
112069
|
connected_account_id: string;
|
|
112046
112070
|
/** ID of the credential pool to which the credential belongs. */
|
|
112047
112071
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -112173,7 +112197,7 @@ export type Routes = {
|
|
|
112173
112197
|
acs_user_id?: string | undefined;
|
|
112174
112198
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112175
112199
|
user_identity_id?: string | undefined;
|
|
112176
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
112200
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112177
112201
|
connected_account_id: string;
|
|
112178
112202
|
/** ID of the credential pool to which the credential belongs. */
|
|
112179
112203
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -112371,7 +112395,7 @@ export type Routes = {
|
|
|
112371
112395
|
acs_user_id?: string | undefined;
|
|
112372
112396
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112373
112397
|
user_identity_id?: string | undefined;
|
|
112374
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
112398
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112375
112399
|
connected_account_id: string;
|
|
112376
112400
|
/** ID of the credential pool to which the credential belongs. */
|
|
112377
112401
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -112503,7 +112527,7 @@ export type Routes = {
|
|
|
112503
112527
|
acs_user_id?: string | undefined;
|
|
112504
112528
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112505
112529
|
user_identity_id?: string | undefined;
|
|
112506
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
112530
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112507
112531
|
connected_account_id: string;
|
|
112508
112532
|
/** ID of the credential pool to which the credential belongs. */
|
|
112509
112533
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -112713,7 +112737,7 @@ export type Routes = {
|
|
|
112713
112737
|
acs_user_id?: string | undefined;
|
|
112714
112738
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112715
112739
|
user_identity_id?: string | undefined;
|
|
112716
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
112740
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
112717
112741
|
connected_account_id: string;
|
|
112718
112742
|
/** ID of the credential pool to which the credential belongs. */
|
|
112719
112743
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -117520,6 +117544,10 @@ export type Routes = {
|
|
|
117520
117544
|
event_type: 'lock.locked';
|
|
117521
117545
|
/** ID of the access code that was used to lock the device. */
|
|
117522
117546
|
access_code_id?: string | undefined;
|
|
117547
|
+
/**
|
|
117548
|
+
Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
117549
|
+
*/
|
|
117550
|
+
code?: string | undefined;
|
|
117523
117551
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
117524
117552
|
access_code_is_managed?: boolean | undefined;
|
|
117525
117553
|
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
@@ -117560,6 +117588,10 @@ export type Routes = {
|
|
|
117560
117588
|
event_type: 'lock.unlocked';
|
|
117561
117589
|
/** ID of the access code that was used to unlock the affected device. */
|
|
117562
117590
|
access_code_id?: string | undefined;
|
|
117591
|
+
/**
|
|
117592
|
+
Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
117593
|
+
*/
|
|
117594
|
+
code?: string | undefined;
|
|
117563
117595
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
117564
117596
|
access_code_is_managed?: boolean | undefined;
|
|
117565
117597
|
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
@@ -118054,7 +118086,7 @@ export type Routes = {
|
|
|
118054
118086
|
acs_user_id?: string | undefined;
|
|
118055
118087
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
118056
118088
|
user_identity_id?: string | undefined;
|
|
118057
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
118089
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
118058
118090
|
connected_account_id: string;
|
|
118059
118091
|
/** ID of the credential pool to which the credential belongs. */
|
|
118060
118092
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -118187,7 +118219,7 @@ export type Routes = {
|
|
|
118187
118219
|
acs_user_id?: string | undefined;
|
|
118188
118220
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
118189
118221
|
user_identity_id?: string | undefined;
|
|
118190
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
118222
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
118191
118223
|
connected_account_id: string;
|
|
118192
118224
|
/** ID of the credential pool to which the credential belongs. */
|
|
118193
118225
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -119538,7 +119570,7 @@ export type Routes = {
|
|
|
119538
119570
|
acs_user_id?: string | undefined;
|
|
119539
119571
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119540
119572
|
user_identity_id?: string | undefined;
|
|
119541
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
119573
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119542
119574
|
connected_account_id: string;
|
|
119543
119575
|
/** ID of the credential pool to which the credential belongs. */
|
|
119544
119576
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -119670,7 +119702,7 @@ export type Routes = {
|
|
|
119670
119702
|
acs_user_id?: string | undefined;
|
|
119671
119703
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119672
119704
|
user_identity_id?: string | undefined;
|
|
119673
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
119705
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119674
119706
|
connected_account_id: string;
|
|
119675
119707
|
/** ID of the credential pool to which the credential belongs. */
|
|
119676
119708
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -119868,7 +119900,7 @@ export type Routes = {
|
|
|
119868
119900
|
acs_user_id?: string | undefined;
|
|
119869
119901
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119870
119902
|
user_identity_id?: string | undefined;
|
|
119871
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
119903
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119872
119904
|
connected_account_id: string;
|
|
119873
119905
|
/** ID of the credential pool to which the credential belongs. */
|
|
119874
119906
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -120000,7 +120032,7 @@ export type Routes = {
|
|
|
120000
120032
|
acs_user_id?: string | undefined;
|
|
120001
120033
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
120002
120034
|
user_identity_id?: string | undefined;
|
|
120003
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
120035
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
120004
120036
|
connected_account_id: string;
|
|
120005
120037
|
/** ID of the credential pool to which the credential belongs. */
|
|
120006
120038
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -120210,7 +120242,7 @@ export type Routes = {
|
|
|
120210
120242
|
acs_user_id?: string | undefined;
|
|
120211
120243
|
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
120212
120244
|
user_identity_id?: string | undefined;
|
|
120213
|
-
/** ID of the [connected account](https://docs.seam.co/
|
|
120245
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
120214
120246
|
connected_account_id: string;
|
|
120215
120247
|
/** ID of the credential pool to which the credential belongs. */
|
|
120216
120248
|
acs_credential_pool_id?: string | undefined;
|