@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.
Files changed (28) hide show
  1. package/dist/connect.cjs +47 -33
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +225 -187
  4. package/dist/index.cjs +47 -33
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-credential.js +1 -1
  7. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  8. package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
  9. package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-system.js +4 -4
  11. package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -1
  12. package/lib/seam/connect/models/events/devices.d.ts +12 -0
  13. package/lib/seam/connect/models/events/devices.js +6 -0
  14. package/lib/seam/connect/models/events/devices.js.map +1 -1
  15. package/lib/seam/connect/models/events/enrollment-automations.js +1 -1
  16. package/lib/seam/connect/models/events/seam-event.d.ts +6 -0
  17. package/lib/seam/connect/openapi.js +33 -25
  18. package/lib/seam/connect/openapi.js.map +1 -1
  19. package/lib/seam/connect/route-types.d.ts +219 -187
  20. package/package.json +1 -1
  21. package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -1
  22. package/src/lib/seam/connect/models/acs/acs-encoder.ts +1 -1
  23. package/src/lib/seam/connect/models/acs/acs-system.ts +4 -4
  24. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -1
  25. package/src/lib/seam/connect/models/events/devices.ts +6 -0
  26. package/src/lib/seam/connect/models/events/enrollment-automations.ts +1 -1
  27. package/src/lib/seam/connect/openapi.ts +35 -25
  28. package/src/lib/seam/connect/route-types.ts +219 -187
@@ -28402,6 +28402,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28402
28402
  } & {
28403
28403
  event_type: z.ZodLiteral<"lock.locked">;
28404
28404
  access_code_id: z.ZodOptional<z.ZodString>;
28405
+ code: z.ZodOptional<z.ZodString>;
28405
28406
  access_code_is_managed: z.ZodOptional<z.ZodBoolean>;
28406
28407
  action_attempt_id: z.ZodOptional<z.ZodString>;
28407
28408
  method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "remote"]>;
@@ -28416,6 +28417,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28416
28417
  occurred_at: string;
28417
28418
  event_type: "lock.locked";
28418
28419
  method: "unknown" | "keycode" | "manual" | "automatic" | "remote";
28420
+ code?: string | undefined;
28419
28421
  customer_key?: string | undefined;
28420
28422
  access_code_id?: string | undefined;
28421
28423
  action_attempt_id?: string | undefined;
@@ -28433,6 +28435,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28433
28435
  occurred_at: string;
28434
28436
  event_type: "lock.locked";
28435
28437
  method: "unknown" | "keycode" | "manual" | "automatic" | "remote";
28438
+ code?: string | undefined;
28436
28439
  customer_key?: string | undefined;
28437
28440
  access_code_id?: string | undefined;
28438
28441
  action_attempt_id?: string | undefined;
@@ -28453,6 +28456,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28453
28456
  } & {
28454
28457
  event_type: z.ZodLiteral<"lock.unlocked">;
28455
28458
  access_code_id: z.ZodOptional<z.ZodString>;
28459
+ code: z.ZodOptional<z.ZodString>;
28456
28460
  access_code_is_managed: z.ZodOptional<z.ZodBoolean>;
28457
28461
  action_attempt_id: z.ZodOptional<z.ZodString>;
28458
28462
  method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "remote"]>;
@@ -28471,6 +28475,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28471
28475
  occurred_at: string;
28472
28476
  event_type: "lock.unlocked";
28473
28477
  method: "unknown" | "keycode" | "manual" | "automatic" | "remote";
28478
+ code?: string | undefined;
28474
28479
  device_id?: string | undefined;
28475
28480
  customer_key?: string | undefined;
28476
28481
  access_code_id?: string | undefined;
@@ -28492,6 +28497,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28492
28497
  occurred_at: string;
28493
28498
  event_type: "lock.unlocked";
28494
28499
  method: "unknown" | "keycode" | "manual" | "automatic" | "remote";
28500
+ code?: string | undefined;
28495
28501
  device_id?: string | undefined;
28496
28502
  customer_key?: string | undefined;
28497
28503
  access_code_id?: string | undefined;
@@ -29830,7 +29836,7 @@ type Routes = {
29830
29836
  common_code_key?: string | undefined;
29831
29837
  /** 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`. */
29832
29838
  prefer_native_scheduling?: boolean | undefined;
29833
- /** 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). */
29839
+ /** 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). */
29834
29840
  use_backup_access_code_pool?: boolean | undefined;
29835
29841
  /** Indicates whether [external modification](https://docs.seam.co/low-level-apis/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
29836
29842
  allow_external_modification?: boolean | undefined;
@@ -30000,7 +30006,7 @@ type Routes = {
30000
30006
  acs_user_id?: string | undefined;
30001
30007
  /** 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. */
30002
30008
  user_identity_id?: string | undefined;
30003
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
30009
+ /** 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. */
30004
30010
  connected_account_id: string;
30005
30011
  /** ID of the credential pool to which the credential belongs. */
30006
30012
  acs_credential_pool_id?: string | undefined;
@@ -30132,7 +30138,7 @@ type Routes = {
30132
30138
  acs_user_id?: string | undefined;
30133
30139
  /** 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. */
30134
30140
  user_identity_id?: string | undefined;
30135
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
30141
+ /** 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. */
30136
30142
  connected_account_id: string;
30137
30143
  /** ID of the credential pool to which the credential belongs. */
30138
30144
  acs_credential_pool_id?: string | undefined;
@@ -30330,7 +30336,7 @@ type Routes = {
30330
30336
  acs_user_id?: string | undefined;
30331
30337
  /** 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. */
30332
30338
  user_identity_id?: string | undefined;
30333
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
30339
+ /** 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. */
30334
30340
  connected_account_id: string;
30335
30341
  /** ID of the credential pool to which the credential belongs. */
30336
30342
  acs_credential_pool_id?: string | undefined;
@@ -30462,7 +30468,7 @@ type Routes = {
30462
30468
  acs_user_id?: string | undefined;
30463
30469
  /** 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. */
30464
30470
  user_identity_id?: string | undefined;
30465
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
30471
+ /** 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. */
30466
30472
  connected_account_id: string;
30467
30473
  /** ID of the credential pool to which the credential belongs. */
30468
30474
  acs_credential_pool_id?: string | undefined;
@@ -30672,7 +30678,7 @@ type Routes = {
30672
30678
  acs_user_id?: string | undefined;
30673
30679
  /** 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. */
30674
30680
  user_identity_id?: string | undefined;
30675
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
30681
+ /** 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. */
30676
30682
  connected_account_id: string;
30677
30683
  /** ID of the credential pool to which the credential belongs. */
30678
30684
  acs_credential_pool_id?: string | undefined;
@@ -32053,7 +32059,7 @@ type Routes = {
32053
32059
  allow_external_modification?: boolean | undefined;
32054
32060
  /** Indicates whether [external modification](https://docs.seam.co/low-level-apis/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
32055
32061
  is_external_modification_allowed?: boolean | undefined;
32056
- /** 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). */
32062
+ /** 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). */
32057
32063
  use_backup_access_code_pool?: boolean | undefined;
32058
32064
  };
32059
32065
  commonParams: {};
@@ -32718,7 +32724,7 @@ type Routes = {
32718
32724
  acs_user_id?: string | undefined;
32719
32725
  /** 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. */
32720
32726
  user_identity_id?: string | undefined;
32721
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
32727
+ /** 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. */
32722
32728
  connected_account_id: string;
32723
32729
  /** ID of the credential pool to which the credential belongs. */
32724
32730
  acs_credential_pool_id?: string | undefined;
@@ -32850,7 +32856,7 @@ type Routes = {
32850
32856
  acs_user_id?: string | undefined;
32851
32857
  /** 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. */
32852
32858
  user_identity_id?: string | undefined;
32853
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
32859
+ /** 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. */
32854
32860
  connected_account_id: string;
32855
32861
  /** ID of the credential pool to which the credential belongs. */
32856
32862
  acs_credential_pool_id?: string | undefined;
@@ -33048,7 +33054,7 @@ type Routes = {
33048
33054
  acs_user_id?: string | undefined;
33049
33055
  /** 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. */
33050
33056
  user_identity_id?: string | undefined;
33051
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
33057
+ /** 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. */
33052
33058
  connected_account_id: string;
33053
33059
  /** ID of the credential pool to which the credential belongs. */
33054
33060
  acs_credential_pool_id?: string | undefined;
@@ -33180,7 +33186,7 @@ type Routes = {
33180
33186
  acs_user_id?: string | undefined;
33181
33187
  /** 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. */
33182
33188
  user_identity_id?: string | undefined;
33183
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
33189
+ /** 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. */
33184
33190
  connected_account_id: string;
33185
33191
  /** ID of the credential pool to which the credential belongs. */
33186
33192
  acs_credential_pool_id?: string | undefined;
@@ -33390,7 +33396,7 @@ type Routes = {
33390
33396
  acs_user_id?: string | undefined;
33391
33397
  /** 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. */
33392
33398
  user_identity_id?: string | undefined;
33393
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
33399
+ /** 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. */
33394
33400
  connected_account_id: string;
33395
33401
  /** ID of the credential pool to which the credential belongs. */
33396
33402
  acs_credential_pool_id?: string | undefined;
@@ -37008,7 +37014,7 @@ type Routes = {
37008
37014
  acs_user_id?: string | undefined;
37009
37015
  /** 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. */
37010
37016
  user_identity_id?: string | undefined;
37011
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37017
+ /** 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. */
37012
37018
  connected_account_id: string;
37013
37019
  /** ID of the credential pool to which the credential belongs. */
37014
37020
  acs_credential_pool_id?: string | undefined;
@@ -37140,7 +37146,7 @@ type Routes = {
37140
37146
  acs_user_id?: string | undefined;
37141
37147
  /** 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. */
37142
37148
  user_identity_id?: string | undefined;
37143
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37149
+ /** 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. */
37144
37150
  connected_account_id: string;
37145
37151
  /** ID of the credential pool to which the credential belongs. */
37146
37152
  acs_credential_pool_id?: string | undefined;
@@ -37338,7 +37344,7 @@ type Routes = {
37338
37344
  acs_user_id?: string | undefined;
37339
37345
  /** 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. */
37340
37346
  user_identity_id?: string | undefined;
37341
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37347
+ /** 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. */
37342
37348
  connected_account_id: string;
37343
37349
  /** ID of the credential pool to which the credential belongs. */
37344
37350
  acs_credential_pool_id?: string | undefined;
@@ -37470,7 +37476,7 @@ type Routes = {
37470
37476
  acs_user_id?: string | undefined;
37471
37477
  /** 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. */
37472
37478
  user_identity_id?: string | undefined;
37473
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37479
+ /** 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. */
37474
37480
  connected_account_id: string;
37475
37481
  /** ID of the credential pool to which the credential belongs. */
37476
37482
  acs_credential_pool_id?: string | undefined;
@@ -37680,7 +37686,7 @@ type Routes = {
37680
37686
  acs_user_id?: string | undefined;
37681
37687
  /** 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. */
37682
37688
  user_identity_id?: string | undefined;
37683
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
37689
+ /** 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. */
37684
37690
  connected_account_id: string;
37685
37691
  /** ID of the credential pool to which the credential belongs. */
37686
37692
  acs_credential_pool_id?: string | undefined;
@@ -39428,7 +39434,7 @@ type Routes = {
39428
39434
  attempt_for_offline_device?: boolean;
39429
39435
  /** 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`. */
39430
39436
  prefer_native_scheduling?: boolean | undefined;
39431
- /** 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). */
39437
+ /** 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). */
39432
39438
  use_backup_access_code_pool?: boolean | undefined;
39433
39439
  /** Indicates whether [external modification](https://docs.seam.co/low-level-apis/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
39434
39440
  allow_external_modification?: boolean | undefined;
@@ -39606,7 +39612,7 @@ type Routes = {
39606
39612
  acs_user_id?: string | undefined;
39607
39613
  /** 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. */
39608
39614
  user_identity_id?: string | undefined;
39609
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
39615
+ /** 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. */
39610
39616
  connected_account_id: string;
39611
39617
  /** ID of the credential pool to which the credential belongs. */
39612
39618
  acs_credential_pool_id?: string | undefined;
@@ -39738,7 +39744,7 @@ type Routes = {
39738
39744
  acs_user_id?: string | undefined;
39739
39745
  /** 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. */
39740
39746
  user_identity_id?: string | undefined;
39741
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
39747
+ /** 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. */
39742
39748
  connected_account_id: string;
39743
39749
  /** ID of the credential pool to which the credential belongs. */
39744
39750
  acs_credential_pool_id?: string | undefined;
@@ -39936,7 +39942,7 @@ type Routes = {
39936
39942
  acs_user_id?: string | undefined;
39937
39943
  /** 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. */
39938
39944
  user_identity_id?: string | undefined;
39939
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
39945
+ /** 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. */
39940
39946
  connected_account_id: string;
39941
39947
  /** ID of the credential pool to which the credential belongs. */
39942
39948
  acs_credential_pool_id?: string | undefined;
@@ -40068,7 +40074,7 @@ type Routes = {
40068
40074
  acs_user_id?: string | undefined;
40069
40075
  /** 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. */
40070
40076
  user_identity_id?: string | undefined;
40071
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
40077
+ /** 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. */
40072
40078
  connected_account_id: string;
40073
40079
  /** ID of the credential pool to which the credential belongs. */
40074
40080
  acs_credential_pool_id?: string | undefined;
@@ -40278,7 +40284,7 @@ type Routes = {
40278
40284
  acs_user_id?: string | undefined;
40279
40285
  /** 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. */
40280
40286
  user_identity_id?: string | undefined;
40281
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
40287
+ /** 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. */
40282
40288
  connected_account_id: string;
40283
40289
  /** ID of the credential pool to which the credential belongs. */
40284
40290
  acs_credential_pool_id?: string | undefined;
@@ -44963,7 +44969,7 @@ type Routes = {
44963
44969
  acs_user_id?: string | undefined;
44964
44970
  /** 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. */
44965
44971
  user_identity_id?: string | undefined;
44966
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
44972
+ /** 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. */
44967
44973
  connected_account_id: string;
44968
44974
  /** ID of the credential pool to which the credential belongs. */
44969
44975
  acs_credential_pool_id?: string | undefined;
@@ -45095,7 +45101,7 @@ type Routes = {
45095
45101
  acs_user_id?: string | undefined;
45096
45102
  /** 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. */
45097
45103
  user_identity_id?: string | undefined;
45098
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
45104
+ /** 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. */
45099
45105
  connected_account_id: string;
45100
45106
  /** ID of the credential pool to which the credential belongs. */
45101
45107
  acs_credential_pool_id?: string | undefined;
@@ -45293,7 +45299,7 @@ type Routes = {
45293
45299
  acs_user_id?: string | undefined;
45294
45300
  /** 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. */
45295
45301
  user_identity_id?: string | undefined;
45296
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
45302
+ /** 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. */
45297
45303
  connected_account_id: string;
45298
45304
  /** ID of the credential pool to which the credential belongs. */
45299
45305
  acs_credential_pool_id?: string | undefined;
@@ -45425,7 +45431,7 @@ type Routes = {
45425
45431
  acs_user_id?: string | undefined;
45426
45432
  /** 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. */
45427
45433
  user_identity_id?: string | undefined;
45428
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
45434
+ /** 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. */
45429
45435
  connected_account_id: string;
45430
45436
  /** ID of the credential pool to which the credential belongs. */
45431
45437
  acs_credential_pool_id?: string | undefined;
@@ -45635,7 +45641,7 @@ type Routes = {
45635
45641
  acs_user_id?: string | undefined;
45636
45642
  /** 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. */
45637
45643
  user_identity_id?: string | undefined;
45638
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
45644
+ /** 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. */
45639
45645
  connected_account_id: string;
45640
45646
  /** ID of the credential pool to which the credential belongs. */
45641
45647
  acs_credential_pool_id?: string | undefined;
@@ -46664,7 +46670,7 @@ type Routes = {
46664
46670
  acs_user_id?: string | undefined;
46665
46671
  /** 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. */
46666
46672
  user_identity_id?: string | undefined;
46667
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
46673
+ /** 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. */
46668
46674
  connected_account_id: string;
46669
46675
  /** ID of the credential pool to which the credential belongs. */
46670
46676
  acs_credential_pool_id?: string | undefined;
@@ -46796,7 +46802,7 @@ type Routes = {
46796
46802
  acs_user_id?: string | undefined;
46797
46803
  /** 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. */
46798
46804
  user_identity_id?: string | undefined;
46799
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
46805
+ /** 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. */
46800
46806
  connected_account_id: string;
46801
46807
  /** ID of the credential pool to which the credential belongs. */
46802
46808
  acs_credential_pool_id?: string | undefined;
@@ -46994,7 +47000,7 @@ type Routes = {
46994
47000
  acs_user_id?: string | undefined;
46995
47001
  /** 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. */
46996
47002
  user_identity_id?: string | undefined;
46997
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
47003
+ /** 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. */
46998
47004
  connected_account_id: string;
46999
47005
  /** ID of the credential pool to which the credential belongs. */
47000
47006
  acs_credential_pool_id?: string | undefined;
@@ -47126,7 +47132,7 @@ type Routes = {
47126
47132
  acs_user_id?: string | undefined;
47127
47133
  /** 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. */
47128
47134
  user_identity_id?: string | undefined;
47129
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
47135
+ /** 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. */
47130
47136
  connected_account_id: string;
47131
47137
  /** ID of the credential pool to which the credential belongs. */
47132
47138
  acs_credential_pool_id?: string | undefined;
@@ -47336,7 +47342,7 @@ type Routes = {
47336
47342
  acs_user_id?: string | undefined;
47337
47343
  /** 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. */
47338
47344
  user_identity_id?: string | undefined;
47339
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
47345
+ /** 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. */
47340
47346
  connected_account_id: string;
47341
47347
  /** ID of the credential pool to which the credential belongs. */
47342
47348
  acs_credential_pool_id?: string | undefined;
@@ -50347,7 +50353,7 @@ type Routes = {
50347
50353
  acs_user_id?: string | undefined;
50348
50354
  /** 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. */
50349
50355
  user_identity_id?: string | undefined;
50350
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
50356
+ /** 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. */
50351
50357
  connected_account_id: string;
50352
50358
  /** ID of the credential pool to which the credential belongs. */
50353
50359
  acs_credential_pool_id?: string | undefined;
@@ -50777,7 +50783,7 @@ type Routes = {
50777
50783
  acs_user_id?: string | undefined;
50778
50784
  /** 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. */
50779
50785
  user_identity_id?: string | undefined;
50780
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
50786
+ /** 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. */
50781
50787
  connected_account_id: string;
50782
50788
  /** ID of the credential pool to which the credential belongs. */
50783
50789
  acs_credential_pool_id?: string | undefined;
@@ -50909,7 +50915,7 @@ type Routes = {
50909
50915
  acs_user_id?: string | undefined;
50910
50916
  /** 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. */
50911
50917
  user_identity_id?: string | undefined;
50912
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
50918
+ /** 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. */
50913
50919
  connected_account_id: string;
50914
50920
  /** ID of the credential pool to which the credential belongs. */
50915
50921
  acs_credential_pool_id?: string | undefined;
@@ -51107,7 +51113,7 @@ type Routes = {
51107
51113
  acs_user_id?: string | undefined;
51108
51114
  /** 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. */
51109
51115
  user_identity_id?: string | undefined;
51110
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
51116
+ /** 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. */
51111
51117
  connected_account_id: string;
51112
51118
  /** ID of the credential pool to which the credential belongs. */
51113
51119
  acs_credential_pool_id?: string | undefined;
@@ -51239,7 +51245,7 @@ type Routes = {
51239
51245
  acs_user_id?: string | undefined;
51240
51246
  /** 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. */
51241
51247
  user_identity_id?: string | undefined;
51242
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
51248
+ /** 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. */
51243
51249
  connected_account_id: string;
51244
51250
  /** ID of the credential pool to which the credential belongs. */
51245
51251
  acs_credential_pool_id?: string | undefined;
@@ -51449,7 +51455,7 @@ type Routes = {
51449
51455
  acs_user_id?: string | undefined;
51450
51456
  /** 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. */
51451
51457
  user_identity_id?: string | undefined;
51452
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
51458
+ /** 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. */
51453
51459
  connected_account_id: string;
51454
51460
  /** ID of the credential pool to which the credential belongs. */
51455
51461
  acs_credential_pool_id?: string | undefined;
@@ -53874,7 +53880,7 @@ type Routes = {
53874
53880
  acs_user_id?: string | undefined;
53875
53881
  /** 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. */
53876
53882
  user_identity_id?: string | undefined;
53877
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
53883
+ /** 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. */
53878
53884
  connected_account_id: string;
53879
53885
  /** ID of the credential pool to which the credential belongs. */
53880
53886
  acs_credential_pool_id?: string | undefined;
@@ -54079,7 +54085,7 @@ type Routes = {
54079
54085
  acs_user_id?: string | undefined;
54080
54086
  /** 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. */
54081
54087
  user_identity_id?: string | undefined;
54082
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
54088
+ /** 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. */
54083
54089
  connected_account_id: string;
54084
54090
  /** ID of the credential pool to which the credential belongs. */
54085
54091
  acs_credential_pool_id?: string | undefined;
@@ -54241,7 +54247,7 @@ type Routes = {
54241
54247
  acs_user_id?: string | undefined;
54242
54248
  /** 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. */
54243
54249
  user_identity_id?: string | undefined;
54244
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
54250
+ /** 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. */
54245
54251
  connected_account_id: string;
54246
54252
  /** ID of the credential pool to which the credential belongs. */
54247
54253
  acs_credential_pool_id?: string | undefined;
@@ -54408,7 +54414,7 @@ type Routes = {
54408
54414
  acs_user_id?: string | undefined;
54409
54415
  /** 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. */
54410
54416
  user_identity_id?: string | undefined;
54411
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
54417
+ /** 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. */
54412
54418
  connected_account_id: string;
54413
54419
  /** ID of the credential pool to which the credential belongs. */
54414
54420
  acs_credential_pool_id?: string | undefined;
@@ -54577,7 +54583,7 @@ type Routes = {
54577
54583
  acs_user_id?: string | undefined;
54578
54584
  /** 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. */
54579
54585
  user_identity_id?: string | undefined;
54580
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
54586
+ /** 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. */
54581
54587
  connected_account_id: string;
54582
54588
  /** ID of the credential pool to which the credential belongs. */
54583
54589
  acs_credential_pool_id?: string | undefined;
@@ -54938,7 +54944,7 @@ type Routes = {
54938
54944
  acs_user_id?: string | undefined;
54939
54945
  /** 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. */
54940
54946
  user_identity_id?: string | undefined;
54941
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
54947
+ /** 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. */
54942
54948
  connected_account_id: string;
54943
54949
  /** ID of the credential pool to which the credential belongs. */
54944
54950
  acs_credential_pool_id?: string | undefined;
@@ -55086,7 +55092,7 @@ type Routes = {
55086
55092
  acs_user_id?: string | undefined;
55087
55093
  /** 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. */
55088
55094
  user_identity_id?: string | undefined;
55089
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
55095
+ /** 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. */
55090
55096
  connected_account_id: string;
55091
55097
  /** ID of the credential pool to which the credential belongs. */
55092
55098
  acs_credential_pool_id?: string | undefined;
@@ -55246,7 +55252,7 @@ type Routes = {
55246
55252
  acs_user_id?: string | undefined;
55247
55253
  /** 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. */
55248
55254
  user_identity_id?: string | undefined;
55249
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
55255
+ /** 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. */
55250
55256
  connected_account_id: string;
55251
55257
  /** ID of the credential pool to which the credential belongs. */
55252
55258
  acs_credential_pool_id?: string | undefined;
@@ -55403,7 +55409,7 @@ type Routes = {
55403
55409
  acs_user_id?: string | undefined;
55404
55410
  /** 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. */
55405
55411
  user_identity_id?: string | undefined;
55406
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
55412
+ /** 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. */
55407
55413
  connected_account_id: string;
55408
55414
  /** ID of the credential pool to which the credential belongs. */
55409
55415
  acs_credential_pool_id?: string | undefined;
@@ -55696,7 +55702,7 @@ type Routes = {
55696
55702
  acs_user_id?: string | undefined;
55697
55703
  /** 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. */
55698
55704
  user_identity_id?: string | undefined;
55699
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
55705
+ /** 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. */
55700
55706
  connected_account_id: string;
55701
55707
  /** ID of the credential pool to which the credential belongs. */
55702
55708
  acs_credential_pool_id?: string | undefined;
@@ -55828,7 +55834,7 @@ type Routes = {
55828
55834
  acs_user_id?: string | undefined;
55829
55835
  /** 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. */
55830
55836
  user_identity_id?: string | undefined;
55831
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
55837
+ /** 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. */
55832
55838
  connected_account_id: string;
55833
55839
  /** ID of the credential pool to which the credential belongs. */
55834
55840
  acs_credential_pool_id?: string | undefined;
@@ -56026,7 +56032,7 @@ type Routes = {
56026
56032
  acs_user_id?: string | undefined;
56027
56033
  /** 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. */
56028
56034
  user_identity_id?: string | undefined;
56029
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
56035
+ /** 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. */
56030
56036
  connected_account_id: string;
56031
56037
  /** ID of the credential pool to which the credential belongs. */
56032
56038
  acs_credential_pool_id?: string | undefined;
@@ -56158,7 +56164,7 @@ type Routes = {
56158
56164
  acs_user_id?: string | undefined;
56159
56165
  /** 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. */
56160
56166
  user_identity_id?: string | undefined;
56161
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
56167
+ /** 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. */
56162
56168
  connected_account_id: string;
56163
56169
  /** ID of the credential pool to which the credential belongs. */
56164
56170
  acs_credential_pool_id?: string | undefined;
@@ -56368,7 +56374,7 @@ type Routes = {
56368
56374
  acs_user_id?: string | undefined;
56369
56375
  /** 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. */
56370
56376
  user_identity_id?: string | undefined;
56371
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
56377
+ /** 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. */
56372
56378
  connected_account_id: string;
56373
56379
  /** ID of the credential pool to which the credential belongs. */
56374
56380
  acs_credential_pool_id?: string | undefined;
@@ -57242,7 +57248,7 @@ type Routes = {
57242
57248
 
57243
57249
  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). */
57244
57250
  acs_encoder: {
57245
- /** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners. */
57251
+ /** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
57246
57252
  acs_encoder_id: string;
57247
57253
  /** 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). */
57248
57254
  acs_system_id: string;
@@ -57290,7 +57296,7 @@ type Routes = {
57290
57296
  formData: {};
57291
57297
  jsonResponse: {
57292
57298
  acs_encoders: {
57293
- /** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners. */
57299
+ /** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
57294
57300
  acs_encoder_id: string;
57295
57301
  /** 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). */
57296
57302
  acs_system_id: string;
@@ -57489,7 +57495,7 @@ type Routes = {
57489
57495
  acs_user_id?: string | undefined;
57490
57496
  /** 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. */
57491
57497
  user_identity_id?: string | undefined;
57492
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
57498
+ /** 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. */
57493
57499
  connected_account_id: string;
57494
57500
  /** ID of the credential pool to which the credential belongs. */
57495
57501
  acs_credential_pool_id?: string | undefined;
@@ -57621,7 +57627,7 @@ type Routes = {
57621
57627
  acs_user_id?: string | undefined;
57622
57628
  /** 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. */
57623
57629
  user_identity_id?: string | undefined;
57624
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
57630
+ /** 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. */
57625
57631
  connected_account_id: string;
57626
57632
  /** ID of the credential pool to which the credential belongs. */
57627
57633
  acs_credential_pool_id?: string | undefined;
@@ -57819,7 +57825,7 @@ type Routes = {
57819
57825
  acs_user_id?: string | undefined;
57820
57826
  /** 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. */
57821
57827
  user_identity_id?: string | undefined;
57822
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
57828
+ /** 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. */
57823
57829
  connected_account_id: string;
57824
57830
  /** ID of the credential pool to which the credential belongs. */
57825
57831
  acs_credential_pool_id?: string | undefined;
@@ -57951,7 +57957,7 @@ type Routes = {
57951
57957
  acs_user_id?: string | undefined;
57952
57958
  /** 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. */
57953
57959
  user_identity_id?: string | undefined;
57954
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
57960
+ /** 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. */
57955
57961
  connected_account_id: string;
57956
57962
  /** ID of the credential pool to which the credential belongs. */
57957
57963
  acs_credential_pool_id?: string | undefined;
@@ -58161,7 +58167,7 @@ type Routes = {
58161
58167
  acs_user_id?: string | undefined;
58162
58168
  /** 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. */
58163
58169
  user_identity_id?: string | undefined;
58164
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
58170
+ /** 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. */
58165
58171
  connected_account_id: string;
58166
58172
  /** ID of the credential pool to which the credential belongs. */
58167
58173
  acs_credential_pool_id?: string | undefined;
@@ -59178,7 +59184,7 @@ type Routes = {
59178
59184
  acs_user_id?: string | undefined;
59179
59185
  /** 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. */
59180
59186
  user_identity_id?: string | undefined;
59181
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
59187
+ /** 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. */
59182
59188
  connected_account_id: string;
59183
59189
  /** ID of the credential pool to which the credential belongs. */
59184
59190
  acs_credential_pool_id?: string | undefined;
@@ -59310,7 +59316,7 @@ type Routes = {
59310
59316
  acs_user_id?: string | undefined;
59311
59317
  /** 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. */
59312
59318
  user_identity_id?: string | undefined;
59313
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
59319
+ /** 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. */
59314
59320
  connected_account_id: string;
59315
59321
  /** ID of the credential pool to which the credential belongs. */
59316
59322
  acs_credential_pool_id?: string | undefined;
@@ -59508,7 +59514,7 @@ type Routes = {
59508
59514
  acs_user_id?: string | undefined;
59509
59515
  /** 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. */
59510
59516
  user_identity_id?: string | undefined;
59511
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
59517
+ /** 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. */
59512
59518
  connected_account_id: string;
59513
59519
  /** ID of the credential pool to which the credential belongs. */
59514
59520
  acs_credential_pool_id?: string | undefined;
@@ -59640,7 +59646,7 @@ type Routes = {
59640
59646
  acs_user_id?: string | undefined;
59641
59647
  /** 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. */
59642
59648
  user_identity_id?: string | undefined;
59643
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
59649
+ /** 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. */
59644
59650
  connected_account_id: string;
59645
59651
  /** ID of the credential pool to which the credential belongs. */
59646
59652
  acs_credential_pool_id?: string | undefined;
@@ -59850,7 +59856,7 @@ type Routes = {
59850
59856
  acs_user_id?: string | undefined;
59851
59857
  /** 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. */
59852
59858
  user_identity_id?: string | undefined;
59853
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
59859
+ /** 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. */
59854
59860
  connected_account_id: string;
59855
59861
  /** ID of the credential pool to which the credential belongs. */
59856
59862
  acs_credential_pool_id?: string | undefined;
@@ -61237,7 +61243,7 @@ type Routes = {
61237
61243
  acs_user_id?: string | undefined;
61238
61244
  /** 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. */
61239
61245
  user_identity_id?: string | undefined;
61240
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
61246
+ /** 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. */
61241
61247
  connected_account_id: string;
61242
61248
  /** ID of the credential pool to which the credential belongs. */
61243
61249
  acs_credential_pool_id?: string | undefined;
@@ -61528,7 +61534,7 @@ type Routes = {
61528
61534
  acs_user_id?: string | undefined;
61529
61535
  /** 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. */
61530
61536
  user_identity_id?: string | undefined;
61531
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
61537
+ /** 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. */
61532
61538
  connected_account_id: string;
61533
61539
  /** ID of the credential pool to which the credential belongs. */
61534
61540
  acs_credential_pool_id?: string | undefined;
@@ -61660,7 +61666,7 @@ type Routes = {
61660
61666
  acs_user_id?: string | undefined;
61661
61667
  /** 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. */
61662
61668
  user_identity_id?: string | undefined;
61663
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
61669
+ /** 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. */
61664
61670
  connected_account_id: string;
61665
61671
  /** ID of the credential pool to which the credential belongs. */
61666
61672
  acs_credential_pool_id?: string | undefined;
@@ -61858,7 +61864,7 @@ type Routes = {
61858
61864
  acs_user_id?: string | undefined;
61859
61865
  /** 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. */
61860
61866
  user_identity_id?: string | undefined;
61861
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
61867
+ /** 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. */
61862
61868
  connected_account_id: string;
61863
61869
  /** ID of the credential pool to which the credential belongs. */
61864
61870
  acs_credential_pool_id?: string | undefined;
@@ -61990,7 +61996,7 @@ type Routes = {
61990
61996
  acs_user_id?: string | undefined;
61991
61997
  /** 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. */
61992
61998
  user_identity_id?: string | undefined;
61993
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
61999
+ /** 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. */
61994
62000
  connected_account_id: string;
61995
62001
  /** ID of the credential pool to which the credential belongs. */
61996
62002
  acs_credential_pool_id?: string | undefined;
@@ -62200,7 +62206,7 @@ type Routes = {
62200
62206
  acs_user_id?: string | undefined;
62201
62207
  /** 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. */
62202
62208
  user_identity_id?: string | undefined;
62203
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
62209
+ /** 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. */
62204
62210
  connected_account_id: string;
62205
62211
  /** ID of the credential pool to which the credential belongs. */
62206
62212
  acs_credential_pool_id?: string | undefined;
@@ -63061,7 +63067,7 @@ type Routes = {
63061
63067
  jsonResponse: {
63062
63068
  /** Represents an [access control system](https://docs.seam.co/low-level-apis/access-systems).
63063
63069
 
63064
- Within an `acs_system`, create [`acs_user`s](https://docs.seam.co/api/acs/users#acs_user) and [`acs_credential`s](https://docs.seam.co/api/acs/credentials#acs_credential) to grant access to the `acs_user`s.
63070
+ 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.
63065
63071
 
63066
63072
  For details about the resources associated with an access control system, see the [access control systems namespace](https://docs.seam.co/api/acs). */
63067
63073
  acs_system: {
@@ -65445,7 +65451,7 @@ type Routes = {
65445
65451
  acs_user_id?: string | undefined;
65446
65452
  /** 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. */
65447
65453
  user_identity_id?: string | undefined;
65448
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
65454
+ /** 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. */
65449
65455
  connected_account_id: string;
65450
65456
  /** ID of the credential pool to which the credential belongs. */
65451
65457
  acs_credential_pool_id?: string | undefined;
@@ -65577,7 +65583,7 @@ type Routes = {
65577
65583
  acs_user_id?: string | undefined;
65578
65584
  /** 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. */
65579
65585
  user_identity_id?: string | undefined;
65580
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
65586
+ /** 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. */
65581
65587
  connected_account_id: string;
65582
65588
  /** ID of the credential pool to which the credential belongs. */
65583
65589
  acs_credential_pool_id?: string | undefined;
@@ -65775,7 +65781,7 @@ type Routes = {
65775
65781
  acs_user_id?: string | undefined;
65776
65782
  /** 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. */
65777
65783
  user_identity_id?: string | undefined;
65778
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
65784
+ /** 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. */
65779
65785
  connected_account_id: string;
65780
65786
  /** ID of the credential pool to which the credential belongs. */
65781
65787
  acs_credential_pool_id?: string | undefined;
@@ -65907,7 +65913,7 @@ type Routes = {
65907
65913
  acs_user_id?: string | undefined;
65908
65914
  /** 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. */
65909
65915
  user_identity_id?: string | undefined;
65910
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
65916
+ /** 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. */
65911
65917
  connected_account_id: string;
65912
65918
  /** ID of the credential pool to which the credential belongs. */
65913
65919
  acs_credential_pool_id?: string | undefined;
@@ -66117,7 +66123,7 @@ type Routes = {
66117
66123
  acs_user_id?: string | undefined;
66118
66124
  /** 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. */
66119
66125
  user_identity_id?: string | undefined;
66120
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
66126
+ /** 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. */
66121
66127
  connected_account_id: string;
66122
66128
  /** ID of the credential pool to which the credential belongs. */
66123
66129
  acs_credential_pool_id?: string | undefined;
@@ -67126,7 +67132,7 @@ type Routes = {
67126
67132
  acs_user_id?: string | undefined;
67127
67133
  /** 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. */
67128
67134
  user_identity_id?: string | undefined;
67129
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
67135
+ /** 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. */
67130
67136
  connected_account_id: string;
67131
67137
  /** ID of the credential pool to which the credential belongs. */
67132
67138
  acs_credential_pool_id?: string | undefined;
@@ -67258,7 +67264,7 @@ type Routes = {
67258
67264
  acs_user_id?: string | undefined;
67259
67265
  /** 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. */
67260
67266
  user_identity_id?: string | undefined;
67261
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
67267
+ /** 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. */
67262
67268
  connected_account_id: string;
67263
67269
  /** ID of the credential pool to which the credential belongs. */
67264
67270
  acs_credential_pool_id?: string | undefined;
@@ -67456,7 +67462,7 @@ type Routes = {
67456
67462
  acs_user_id?: string | undefined;
67457
67463
  /** 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. */
67458
67464
  user_identity_id?: string | undefined;
67459
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
67465
+ /** 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. */
67460
67466
  connected_account_id: string;
67461
67467
  /** ID of the credential pool to which the credential belongs. */
67462
67468
  acs_credential_pool_id?: string | undefined;
@@ -67588,7 +67594,7 @@ type Routes = {
67588
67594
  acs_user_id?: string | undefined;
67589
67595
  /** 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. */
67590
67596
  user_identity_id?: string | undefined;
67591
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
67597
+ /** 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. */
67592
67598
  connected_account_id: string;
67593
67599
  /** ID of the credential pool to which the credential belongs. */
67594
67600
  acs_credential_pool_id?: string | undefined;
@@ -67798,7 +67804,7 @@ type Routes = {
67798
67804
  acs_user_id?: string | undefined;
67799
67805
  /** 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. */
67800
67806
  user_identity_id?: string | undefined;
67801
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
67807
+ /** 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. */
67802
67808
  connected_account_id: string;
67803
67809
  /** ID of the credential pool to which the credential belongs. */
67804
67810
  acs_credential_pool_id?: string | undefined;
@@ -77543,6 +77549,10 @@ type Routes = {
77543
77549
  event_type: 'lock.locked';
77544
77550
  /** ID of the access code that was used to lock the device. */
77545
77551
  access_code_id?: string | undefined;
77552
+ /**
77553
+ 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.
77554
+ */
77555
+ code?: string | undefined;
77546
77556
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
77547
77557
  access_code_is_managed?: boolean | undefined;
77548
77558
  /** 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). */
@@ -77583,6 +77593,10 @@ type Routes = {
77583
77593
  event_type: 'lock.unlocked';
77584
77594
  /** ID of the access code that was used to unlock the affected device. */
77585
77595
  access_code_id?: string | undefined;
77596
+ /**
77597
+ 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.
77598
+ */
77599
+ code?: string | undefined;
77586
77600
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
77587
77601
  access_code_is_managed?: boolean | undefined;
77588
77602
  /** 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). */
@@ -80580,6 +80594,10 @@ type Routes = {
80580
80594
  event_type: 'lock.locked';
80581
80595
  /** ID of the access code that was used to lock the device. */
80582
80596
  access_code_id?: string | undefined;
80597
+ /**
80598
+ 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.
80599
+ */
80600
+ code?: string | undefined;
80583
80601
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
80584
80602
  access_code_is_managed?: boolean | undefined;
80585
80603
  /** 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). */
@@ -80620,6 +80638,10 @@ type Routes = {
80620
80638
  event_type: 'lock.unlocked';
80621
80639
  /** ID of the access code that was used to unlock the affected device. */
80622
80640
  access_code_id?: string | undefined;
80641
+ /**
80642
+ 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.
80643
+ */
80644
+ code?: string | undefined;
80623
80645
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
80624
80646
  access_code_is_managed?: boolean | undefined;
80625
80647
  /** 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). */
@@ -81347,7 +81369,7 @@ type Routes = {
81347
81369
  acs_user_id?: string | undefined;
81348
81370
  /** 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. */
81349
81371
  user_identity_id?: string | undefined;
81350
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
81372
+ /** 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. */
81351
81373
  connected_account_id: string;
81352
81374
  /** ID of the credential pool to which the credential belongs. */
81353
81375
  acs_credential_pool_id?: string | undefined;
@@ -81479,7 +81501,7 @@ type Routes = {
81479
81501
  acs_user_id?: string | undefined;
81480
81502
  /** 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. */
81481
81503
  user_identity_id?: string | undefined;
81482
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
81504
+ /** 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. */
81483
81505
  connected_account_id: string;
81484
81506
  /** ID of the credential pool to which the credential belongs. */
81485
81507
  acs_credential_pool_id?: string | undefined;
@@ -81677,7 +81699,7 @@ type Routes = {
81677
81699
  acs_user_id?: string | undefined;
81678
81700
  /** 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. */
81679
81701
  user_identity_id?: string | undefined;
81680
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
81702
+ /** 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. */
81681
81703
  connected_account_id: string;
81682
81704
  /** ID of the credential pool to which the credential belongs. */
81683
81705
  acs_credential_pool_id?: string | undefined;
@@ -81809,7 +81831,7 @@ type Routes = {
81809
81831
  acs_user_id?: string | undefined;
81810
81832
  /** 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. */
81811
81833
  user_identity_id?: string | undefined;
81812
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
81834
+ /** 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. */
81813
81835
  connected_account_id: string;
81814
81836
  /** ID of the credential pool to which the credential belongs. */
81815
81837
  acs_credential_pool_id?: string | undefined;
@@ -82019,7 +82041,7 @@ type Routes = {
82019
82041
  acs_user_id?: string | undefined;
82020
82042
  /** 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. */
82021
82043
  user_identity_id?: string | undefined;
82022
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
82044
+ /** 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. */
82023
82045
  connected_account_id: string;
82024
82046
  /** ID of the credential pool to which the credential belongs. */
82025
82047
  acs_credential_pool_id?: string | undefined;
@@ -88870,7 +88892,7 @@ type Routes = {
88870
88892
  acs_user_id?: string | undefined;
88871
88893
  /** 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. */
88872
88894
  user_identity_id?: string | undefined;
88873
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
88895
+ /** 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. */
88874
88896
  connected_account_id: string;
88875
88897
  /** ID of the credential pool to which the credential belongs. */
88876
88898
  acs_credential_pool_id?: string | undefined;
@@ -89002,7 +89024,7 @@ type Routes = {
89002
89024
  acs_user_id?: string | undefined;
89003
89025
  /** 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. */
89004
89026
  user_identity_id?: string | undefined;
89005
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
89027
+ /** 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. */
89006
89028
  connected_account_id: string;
89007
89029
  /** ID of the credential pool to which the credential belongs. */
89008
89030
  acs_credential_pool_id?: string | undefined;
@@ -89200,7 +89222,7 @@ type Routes = {
89200
89222
  acs_user_id?: string | undefined;
89201
89223
  /** 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
89224
  user_identity_id?: string | undefined;
89203
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
89225
+ /** 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
89226
  connected_account_id: string;
89205
89227
  /** ID of the credential pool to which the credential belongs. */
89206
89228
  acs_credential_pool_id?: string | undefined;
@@ -89332,7 +89354,7 @@ type Routes = {
89332
89354
  acs_user_id?: string | undefined;
89333
89355
  /** 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. */
89334
89356
  user_identity_id?: string | undefined;
89335
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
89357
+ /** 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. */
89336
89358
  connected_account_id: string;
89337
89359
  /** ID of the credential pool to which the credential belongs. */
89338
89360
  acs_credential_pool_id?: string | undefined;
@@ -89542,7 +89564,7 @@ type Routes = {
89542
89564
  acs_user_id?: string | undefined;
89543
89565
  /** 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. */
89544
89566
  user_identity_id?: string | undefined;
89545
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
89567
+ /** 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. */
89546
89568
  connected_account_id: string;
89547
89569
  /** ID of the credential pool to which the credential belongs. */
89548
89570
  acs_credential_pool_id?: string | undefined;
@@ -90552,7 +90574,7 @@ type Routes = {
90552
90574
  acs_user_id?: string | undefined;
90553
90575
  /** 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. */
90554
90576
  user_identity_id?: string | undefined;
90555
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
90577
+ /** 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. */
90556
90578
  connected_account_id: string;
90557
90579
  /** ID of the credential pool to which the credential belongs. */
90558
90580
  acs_credential_pool_id?: string | undefined;
@@ -90684,7 +90706,7 @@ type Routes = {
90684
90706
  acs_user_id?: string | undefined;
90685
90707
  /** 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. */
90686
90708
  user_identity_id?: string | undefined;
90687
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
90709
+ /** 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. */
90688
90710
  connected_account_id: string;
90689
90711
  /** ID of the credential pool to which the credential belongs. */
90690
90712
  acs_credential_pool_id?: string | undefined;
@@ -90882,7 +90904,7 @@ type Routes = {
90882
90904
  acs_user_id?: string | undefined;
90883
90905
  /** 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. */
90884
90906
  user_identity_id?: string | undefined;
90885
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
90907
+ /** 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. */
90886
90908
  connected_account_id: string;
90887
90909
  /** ID of the credential pool to which the credential belongs. */
90888
90910
  acs_credential_pool_id?: string | undefined;
@@ -91014,7 +91036,7 @@ type Routes = {
91014
91036
  acs_user_id?: string | undefined;
91015
91037
  /** 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. */
91016
91038
  user_identity_id?: string | undefined;
91017
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
91039
+ /** 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. */
91018
91040
  connected_account_id: string;
91019
91041
  /** ID of the credential pool to which the credential belongs. */
91020
91042
  acs_credential_pool_id?: string | undefined;
@@ -91224,7 +91246,7 @@ type Routes = {
91224
91246
  acs_user_id?: string | undefined;
91225
91247
  /** 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. */
91226
91248
  user_identity_id?: string | undefined;
91227
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
91249
+ /** 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. */
91228
91250
  connected_account_id: string;
91229
91251
  /** ID of the credential pool to which the credential belongs. */
91230
91252
  acs_credential_pool_id?: string | undefined;
@@ -92232,7 +92254,7 @@ type Routes = {
92232
92254
  acs_user_id?: string | undefined;
92233
92255
  /** 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. */
92234
92256
  user_identity_id?: string | undefined;
92235
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92257
+ /** 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. */
92236
92258
  connected_account_id: string;
92237
92259
  /** ID of the credential pool to which the credential belongs. */
92238
92260
  acs_credential_pool_id?: string | undefined;
@@ -92364,7 +92386,7 @@ type Routes = {
92364
92386
  acs_user_id?: string | undefined;
92365
92387
  /** 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. */
92366
92388
  user_identity_id?: string | undefined;
92367
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92389
+ /** 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. */
92368
92390
  connected_account_id: string;
92369
92391
  /** ID of the credential pool to which the credential belongs. */
92370
92392
  acs_credential_pool_id?: string | undefined;
@@ -92562,7 +92584,7 @@ type Routes = {
92562
92584
  acs_user_id?: string | undefined;
92563
92585
  /** 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. */
92564
92586
  user_identity_id?: string | undefined;
92565
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92587
+ /** 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. */
92566
92588
  connected_account_id: string;
92567
92589
  /** ID of the credential pool to which the credential belongs. */
92568
92590
  acs_credential_pool_id?: string | undefined;
@@ -92694,7 +92716,7 @@ type Routes = {
92694
92716
  acs_user_id?: string | undefined;
92695
92717
  /** 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. */
92696
92718
  user_identity_id?: string | undefined;
92697
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92719
+ /** 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. */
92698
92720
  connected_account_id: string;
92699
92721
  /** ID of the credential pool to which the credential belongs. */
92700
92722
  acs_credential_pool_id?: string | undefined;
@@ -92904,7 +92926,7 @@ type Routes = {
92904
92926
  acs_user_id?: string | undefined;
92905
92927
  /** 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. */
92906
92928
  user_identity_id?: string | undefined;
92907
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
92929
+ /** 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. */
92908
92930
  connected_account_id: string;
92909
92931
  /** ID of the credential pool to which the credential belongs. */
92910
92932
  acs_credential_pool_id?: string | undefined;
@@ -93914,7 +93936,7 @@ type Routes = {
93914
93936
  acs_user_id?: string | undefined;
93915
93937
  /** 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. */
93916
93938
  user_identity_id?: string | undefined;
93917
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
93939
+ /** 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. */
93918
93940
  connected_account_id: string;
93919
93941
  /** ID of the credential pool to which the credential belongs. */
93920
93942
  acs_credential_pool_id?: string | undefined;
@@ -94046,7 +94068,7 @@ type Routes = {
94046
94068
  acs_user_id?: string | undefined;
94047
94069
  /** 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. */
94048
94070
  user_identity_id?: string | undefined;
94049
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
94071
+ /** 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. */
94050
94072
  connected_account_id: string;
94051
94073
  /** ID of the credential pool to which the credential belongs. */
94052
94074
  acs_credential_pool_id?: string | undefined;
@@ -94244,7 +94266,7 @@ type Routes = {
94244
94266
  acs_user_id?: string | undefined;
94245
94267
  /** 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. */
94246
94268
  user_identity_id?: string | undefined;
94247
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
94269
+ /** 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. */
94248
94270
  connected_account_id: string;
94249
94271
  /** ID of the credential pool to which the credential belongs. */
94250
94272
  acs_credential_pool_id?: string | undefined;
@@ -94376,7 +94398,7 @@ type Routes = {
94376
94398
  acs_user_id?: string | undefined;
94377
94399
  /** 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. */
94378
94400
  user_identity_id?: string | undefined;
94379
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
94401
+ /** 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. */
94380
94402
  connected_account_id: string;
94381
94403
  /** ID of the credential pool to which the credential belongs. */
94382
94404
  acs_credential_pool_id?: string | undefined;
@@ -94586,7 +94608,7 @@ type Routes = {
94586
94608
  acs_user_id?: string | undefined;
94587
94609
  /** 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. */
94588
94610
  user_identity_id?: string | undefined;
94589
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
94611
+ /** 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. */
94590
94612
  connected_account_id: string;
94591
94613
  /** ID of the credential pool to which the credential belongs. */
94592
94614
  acs_credential_pool_id?: string | undefined;
@@ -98543,7 +98565,7 @@ type Routes = {
98543
98565
  acs_user_id?: string | undefined;
98544
98566
  /** 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. */
98545
98567
  user_identity_id?: string | undefined;
98546
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
98568
+ /** 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. */
98547
98569
  connected_account_id: string;
98548
98570
  /** ID of the credential pool to which the credential belongs. */
98549
98571
  acs_credential_pool_id?: string | undefined;
@@ -98675,7 +98697,7 @@ type Routes = {
98675
98697
  acs_user_id?: string | undefined;
98676
98698
  /** 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. */
98677
98699
  user_identity_id?: string | undefined;
98678
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
98700
+ /** 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. */
98679
98701
  connected_account_id: string;
98680
98702
  /** ID of the credential pool to which the credential belongs. */
98681
98703
  acs_credential_pool_id?: string | undefined;
@@ -98873,7 +98895,7 @@ type Routes = {
98873
98895
  acs_user_id?: string | undefined;
98874
98896
  /** 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. */
98875
98897
  user_identity_id?: string | undefined;
98876
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
98898
+ /** 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. */
98877
98899
  connected_account_id: string;
98878
98900
  /** ID of the credential pool to which the credential belongs. */
98879
98901
  acs_credential_pool_id?: string | undefined;
@@ -99005,7 +99027,7 @@ type Routes = {
99005
99027
  acs_user_id?: string | undefined;
99006
99028
  /** 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. */
99007
99029
  user_identity_id?: string | undefined;
99008
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
99030
+ /** 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. */
99009
99031
  connected_account_id: string;
99010
99032
  /** ID of the credential pool to which the credential belongs. */
99011
99033
  acs_credential_pool_id?: string | undefined;
@@ -99215,7 +99237,7 @@ type Routes = {
99215
99237
  acs_user_id?: string | undefined;
99216
99238
  /** 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. */
99217
99239
  user_identity_id?: string | undefined;
99218
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
99240
+ /** 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. */
99219
99241
  connected_account_id: string;
99220
99242
  /** ID of the credential pool to which the credential belongs. */
99221
99243
  acs_credential_pool_id?: string | undefined;
@@ -100244,7 +100266,7 @@ type Routes = {
100244
100266
  acs_user_id?: string | undefined;
100245
100267
  /** 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. */
100246
100268
  user_identity_id?: string | undefined;
100247
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100269
+ /** 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. */
100248
100270
  connected_account_id: string;
100249
100271
  /** ID of the credential pool to which the credential belongs. */
100250
100272
  acs_credential_pool_id?: string | undefined;
@@ -100376,7 +100398,7 @@ type Routes = {
100376
100398
  acs_user_id?: string | undefined;
100377
100399
  /** 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. */
100378
100400
  user_identity_id?: string | undefined;
100379
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100401
+ /** 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. */
100380
100402
  connected_account_id: string;
100381
100403
  /** ID of the credential pool to which the credential belongs. */
100382
100404
  acs_credential_pool_id?: string | undefined;
@@ -100574,7 +100596,7 @@ type Routes = {
100574
100596
  acs_user_id?: string | undefined;
100575
100597
  /** 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. */
100576
100598
  user_identity_id?: string | undefined;
100577
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100599
+ /** 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. */
100578
100600
  connected_account_id: string;
100579
100601
  /** ID of the credential pool to which the credential belongs. */
100580
100602
  acs_credential_pool_id?: string | undefined;
@@ -100706,7 +100728,7 @@ type Routes = {
100706
100728
  acs_user_id?: string | undefined;
100707
100729
  /** 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. */
100708
100730
  user_identity_id?: string | undefined;
100709
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100731
+ /** 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. */
100710
100732
  connected_account_id: string;
100711
100733
  /** ID of the credential pool to which the credential belongs. */
100712
100734
  acs_credential_pool_id?: string | undefined;
@@ -100916,7 +100938,7 @@ type Routes = {
100916
100938
  acs_user_id?: string | undefined;
100917
100939
  /** 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. */
100918
100940
  user_identity_id?: string | undefined;
100919
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
100941
+ /** 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. */
100920
100942
  connected_account_id: string;
100921
100943
  /** ID of the credential pool to which the credential belongs. */
100922
100944
  acs_credential_pool_id?: string | undefined;
@@ -102001,7 +102023,7 @@ type Routes = {
102001
102023
  acs_user_id?: string | undefined;
102002
102024
  /** 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. */
102003
102025
  user_identity_id?: string | undefined;
102004
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102026
+ /** 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. */
102005
102027
  connected_account_id: string;
102006
102028
  /** ID of the credential pool to which the credential belongs. */
102007
102029
  acs_credential_pool_id?: string | undefined;
@@ -102133,7 +102155,7 @@ type Routes = {
102133
102155
  acs_user_id?: string | undefined;
102134
102156
  /** 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. */
102135
102157
  user_identity_id?: string | undefined;
102136
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102158
+ /** 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. */
102137
102159
  connected_account_id: string;
102138
102160
  /** ID of the credential pool to which the credential belongs. */
102139
102161
  acs_credential_pool_id?: string | undefined;
@@ -102331,7 +102353,7 @@ type Routes = {
102331
102353
  acs_user_id?: string | undefined;
102332
102354
  /** 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. */
102333
102355
  user_identity_id?: string | undefined;
102334
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102356
+ /** 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. */
102335
102357
  connected_account_id: string;
102336
102358
  /** ID of the credential pool to which the credential belongs. */
102337
102359
  acs_credential_pool_id?: string | undefined;
@@ -102463,7 +102485,7 @@ type Routes = {
102463
102485
  acs_user_id?: string | undefined;
102464
102486
  /** 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. */
102465
102487
  user_identity_id?: string | undefined;
102466
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102488
+ /** 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. */
102467
102489
  connected_account_id: string;
102468
102490
  /** ID of the credential pool to which the credential belongs. */
102469
102491
  acs_credential_pool_id?: string | undefined;
@@ -102673,7 +102695,7 @@ type Routes = {
102673
102695
  acs_user_id?: string | undefined;
102674
102696
  /** 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. */
102675
102697
  user_identity_id?: string | undefined;
102676
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
102698
+ /** 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. */
102677
102699
  connected_account_id: string;
102678
102700
  /** ID of the credential pool to which the credential belongs. */
102679
102701
  acs_credential_pool_id?: string | undefined;
@@ -104923,7 +104945,7 @@ type Routes = {
104923
104945
  acs_user_id?: string | undefined;
104924
104946
  /** 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. */
104925
104947
  user_identity_id?: string | undefined;
104926
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
104948
+ /** 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. */
104927
104949
  connected_account_id: string;
104928
104950
  /** ID of the credential pool to which the credential belongs. */
104929
104951
  acs_credential_pool_id?: string | undefined;
@@ -105055,7 +105077,7 @@ type Routes = {
105055
105077
  acs_user_id?: string | undefined;
105056
105078
  /** 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. */
105057
105079
  user_identity_id?: string | undefined;
105058
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
105080
+ /** 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. */
105059
105081
  connected_account_id: string;
105060
105082
  /** ID of the credential pool to which the credential belongs. */
105061
105083
  acs_credential_pool_id?: string | undefined;
@@ -105253,7 +105275,7 @@ type Routes = {
105253
105275
  acs_user_id?: string | undefined;
105254
105276
  /** 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. */
105255
105277
  user_identity_id?: string | undefined;
105256
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
105278
+ /** 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. */
105257
105279
  connected_account_id: string;
105258
105280
  /** ID of the credential pool to which the credential belongs. */
105259
105281
  acs_credential_pool_id?: string | undefined;
@@ -105385,7 +105407,7 @@ type Routes = {
105385
105407
  acs_user_id?: string | undefined;
105386
105408
  /** 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. */
105387
105409
  user_identity_id?: string | undefined;
105388
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
105410
+ /** 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. */
105389
105411
  connected_account_id: string;
105390
105412
  /** ID of the credential pool to which the credential belongs. */
105391
105413
  acs_credential_pool_id?: string | undefined;
@@ -105595,7 +105617,7 @@ type Routes = {
105595
105617
  acs_user_id?: string | undefined;
105596
105618
  /** 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. */
105597
105619
  user_identity_id?: string | undefined;
105598
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
105620
+ /** 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. */
105599
105621
  connected_account_id: string;
105600
105622
  /** ID of the credential pool to which the credential belongs. */
105601
105623
  acs_credential_pool_id?: string | undefined;
@@ -109765,6 +109787,10 @@ type Routes = {
109765
109787
  event_type: 'lock.locked';
109766
109788
  /** ID of the access code that was used to lock the device. */
109767
109789
  access_code_id?: string | undefined;
109790
+ /**
109791
+ 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.
109792
+ */
109793
+ code?: string | undefined;
109768
109794
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
109769
109795
  access_code_is_managed?: boolean | undefined;
109770
109796
  /** 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). */
@@ -109805,6 +109831,10 @@ type Routes = {
109805
109831
  event_type: 'lock.unlocked';
109806
109832
  /** ID of the access code that was used to unlock the affected device. */
109807
109833
  access_code_id?: string | undefined;
109834
+ /**
109835
+ 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.
109836
+ */
109837
+ code?: string | undefined;
109808
109838
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
109809
109839
  access_code_is_managed?: boolean | undefined;
109810
109840
  /** 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). */
@@ -111586,7 +111616,7 @@ type Routes = {
111586
111616
  acs_user_id?: string | undefined;
111587
111617
  /** 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. */
111588
111618
  user_identity_id?: string | undefined;
111589
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
111619
+ /** 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. */
111590
111620
  connected_account_id: string;
111591
111621
  /** ID of the credential pool to which the credential belongs. */
111592
111622
  acs_credential_pool_id?: string | undefined;
@@ -111755,7 +111785,7 @@ type Routes = {
111755
111785
  acs_user_id?: string | undefined;
111756
111786
  /** 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. */
111757
111787
  user_identity_id?: string | undefined;
111758
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
111788
+ /** 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. */
111759
111789
  connected_account_id: string;
111760
111790
  /** ID of the credential pool to which the credential belongs. */
111761
111791
  acs_credential_pool_id?: string | undefined;
@@ -114853,7 +114883,7 @@ type Routes = {
114853
114883
  acs_user_id?: string | undefined;
114854
114884
  /** 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. */
114855
114885
  user_identity_id?: string | undefined;
114856
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
114886
+ /** 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. */
114857
114887
  connected_account_id: string;
114858
114888
  /** ID of the credential pool to which the credential belongs. */
114859
114889
  acs_credential_pool_id?: string | undefined;
@@ -114985,7 +115015,7 @@ type Routes = {
114985
115015
  acs_user_id?: string | undefined;
114986
115016
  /** 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. */
114987
115017
  user_identity_id?: string | undefined;
114988
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
115018
+ /** 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. */
114989
115019
  connected_account_id: string;
114990
115020
  /** ID of the credential pool to which the credential belongs. */
114991
115021
  acs_credential_pool_id?: string | undefined;
@@ -115183,7 +115213,7 @@ type Routes = {
115183
115213
  acs_user_id?: string | undefined;
115184
115214
  /** 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. */
115185
115215
  user_identity_id?: string | undefined;
115186
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
115216
+ /** 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. */
115187
115217
  connected_account_id: string;
115188
115218
  /** ID of the credential pool to which the credential belongs. */
115189
115219
  acs_credential_pool_id?: string | undefined;
@@ -115315,7 +115345,7 @@ type Routes = {
115315
115345
  acs_user_id?: string | undefined;
115316
115346
  /** 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. */
115317
115347
  user_identity_id?: string | undefined;
115318
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
115348
+ /** 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. */
115319
115349
  connected_account_id: string;
115320
115350
  /** ID of the credential pool to which the credential belongs. */
115321
115351
  acs_credential_pool_id?: string | undefined;
@@ -115525,7 +115555,7 @@ type Routes = {
115525
115555
  acs_user_id?: string | undefined;
115526
115556
  /** 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. */
115527
115557
  user_identity_id?: string | undefined;
115528
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
115558
+ /** 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. */
115529
115559
  connected_account_id: string;
115530
115560
  /** ID of the credential pool to which the credential belongs. */
115531
115561
  acs_credential_pool_id?: string | undefined;
@@ -116539,7 +116569,7 @@ type Routes = {
116539
116569
  acs_user_id?: string | undefined;
116540
116570
  /** 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. */
116541
116571
  user_identity_id?: string | undefined;
116542
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
116572
+ /** 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. */
116543
116573
  connected_account_id: string;
116544
116574
  /** ID of the credential pool to which the credential belongs. */
116545
116575
  acs_credential_pool_id?: string | undefined;
@@ -116671,7 +116701,7 @@ type Routes = {
116671
116701
  acs_user_id?: string | undefined;
116672
116702
  /** 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. */
116673
116703
  user_identity_id?: string | undefined;
116674
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
116704
+ /** 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. */
116675
116705
  connected_account_id: string;
116676
116706
  /** ID of the credential pool to which the credential belongs. */
116677
116707
  acs_credential_pool_id?: string | undefined;
@@ -116869,7 +116899,7 @@ type Routes = {
116869
116899
  acs_user_id?: string | undefined;
116870
116900
  /** 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. */
116871
116901
  user_identity_id?: string | undefined;
116872
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
116902
+ /** 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. */
116873
116903
  connected_account_id: string;
116874
116904
  /** ID of the credential pool to which the credential belongs. */
116875
116905
  acs_credential_pool_id?: string | undefined;
@@ -117001,7 +117031,7 @@ type Routes = {
117001
117031
  acs_user_id?: string | undefined;
117002
117032
  /** 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. */
117003
117033
  user_identity_id?: string | undefined;
117004
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
117034
+ /** 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. */
117005
117035
  connected_account_id: string;
117006
117036
  /** ID of the credential pool to which the credential belongs. */
117007
117037
  acs_credential_pool_id?: string | undefined;
@@ -117211,7 +117241,7 @@ type Routes = {
117211
117241
  acs_user_id?: string | undefined;
117212
117242
  /** 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. */
117213
117243
  user_identity_id?: string | undefined;
117214
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
117244
+ /** 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. */
117215
117245
  connected_account_id: string;
117216
117246
  /** ID of the credential pool to which the credential belongs. */
117217
117247
  acs_credential_pool_id?: string | undefined;
@@ -118331,7 +118361,7 @@ type Routes = {
118331
118361
  acs_user_id?: string | undefined;
118332
118362
  /** 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. */
118333
118363
  user_identity_id?: string | undefined;
118334
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
118364
+ /** 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. */
118335
118365
  connected_account_id: string;
118336
118366
  /** ID of the credential pool to which the credential belongs. */
118337
118367
  acs_credential_pool_id?: string | undefined;
@@ -118463,7 +118493,7 @@ type Routes = {
118463
118493
  acs_user_id?: string | undefined;
118464
118494
  /** 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. */
118465
118495
  user_identity_id?: string | undefined;
118466
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
118496
+ /** 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. */
118467
118497
  connected_account_id: string;
118468
118498
  /** ID of the credential pool to which the credential belongs. */
118469
118499
  acs_credential_pool_id?: string | undefined;
@@ -118661,7 +118691,7 @@ type Routes = {
118661
118691
  acs_user_id?: string | undefined;
118662
118692
  /** 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. */
118663
118693
  user_identity_id?: string | undefined;
118664
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
118694
+ /** 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. */
118665
118695
  connected_account_id: string;
118666
118696
  /** ID of the credential pool to which the credential belongs. */
118667
118697
  acs_credential_pool_id?: string | undefined;
@@ -118793,7 +118823,7 @@ type Routes = {
118793
118823
  acs_user_id?: string | undefined;
118794
118824
  /** 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. */
118795
118825
  user_identity_id?: string | undefined;
118796
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
118826
+ /** 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. */
118797
118827
  connected_account_id: string;
118798
118828
  /** ID of the credential pool to which the credential belongs. */
118799
118829
  acs_credential_pool_id?: string | undefined;
@@ -119003,7 +119033,7 @@ type Routes = {
119003
119033
  acs_user_id?: string | undefined;
119004
119034
  /** 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. */
119005
119035
  user_identity_id?: string | undefined;
119006
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
119036
+ /** 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. */
119007
119037
  connected_account_id: string;
119008
119038
  /** ID of the credential pool to which the credential belongs. */
119009
119039
  acs_credential_pool_id?: string | undefined;
@@ -121492,7 +121522,7 @@ type Routes = {
121492
121522
  acs_user_id?: string | undefined;
121493
121523
  /** 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. */
121494
121524
  user_identity_id?: string | undefined;
121495
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
121525
+ /** 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. */
121496
121526
  connected_account_id: string;
121497
121527
  /** ID of the credential pool to which the credential belongs. */
121498
121528
  acs_credential_pool_id?: string | undefined;
@@ -121624,7 +121654,7 @@ type Routes = {
121624
121654
  acs_user_id?: string | undefined;
121625
121655
  /** 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. */
121626
121656
  user_identity_id?: string | undefined;
121627
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
121657
+ /** 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. */
121628
121658
  connected_account_id: string;
121629
121659
  /** ID of the credential pool to which the credential belongs. */
121630
121660
  acs_credential_pool_id?: string | undefined;
@@ -121822,7 +121852,7 @@ type Routes = {
121822
121852
  acs_user_id?: string | undefined;
121823
121853
  /** 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. */
121824
121854
  user_identity_id?: string | undefined;
121825
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
121855
+ /** 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. */
121826
121856
  connected_account_id: string;
121827
121857
  /** ID of the credential pool to which the credential belongs. */
121828
121858
  acs_credential_pool_id?: string | undefined;
@@ -121954,7 +121984,7 @@ type Routes = {
121954
121984
  acs_user_id?: string | undefined;
121955
121985
  /** 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. */
121956
121986
  user_identity_id?: string | undefined;
121957
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
121987
+ /** 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. */
121958
121988
  connected_account_id: string;
121959
121989
  /** ID of the credential pool to which the credential belongs. */
121960
121990
  acs_credential_pool_id?: string | undefined;
@@ -122164,7 +122194,7 @@ type Routes = {
122164
122194
  acs_user_id?: string | undefined;
122165
122195
  /** 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. */
122166
122196
  user_identity_id?: string | undefined;
122167
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
122197
+ /** 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. */
122168
122198
  connected_account_id: string;
122169
122199
  /** ID of the credential pool to which the credential belongs. */
122170
122200
  acs_credential_pool_id?: string | undefined;
@@ -123182,7 +123212,7 @@ type Routes = {
123182
123212
  acs_user_id?: string | undefined;
123183
123213
  /** 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. */
123184
123214
  user_identity_id?: string | undefined;
123185
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
123215
+ /** 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. */
123186
123216
  connected_account_id: string;
123187
123217
  /** ID of the credential pool to which the credential belongs. */
123188
123218
  acs_credential_pool_id?: string | undefined;
@@ -123314,7 +123344,7 @@ type Routes = {
123314
123344
  acs_user_id?: string | undefined;
123315
123345
  /** 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. */
123316
123346
  user_identity_id?: string | undefined;
123317
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
123347
+ /** 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. */
123318
123348
  connected_account_id: string;
123319
123349
  /** ID of the credential pool to which the credential belongs. */
123320
123350
  acs_credential_pool_id?: string | undefined;
@@ -123512,7 +123542,7 @@ type Routes = {
123512
123542
  acs_user_id?: string | undefined;
123513
123543
  /** 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. */
123514
123544
  user_identity_id?: string | undefined;
123515
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
123545
+ /** 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. */
123516
123546
  connected_account_id: string;
123517
123547
  /** ID of the credential pool to which the credential belongs. */
123518
123548
  acs_credential_pool_id?: string | undefined;
@@ -123644,7 +123674,7 @@ type Routes = {
123644
123674
  acs_user_id?: string | undefined;
123645
123675
  /** 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. */
123646
123676
  user_identity_id?: string | undefined;
123647
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
123677
+ /** 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. */
123648
123678
  connected_account_id: string;
123649
123679
  /** ID of the credential pool to which the credential belongs. */
123650
123680
  acs_credential_pool_id?: string | undefined;
@@ -123854,7 +123884,7 @@ type Routes = {
123854
123884
  acs_user_id?: string | undefined;
123855
123885
  /** 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. */
123856
123886
  user_identity_id?: string | undefined;
123857
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
123887
+ /** 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. */
123858
123888
  connected_account_id: string;
123859
123889
  /** ID of the credential pool to which the credential belongs. */
123860
123890
  acs_credential_pool_id?: string | undefined;
@@ -127801,7 +127831,7 @@ type Routes = {
127801
127831
  acs_user_id?: string | undefined;
127802
127832
  /** 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. */
127803
127833
  user_identity_id?: string | undefined;
127804
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
127834
+ /** 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. */
127805
127835
  connected_account_id: string;
127806
127836
  /** ID of the credential pool to which the credential belongs. */
127807
127837
  acs_credential_pool_id?: string | undefined;
@@ -127933,7 +127963,7 @@ type Routes = {
127933
127963
  acs_user_id?: string | undefined;
127934
127964
  /** 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. */
127935
127965
  user_identity_id?: string | undefined;
127936
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
127966
+ /** 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. */
127937
127967
  connected_account_id: string;
127938
127968
  /** ID of the credential pool to which the credential belongs. */
127939
127969
  acs_credential_pool_id?: string | undefined;
@@ -128131,7 +128161,7 @@ type Routes = {
128131
128161
  acs_user_id?: string | undefined;
128132
128162
  /** 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. */
128133
128163
  user_identity_id?: string | undefined;
128134
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
128164
+ /** 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. */
128135
128165
  connected_account_id: string;
128136
128166
  /** ID of the credential pool to which the credential belongs. */
128137
128167
  acs_credential_pool_id?: string | undefined;
@@ -128263,7 +128293,7 @@ type Routes = {
128263
128293
  acs_user_id?: string | undefined;
128264
128294
  /** 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. */
128265
128295
  user_identity_id?: string | undefined;
128266
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
128296
+ /** 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. */
128267
128297
  connected_account_id: string;
128268
128298
  /** ID of the credential pool to which the credential belongs. */
128269
128299
  acs_credential_pool_id?: string | undefined;
@@ -128473,7 +128503,7 @@ type Routes = {
128473
128503
  acs_user_id?: string | undefined;
128474
128504
  /** 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. */
128475
128505
  user_identity_id?: string | undefined;
128476
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
128506
+ /** 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. */
128477
128507
  connected_account_id: string;
128478
128508
  /** ID of the credential pool to which the credential belongs. */
128479
128509
  acs_credential_pool_id?: string | undefined;
@@ -129686,7 +129716,7 @@ type Routes = {
129686
129716
  acs_user_id?: string | undefined;
129687
129717
  /** 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. */
129688
129718
  user_identity_id?: string | undefined;
129689
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
129719
+ /** 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. */
129690
129720
  connected_account_id: string;
129691
129721
  /** ID of the credential pool to which the credential belongs. */
129692
129722
  acs_credential_pool_id?: string | undefined;
@@ -129818,7 +129848,7 @@ type Routes = {
129818
129848
  acs_user_id?: string | undefined;
129819
129849
  /** 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. */
129820
129850
  user_identity_id?: string | undefined;
129821
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
129851
+ /** 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. */
129822
129852
  connected_account_id: string;
129823
129853
  /** ID of the credential pool to which the credential belongs. */
129824
129854
  acs_credential_pool_id?: string | undefined;
@@ -130016,7 +130046,7 @@ type Routes = {
130016
130046
  acs_user_id?: string | undefined;
130017
130047
  /** 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. */
130018
130048
  user_identity_id?: string | undefined;
130019
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
130049
+ /** 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. */
130020
130050
  connected_account_id: string;
130021
130051
  /** ID of the credential pool to which the credential belongs. */
130022
130052
  acs_credential_pool_id?: string | undefined;
@@ -130148,7 +130178,7 @@ type Routes = {
130148
130178
  acs_user_id?: string | undefined;
130149
130179
  /** 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. */
130150
130180
  user_identity_id?: string | undefined;
130151
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
130181
+ /** 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. */
130152
130182
  connected_account_id: string;
130153
130183
  /** ID of the credential pool to which the credential belongs. */
130154
130184
  acs_credential_pool_id?: string | undefined;
@@ -130358,7 +130388,7 @@ type Routes = {
130358
130388
  acs_user_id?: string | undefined;
130359
130389
  /** 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. */
130360
130390
  user_identity_id?: string | undefined;
130361
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
130391
+ /** 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. */
130362
130392
  connected_account_id: string;
130363
130393
  /** ID of the credential pool to which the credential belongs. */
130364
130394
  acs_credential_pool_id?: string | undefined;
@@ -131399,7 +131429,7 @@ type Routes = {
131399
131429
  acs_user_id?: string | undefined;
131400
131430
  /** 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. */
131401
131431
  user_identity_id?: string | undefined;
131402
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
131432
+ /** 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. */
131403
131433
  connected_account_id: string;
131404
131434
  /** ID of the credential pool to which the credential belongs. */
131405
131435
  acs_credential_pool_id?: string | undefined;
@@ -131531,7 +131561,7 @@ type Routes = {
131531
131561
  acs_user_id?: string | undefined;
131532
131562
  /** 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. */
131533
131563
  user_identity_id?: string | undefined;
131534
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
131564
+ /** 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. */
131535
131565
  connected_account_id: string;
131536
131566
  /** ID of the credential pool to which the credential belongs. */
131537
131567
  acs_credential_pool_id?: string | undefined;
@@ -131729,7 +131759,7 @@ type Routes = {
131729
131759
  acs_user_id?: string | undefined;
131730
131760
  /** 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. */
131731
131761
  user_identity_id?: string | undefined;
131732
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
131762
+ /** 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. */
131733
131763
  connected_account_id: string;
131734
131764
  /** ID of the credential pool to which the credential belongs. */
131735
131765
  acs_credential_pool_id?: string | undefined;
@@ -131861,7 +131891,7 @@ type Routes = {
131861
131891
  acs_user_id?: string | undefined;
131862
131892
  /** 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. */
131863
131893
  user_identity_id?: string | undefined;
131864
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
131894
+ /** 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. */
131865
131895
  connected_account_id: string;
131866
131896
  /** ID of the credential pool to which the credential belongs. */
131867
131897
  acs_credential_pool_id?: string | undefined;
@@ -132071,7 +132101,7 @@ type Routes = {
132071
132101
  acs_user_id?: string | undefined;
132072
132102
  /** 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. */
132073
132103
  user_identity_id?: string | undefined;
132074
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
132104
+ /** 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. */
132075
132105
  connected_account_id: string;
132076
132106
  /** ID of the credential pool to which the credential belongs. */
132077
132107
  acs_credential_pool_id?: string | undefined;
@@ -133224,7 +133254,7 @@ type Routes = {
133224
133254
  acs_user_id?: string | undefined;
133225
133255
  /** 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. */
133226
133256
  user_identity_id?: string | undefined;
133227
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
133257
+ /** 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. */
133228
133258
  connected_account_id: string;
133229
133259
  /** ID of the credential pool to which the credential belongs. */
133230
133260
  acs_credential_pool_id?: string | undefined;
@@ -133356,7 +133386,7 @@ type Routes = {
133356
133386
  acs_user_id?: string | undefined;
133357
133387
  /** 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. */
133358
133388
  user_identity_id?: string | undefined;
133359
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
133389
+ /** 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. */
133360
133390
  connected_account_id: string;
133361
133391
  /** ID of the credential pool to which the credential belongs. */
133362
133392
  acs_credential_pool_id?: string | undefined;
@@ -133554,7 +133584,7 @@ type Routes = {
133554
133584
  acs_user_id?: string | undefined;
133555
133585
  /** 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. */
133556
133586
  user_identity_id?: string | undefined;
133557
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
133587
+ /** 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. */
133558
133588
  connected_account_id: string;
133559
133589
  /** ID of the credential pool to which the credential belongs. */
133560
133590
  acs_credential_pool_id?: string | undefined;
@@ -133686,7 +133716,7 @@ type Routes = {
133686
133716
  acs_user_id?: string | undefined;
133687
133717
  /** 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. */
133688
133718
  user_identity_id?: string | undefined;
133689
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
133719
+ /** 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. */
133690
133720
  connected_account_id: string;
133691
133721
  /** ID of the credential pool to which the credential belongs. */
133692
133722
  acs_credential_pool_id?: string | undefined;
@@ -133896,7 +133926,7 @@ type Routes = {
133896
133926
  acs_user_id?: string | undefined;
133897
133927
  /** 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. */
133898
133928
  user_identity_id?: string | undefined;
133899
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
133929
+ /** 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. */
133900
133930
  connected_account_id: string;
133901
133931
  /** ID of the credential pool to which the credential belongs. */
133902
133932
  acs_credential_pool_id?: string | undefined;
@@ -141678,7 +141708,7 @@ type Routes = {
141678
141708
  is_managed: true;
141679
141709
  }[] | undefined;
141680
141710
  acs_encoders?: {
141681
- /** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners. */
141711
+ /** ID of the [encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners). */
141682
141712
  acs_encoder_id: string;
141683
141713
  /** 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). */
141684
141714
  acs_system_id: string;
@@ -141844,7 +141874,7 @@ type Routes = {
141844
141874
  acs_user_id?: string | undefined;
141845
141875
  /** 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. */
141846
141876
  user_identity_id?: string | undefined;
141847
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
141877
+ /** 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. */
141848
141878
  connected_account_id: string;
141849
141879
  /** ID of the credential pool to which the credential belongs. */
141850
141880
  acs_credential_pool_id?: string | undefined;
@@ -141976,7 +142006,7 @@ type Routes = {
141976
142006
  acs_user_id?: string | undefined;
141977
142007
  /** 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. */
141978
142008
  user_identity_id?: string | undefined;
141979
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
142009
+ /** 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. */
141980
142010
  connected_account_id: string;
141981
142011
  /** ID of the credential pool to which the credential belongs. */
141982
142012
  acs_credential_pool_id?: string | undefined;
@@ -142174,7 +142204,7 @@ type Routes = {
142174
142204
  acs_user_id?: string | undefined;
142175
142205
  /** 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. */
142176
142206
  user_identity_id?: string | undefined;
142177
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
142207
+ /** 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. */
142178
142208
  connected_account_id: string;
142179
142209
  /** ID of the credential pool to which the credential belongs. */
142180
142210
  acs_credential_pool_id?: string | undefined;
@@ -142306,7 +142336,7 @@ type Routes = {
142306
142336
  acs_user_id?: string | undefined;
142307
142337
  /** 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. */
142308
142338
  user_identity_id?: string | undefined;
142309
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
142339
+ /** 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. */
142310
142340
  connected_account_id: string;
142311
142341
  /** ID of the credential pool to which the credential belongs. */
142312
142342
  acs_credential_pool_id?: string | undefined;
@@ -142516,7 +142546,7 @@ type Routes = {
142516
142546
  acs_user_id?: string | undefined;
142517
142547
  /** 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. */
142518
142548
  user_identity_id?: string | undefined;
142519
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
142549
+ /** 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. */
142520
142550
  connected_account_id: string;
142521
142551
  /** ID of the credential pool to which the credential belongs. */
142522
142552
  acs_credential_pool_id?: string | undefined;
@@ -147323,6 +147353,10 @@ type Routes = {
147323
147353
  event_type: 'lock.locked';
147324
147354
  /** ID of the access code that was used to lock the device. */
147325
147355
  access_code_id?: string | undefined;
147356
+ /**
147357
+ 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.
147358
+ */
147359
+ code?: string | undefined;
147326
147360
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
147327
147361
  access_code_is_managed?: boolean | undefined;
147328
147362
  /** 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). */
@@ -147363,6 +147397,10 @@ type Routes = {
147363
147397
  event_type: 'lock.unlocked';
147364
147398
  /** ID of the access code that was used to unlock the affected device. */
147365
147399
  access_code_id?: string | undefined;
147400
+ /**
147401
+ 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.
147402
+ */
147403
+ code?: string | undefined;
147366
147404
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
147367
147405
  access_code_is_managed?: boolean | undefined;
147368
147406
  /** 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). */
@@ -147857,7 +147895,7 @@ type Routes = {
147857
147895
  acs_user_id?: string | undefined;
147858
147896
  /** 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. */
147859
147897
  user_identity_id?: string | undefined;
147860
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
147898
+ /** 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. */
147861
147899
  connected_account_id: string;
147862
147900
  /** ID of the credential pool to which the credential belongs. */
147863
147901
  acs_credential_pool_id?: string | undefined;
@@ -147990,7 +148028,7 @@ type Routes = {
147990
148028
  acs_user_id?: string | undefined;
147991
148029
  /** 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. */
147992
148030
  user_identity_id?: string | undefined;
147993
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
148031
+ /** 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. */
147994
148032
  connected_account_id: string;
147995
148033
  /** ID of the credential pool to which the credential belongs. */
147996
148034
  acs_credential_pool_id?: string | undefined;
@@ -149341,7 +149379,7 @@ type Routes = {
149341
149379
  acs_user_id?: string | undefined;
149342
149380
  /** 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. */
149343
149381
  user_identity_id?: string | undefined;
149344
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
149382
+ /** 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. */
149345
149383
  connected_account_id: string;
149346
149384
  /** ID of the credential pool to which the credential belongs. */
149347
149385
  acs_credential_pool_id?: string | undefined;
@@ -149473,7 +149511,7 @@ type Routes = {
149473
149511
  acs_user_id?: string | undefined;
149474
149512
  /** 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. */
149475
149513
  user_identity_id?: string | undefined;
149476
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
149514
+ /** 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. */
149477
149515
  connected_account_id: string;
149478
149516
  /** ID of the credential pool to which the credential belongs. */
149479
149517
  acs_credential_pool_id?: string | undefined;
@@ -149671,7 +149709,7 @@ type Routes = {
149671
149709
  acs_user_id?: string | undefined;
149672
149710
  /** 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. */
149673
149711
  user_identity_id?: string | undefined;
149674
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
149712
+ /** 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. */
149675
149713
  connected_account_id: string;
149676
149714
  /** ID of the credential pool to which the credential belongs. */
149677
149715
  acs_credential_pool_id?: string | undefined;
@@ -149803,7 +149841,7 @@ type Routes = {
149803
149841
  acs_user_id?: string | undefined;
149804
149842
  /** 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. */
149805
149843
  user_identity_id?: string | undefined;
149806
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
149844
+ /** 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. */
149807
149845
  connected_account_id: string;
149808
149846
  /** ID of the credential pool to which the credential belongs. */
149809
149847
  acs_credential_pool_id?: string | undefined;
@@ -150013,7 +150051,7 @@ type Routes = {
150013
150051
  acs_user_id?: string | undefined;
150014
150052
  /** 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. */
150015
150053
  user_identity_id?: string | undefined;
150016
- /** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
150054
+ /** 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. */
150017
150055
  connected_account_id: string;
150018
150056
  /** ID of the credential pool to which the credential belongs. */
150019
150057
  acs_credential_pool_id?: string | undefined;