@seamapi/types 1.424.0 → 1.425.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 (29) hide show
  1. package/dist/connect.cjs +197 -10
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +582 -6
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
  8. package/lib/seam/connect/models/acs/acs-credential.js +4 -0
  9. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
  11. package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
  12. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-system.js +4 -1
  14. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  15. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
  16. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
  17. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
  18. package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
  19. package/lib/seam/connect/openapi.d.ts +254 -4
  20. package/lib/seam/connect/openapi.js +178 -8
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +286 -0
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/internal/schemas.ts +1 -0
  25. package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
  26. package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
  27. package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
  28. package/src/lib/seam/connect/openapi.ts +203 -8
  29. package/src/lib/seam/connect/route-types.ts +286 -0
@@ -35,6 +35,8 @@ export interface Routes {
35
35
  is_external_modification_allowed?: boolean | undefined
36
36
  /** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
37
37
  preferred_code_length?: number | undefined
38
+ /**
39
+ * @deprecated Use `is_offline_access_code` instead. */
38
40
  use_offline_access_code?: boolean | undefined
39
41
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
40
42
  is_offline_access_code?: boolean | undefined
@@ -198,6 +200,8 @@ export interface Routes {
198
200
  acs_credential_id: string
199
201
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
200
202
  acs_user_id?: string | undefined
203
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
204
+ connected_account_id: string
201
205
  acs_credential_pool_id?: string | undefined
202
206
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
203
207
  acs_system_id: string
@@ -353,6 +357,8 @@ export interface Routes {
353
357
  acs_credential_id: string
354
358
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
355
359
  acs_user_id?: string | undefined
360
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
361
+ connected_account_id: string
356
362
  acs_credential_pool_id?: string | undefined
357
363
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
358
364
  acs_system_id: string
@@ -649,6 +655,8 @@ export interface Routes {
649
655
  acs_credential_id: string
650
656
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
651
657
  acs_user_id?: string | undefined
658
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
659
+ connected_account_id: string
652
660
  acs_credential_pool_id?: string | undefined
653
661
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
654
662
  acs_system_id: string
@@ -802,6 +810,8 @@ export interface Routes {
802
810
  acs_credential_id: string
803
811
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
804
812
  acs_user_id?: string | undefined
813
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
814
+ connected_account_id: string
805
815
  acs_credential_pool_id?: string | undefined
806
816
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
807
817
  acs_system_id: string
@@ -2138,6 +2148,8 @@ export interface Routes {
2138
2148
  allow_external_modification?: boolean | undefined
2139
2149
  /** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
2140
2150
  is_external_modification_allowed?: boolean | undefined
2151
+ /**
2152
+ * @deprecated Use `is_offline_access_code` instead. */
2141
2153
  use_offline_access_code?: boolean | undefined
2142
2154
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
2143
2155
  is_offline_access_code?: boolean | undefined
@@ -2878,6 +2890,8 @@ export interface Routes {
2878
2890
  acs_credential_id: string
2879
2891
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
2880
2892
  acs_user_id?: string | undefined
2893
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
2894
+ connected_account_id: string
2881
2895
  acs_credential_pool_id?: string | undefined
2882
2896
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
2883
2897
  acs_system_id: string
@@ -3033,6 +3047,8 @@ export interface Routes {
3033
3047
  acs_credential_id: string
3034
3048
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
3035
3049
  acs_user_id?: string | undefined
3050
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
3051
+ connected_account_id: string
3036
3052
  acs_credential_pool_id?: string | undefined
3037
3053
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
3038
3054
  acs_system_id: string
@@ -3329,6 +3345,8 @@ export interface Routes {
3329
3345
  acs_credential_id: string
3330
3346
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
3331
3347
  acs_user_id?: string | undefined
3348
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
3349
+ connected_account_id: string
3332
3350
  acs_credential_pool_id?: string | undefined
3333
3351
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
3334
3352
  acs_system_id: string
@@ -3482,6 +3500,8 @@ export interface Routes {
3482
3500
  acs_credential_id: string
3483
3501
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
3484
3502
  acs_user_id?: string | undefined
3503
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
3504
+ connected_account_id: string
3485
3505
  acs_credential_pool_id?: string | undefined
3486
3506
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
3487
3507
  acs_system_id: string
@@ -7329,6 +7349,8 @@ export interface Routes {
7329
7349
  acs_credential_id: string
7330
7350
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7331
7351
  acs_user_id?: string | undefined
7352
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7353
+ connected_account_id: string
7332
7354
  acs_credential_pool_id?: string | undefined
7333
7355
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
7334
7356
  acs_system_id: string
@@ -7484,6 +7506,8 @@ export interface Routes {
7484
7506
  acs_credential_id: string
7485
7507
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7486
7508
  acs_user_id?: string | undefined
7509
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7510
+ connected_account_id: string
7487
7511
  acs_credential_pool_id?: string | undefined
7488
7512
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
7489
7513
  acs_system_id: string
@@ -7780,6 +7804,8 @@ export interface Routes {
7780
7804
  acs_credential_id: string
7781
7805
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7782
7806
  acs_user_id?: string | undefined
7807
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7808
+ connected_account_id: string
7783
7809
  acs_credential_pool_id?: string | undefined
7784
7810
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
7785
7811
  acs_system_id: string
@@ -7933,6 +7959,8 @@ export interface Routes {
7933
7959
  acs_credential_id: string
7934
7960
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7935
7961
  acs_user_id?: string | undefined
7962
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
7963
+ connected_account_id: string
7936
7964
  acs_credential_pool_id?: string | undefined
7937
7965
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
7938
7966
  acs_system_id: string
@@ -9846,6 +9874,8 @@ export interface Routes {
9846
9874
  is_external_modification_allowed?: boolean | undefined
9847
9875
  /** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
9848
9876
  preferred_code_length?: number | undefined
9877
+ /**
9878
+ * @deprecated Use `is_offline_access_code` instead. */
9849
9879
  use_offline_access_code?: boolean | undefined
9850
9880
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
9851
9881
  is_offline_access_code?: boolean | undefined
@@ -10017,6 +10047,8 @@ export interface Routes {
10017
10047
  acs_credential_id: string
10018
10048
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
10019
10049
  acs_user_id?: string | undefined
10050
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
10051
+ connected_account_id: string
10020
10052
  acs_credential_pool_id?: string | undefined
10021
10053
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
10022
10054
  acs_system_id: string
@@ -10172,6 +10204,8 @@ export interface Routes {
10172
10204
  acs_credential_id: string
10173
10205
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
10174
10206
  acs_user_id?: string | undefined
10207
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
10208
+ connected_account_id: string
10175
10209
  acs_credential_pool_id?: string | undefined
10176
10210
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
10177
10211
  acs_system_id: string
@@ -10468,6 +10502,8 @@ export interface Routes {
10468
10502
  acs_credential_id: string
10469
10503
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
10470
10504
  acs_user_id?: string | undefined
10505
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
10506
+ connected_account_id: string
10471
10507
  acs_credential_pool_id?: string | undefined
10472
10508
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
10473
10509
  acs_system_id: string
@@ -10621,6 +10657,8 @@ export interface Routes {
10621
10657
  acs_credential_id: string
10622
10658
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
10623
10659
  acs_user_id?: string | undefined
10660
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
10661
+ connected_account_id: string
10624
10662
  acs_credential_pool_id?: string | undefined
10625
10663
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
10626
10664
  acs_system_id: string
@@ -11946,6 +11984,12 @@ export interface Routes {
11946
11984
  door_description?: string | undefined
11947
11985
  }
11948
11986
  | undefined
11987
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
11988
+ can_unlock_with_mobile_key?: boolean | undefined
11989
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
11990
+ can_unlock_with_card?: boolean | undefined
11991
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
11992
+ can_unlock_with_code?: boolean | undefined
11949
11993
  }>
11950
11994
  }
11951
11995
  }
@@ -12419,6 +12463,8 @@ export interface Routes {
12419
12463
  acs_credential_id: string
12420
12464
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12421
12465
  acs_user_id?: string | undefined
12466
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12467
+ connected_account_id: string
12422
12468
  acs_credential_pool_id?: string | undefined
12423
12469
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
12424
12470
  acs_system_id: string
@@ -12644,6 +12690,8 @@ export interface Routes {
12644
12690
  acs_credential_id: string
12645
12691
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12646
12692
  acs_user_id?: string | undefined
12693
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12694
+ connected_account_id: string
12647
12695
  acs_credential_pool_id?: string | undefined
12648
12696
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
12649
12697
  acs_system_id: string
@@ -12823,6 +12871,8 @@ export interface Routes {
12823
12871
  acs_credential_id: string
12824
12872
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12825
12873
  acs_user_id?: string | undefined
12874
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
12875
+ connected_account_id: string
12826
12876
  acs_credential_pool_id?: string | undefined
12827
12877
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
12828
12878
  acs_system_id: string
@@ -13006,6 +13056,8 @@ export interface Routes {
13006
13056
  acs_credential_id: string
13007
13057
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13008
13058
  acs_user_id?: string | undefined
13059
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13060
+ connected_account_id: string
13009
13061
  acs_credential_pool_id?: string | undefined
13010
13062
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
13011
13063
  acs_system_id: string
@@ -13196,6 +13248,8 @@ export interface Routes {
13196
13248
  acs_credential_id: string
13197
13249
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13198
13250
  acs_user_id?: string | undefined
13251
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13252
+ connected_account_id: string
13199
13253
  acs_credential_pool_id?: string | undefined
13200
13254
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
13201
13255
  acs_system_id: string
@@ -13469,6 +13523,12 @@ export interface Routes {
13469
13523
  door_description?: string | undefined
13470
13524
  }
13471
13525
  | undefined
13526
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
13527
+ can_unlock_with_mobile_key?: boolean | undefined
13528
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
13529
+ can_unlock_with_card?: boolean | undefined
13530
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
13531
+ can_unlock_with_code?: boolean | undefined
13472
13532
  }>
13473
13533
  }
13474
13534
  }
@@ -13497,6 +13557,8 @@ export interface Routes {
13497
13557
  acs_credential_id: string
13498
13558
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13499
13559
  acs_user_id?: string | undefined
13560
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13561
+ connected_account_id: string
13500
13562
  acs_credential_pool_id?: string | undefined
13501
13563
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
13502
13564
  acs_system_id: string
@@ -13664,6 +13726,8 @@ export interface Routes {
13664
13726
  acs_credential_id: string
13665
13727
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13666
13728
  acs_user_id?: string | undefined
13729
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13730
+ connected_account_id: string
13667
13731
  acs_credential_pool_id?: string | undefined
13668
13732
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
13669
13733
  acs_system_id: string
@@ -13845,6 +13909,8 @@ export interface Routes {
13845
13909
  acs_credential_id: string
13846
13910
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13847
13911
  acs_user_id?: string | undefined
13912
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
13913
+ connected_account_id: string
13848
13914
  acs_credential_pool_id?: string | undefined
13849
13915
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
13850
13916
  acs_system_id: string
@@ -14020,6 +14086,8 @@ export interface Routes {
14020
14086
  acs_credential_id: string
14021
14087
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14022
14088
  acs_user_id?: string | undefined
14089
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14090
+ connected_account_id: string
14023
14091
  acs_credential_pool_id?: string | undefined
14024
14092
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14025
14093
  acs_system_id: string
@@ -14335,6 +14403,8 @@ export interface Routes {
14335
14403
  acs_credential_id: string
14336
14404
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14337
14405
  acs_user_id?: string | undefined
14406
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14407
+ connected_account_id: string
14338
14408
  acs_credential_pool_id?: string | undefined
14339
14409
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14340
14410
  acs_system_id: string
@@ -14490,6 +14560,8 @@ export interface Routes {
14490
14560
  acs_credential_id: string
14491
14561
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14492
14562
  acs_user_id?: string | undefined
14563
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14564
+ connected_account_id: string
14493
14565
  acs_credential_pool_id?: string | undefined
14494
14566
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14495
14567
  acs_system_id: string
@@ -14786,6 +14858,8 @@ export interface Routes {
14786
14858
  acs_credential_id: string
14787
14859
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14788
14860
  acs_user_id?: string | undefined
14861
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14862
+ connected_account_id: string
14789
14863
  acs_credential_pool_id?: string | undefined
14790
14864
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14791
14865
  acs_system_id: string
@@ -14939,6 +15013,8 @@ export interface Routes {
14939
15013
  acs_credential_id: string
14940
15014
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
14941
15015
  acs_user_id?: string | undefined
15016
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15017
+ connected_account_id: string
14942
15018
  acs_credential_pool_id?: string | undefined
14943
15019
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
14944
15020
  acs_system_id: string
@@ -15839,6 +15915,8 @@ export interface Routes {
15839
15915
  acs_credential_id: string
15840
15916
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15841
15917
  acs_user_id?: string | undefined
15918
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15919
+ connected_account_id: string
15842
15920
  acs_credential_pool_id?: string | undefined
15843
15921
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
15844
15922
  acs_system_id: string
@@ -15994,6 +16072,8 @@ export interface Routes {
15994
16072
  acs_credential_id: string
15995
16073
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
15996
16074
  acs_user_id?: string | undefined
16075
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
16076
+ connected_account_id: string
15997
16077
  acs_credential_pool_id?: string | undefined
15998
16078
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
15999
16079
  acs_system_id: string
@@ -16290,6 +16370,8 @@ export interface Routes {
16290
16370
  acs_credential_id: string
16291
16371
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
16292
16372
  acs_user_id?: string | undefined
16373
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
16374
+ connected_account_id: string
16293
16375
  acs_credential_pool_id?: string | undefined
16294
16376
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
16295
16377
  acs_system_id: string
@@ -16443,6 +16525,8 @@ export interface Routes {
16443
16525
  acs_credential_id: string
16444
16526
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
16445
16527
  acs_user_id?: string | undefined
16528
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
16529
+ connected_account_id: string
16446
16530
  acs_credential_pool_id?: string | undefined
16447
16531
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
16448
16532
  acs_system_id: string
@@ -17442,6 +17526,8 @@ export interface Routes {
17442
17526
  acs_credential_id: string
17443
17527
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
17444
17528
  acs_user_id?: string | undefined
17529
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
17530
+ connected_account_id: string
17445
17531
  acs_credential_pool_id?: string | undefined
17446
17532
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
17447
17533
  acs_system_id: string
@@ -17597,6 +17683,8 @@ export interface Routes {
17597
17683
  acs_credential_id: string
17598
17684
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
17599
17685
  acs_user_id?: string | undefined
17686
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
17687
+ connected_account_id: string
17600
17688
  acs_credential_pool_id?: string | undefined
17601
17689
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
17602
17690
  acs_system_id: string
@@ -17893,6 +17981,8 @@ export interface Routes {
17893
17981
  acs_credential_id: string
17894
17982
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
17895
17983
  acs_user_id?: string | undefined
17984
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
17985
+ connected_account_id: string
17896
17986
  acs_credential_pool_id?: string | undefined
17897
17987
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
17898
17988
  acs_system_id: string
@@ -18046,6 +18136,8 @@ export interface Routes {
18046
18136
  acs_credential_id: string
18047
18137
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
18048
18138
  acs_user_id?: string | undefined
18139
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
18140
+ connected_account_id: string
18049
18141
  acs_credential_pool_id?: string | undefined
18050
18142
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
18051
18143
  acs_system_id: string
@@ -18995,6 +19087,12 @@ export interface Routes {
18995
19087
  door_description?: string | undefined
18996
19088
  }
18997
19089
  | undefined
19090
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
19091
+ can_unlock_with_mobile_key?: boolean | undefined
19092
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
19093
+ can_unlock_with_card?: boolean | undefined
19094
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
19095
+ can_unlock_with_code?: boolean | undefined
18998
19096
  }
18999
19097
  }
19000
19098
  }
@@ -19148,6 +19246,12 @@ export interface Routes {
19148
19246
  door_description?: string | undefined
19149
19247
  }
19150
19248
  | undefined
19249
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
19250
+ can_unlock_with_mobile_key?: boolean | undefined
19251
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
19252
+ can_unlock_with_card?: boolean | undefined
19253
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
19254
+ can_unlock_with_code?: boolean | undefined
19151
19255
  }>
19152
19256
  }
19153
19257
  }
@@ -19169,6 +19273,8 @@ export interface Routes {
19169
19273
  acs_credential_id: string
19170
19274
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19171
19275
  acs_user_id?: string | undefined
19276
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
19277
+ connected_account_id: string
19172
19278
  acs_credential_pool_id?: string | undefined
19173
19279
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
19174
19280
  acs_system_id: string
@@ -20830,6 +20936,12 @@ export interface Routes {
20830
20936
  door_description?: string | undefined
20831
20937
  }
20832
20938
  | undefined
20939
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
20940
+ can_unlock_with_mobile_key?: boolean | undefined
20941
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
20942
+ can_unlock_with_card?: boolean | undefined
20943
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
20944
+ can_unlock_with_code?: boolean | undefined
20833
20945
  }>
20834
20946
  }
20835
20947
  }
@@ -21612,6 +21724,8 @@ export interface Routes {
21612
21724
  acs_credential_id: string
21613
21725
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
21614
21726
  acs_user_id?: string | undefined
21727
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
21728
+ connected_account_id: string
21615
21729
  acs_credential_pool_id?: string | undefined
21616
21730
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
21617
21731
  acs_system_id: string
@@ -21767,6 +21881,8 @@ export interface Routes {
21767
21881
  acs_credential_id: string
21768
21882
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
21769
21883
  acs_user_id?: string | undefined
21884
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
21885
+ connected_account_id: string
21770
21886
  acs_credential_pool_id?: string | undefined
21771
21887
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
21772
21888
  acs_system_id: string
@@ -22063,6 +22179,8 @@ export interface Routes {
22063
22179
  acs_credential_id: string
22064
22180
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
22065
22181
  acs_user_id?: string | undefined
22182
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
22183
+ connected_account_id: string
22066
22184
  acs_credential_pool_id?: string | undefined
22067
22185
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
22068
22186
  acs_system_id: string
@@ -22216,6 +22334,8 @@ export interface Routes {
22216
22334
  acs_credential_id: string
22217
22335
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
22218
22336
  acs_user_id?: string | undefined
22337
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
22338
+ connected_account_id: string
22219
22339
  acs_credential_pool_id?: string | undefined
22220
22340
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
22221
22341
  acs_system_id: string
@@ -23109,6 +23229,8 @@ export interface Routes {
23109
23229
  acs_credential_id: string
23110
23230
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
23111
23231
  acs_user_id?: string | undefined
23232
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
23233
+ connected_account_id: string
23112
23234
  acs_credential_pool_id?: string | undefined
23113
23235
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
23114
23236
  acs_system_id: string
@@ -23264,6 +23386,8 @@ export interface Routes {
23264
23386
  acs_credential_id: string
23265
23387
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
23266
23388
  acs_user_id?: string | undefined
23389
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
23390
+ connected_account_id: string
23267
23391
  acs_credential_pool_id?: string | undefined
23268
23392
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
23269
23393
  acs_system_id: string
@@ -23560,6 +23684,8 @@ export interface Routes {
23560
23684
  acs_credential_id: string
23561
23685
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
23562
23686
  acs_user_id?: string | undefined
23687
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
23688
+ connected_account_id: string
23563
23689
  acs_credential_pool_id?: string | undefined
23564
23690
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
23565
23691
  acs_system_id: string
@@ -23713,6 +23839,8 @@ export interface Routes {
23713
23839
  acs_credential_id: string
23714
23840
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
23715
23841
  acs_user_id?: string | undefined
23842
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
23843
+ connected_account_id: string
23716
23844
  acs_credential_pool_id?: string | undefined
23717
23845
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
23718
23846
  acs_system_id: string
@@ -27777,6 +27905,8 @@ export interface Routes {
27777
27905
  unstable_location_id?: (string | null) | undefined
27778
27906
  /** ID of the space for which you want to list devices. */
27779
27907
  space_id?: string | undefined
27908
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
27909
+ search?: string | undefined
27780
27910
  }
27781
27911
  formData: {}
27782
27912
  jsonResponse: {
@@ -29950,6 +30080,8 @@ export interface Routes {
29950
30080
  unstable_location_id?: (string | null) | undefined
29951
30081
  /** ID of the space for which you want to list devices. */
29952
30082
  space_id?: string | undefined
30083
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
30084
+ search?: string | undefined
29953
30085
  }
29954
30086
  formData: {}
29955
30087
  jsonResponse: {
@@ -36582,6 +36714,8 @@ export interface Routes {
36582
36714
  unstable_location_id?: (string | null) | undefined
36583
36715
  /** ID of the space for which you want to list devices. */
36584
36716
  space_id?: string | undefined
36717
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
36718
+ search?: string | undefined
36585
36719
  }
36586
36720
  formData: {}
36587
36721
  jsonResponse: {
@@ -39446,6 +39580,8 @@ export interface Routes {
39446
39580
  acs_credential_id: string
39447
39581
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
39448
39582
  acs_user_id?: string | undefined
39583
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
39584
+ connected_account_id: string
39449
39585
  acs_credential_pool_id?: string | undefined
39450
39586
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
39451
39587
  acs_system_id: string
@@ -39601,6 +39737,8 @@ export interface Routes {
39601
39737
  acs_credential_id: string
39602
39738
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
39603
39739
  acs_user_id?: string | undefined
39740
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
39741
+ connected_account_id: string
39604
39742
  acs_credential_pool_id?: string | undefined
39605
39743
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
39606
39744
  acs_system_id: string
@@ -39897,6 +40035,8 @@ export interface Routes {
39897
40035
  acs_credential_id: string
39898
40036
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
39899
40037
  acs_user_id?: string | undefined
40038
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
40039
+ connected_account_id: string
39900
40040
  acs_credential_pool_id?: string | undefined
39901
40041
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
39902
40042
  acs_system_id: string
@@ -40050,6 +40190,8 @@ export interface Routes {
40050
40190
  acs_credential_id: string
40051
40191
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
40052
40192
  acs_user_id?: string | undefined
40193
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
40194
+ connected_account_id: string
40053
40195
  acs_credential_pool_id?: string | undefined
40054
40196
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
40055
40197
  acs_system_id: string
@@ -40950,6 +41092,8 @@ export interface Routes {
40950
41092
  acs_credential_id: string
40951
41093
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
40952
41094
  acs_user_id?: string | undefined
41095
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41096
+ connected_account_id: string
40953
41097
  acs_credential_pool_id?: string | undefined
40954
41098
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
40955
41099
  acs_system_id: string
@@ -41105,6 +41249,8 @@ export interface Routes {
41105
41249
  acs_credential_id: string
41106
41250
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41107
41251
  acs_user_id?: string | undefined
41252
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41253
+ connected_account_id: string
41108
41254
  acs_credential_pool_id?: string | undefined
41109
41255
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
41110
41256
  acs_system_id: string
@@ -41401,6 +41547,8 @@ export interface Routes {
41401
41547
  acs_credential_id: string
41402
41548
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41403
41549
  acs_user_id?: string | undefined
41550
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41551
+ connected_account_id: string
41404
41552
  acs_credential_pool_id?: string | undefined
41405
41553
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
41406
41554
  acs_system_id: string
@@ -41554,6 +41702,8 @@ export interface Routes {
41554
41702
  acs_credential_id: string
41555
41703
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41556
41704
  acs_user_id?: string | undefined
41705
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
41706
+ connected_account_id: string
41557
41707
  acs_credential_pool_id?: string | undefined
41558
41708
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
41559
41709
  acs_system_id: string
@@ -42452,6 +42602,8 @@ export interface Routes {
42452
42602
  acs_credential_id: string
42453
42603
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42454
42604
  acs_user_id?: string | undefined
42605
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42606
+ connected_account_id: string
42455
42607
  acs_credential_pool_id?: string | undefined
42456
42608
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
42457
42609
  acs_system_id: string
@@ -42607,6 +42759,8 @@ export interface Routes {
42607
42759
  acs_credential_id: string
42608
42760
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42609
42761
  acs_user_id?: string | undefined
42762
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42763
+ connected_account_id: string
42610
42764
  acs_credential_pool_id?: string | undefined
42611
42765
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
42612
42766
  acs_system_id: string
@@ -42903,6 +43057,8 @@ export interface Routes {
42903
43057
  acs_credential_id: string
42904
43058
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
42905
43059
  acs_user_id?: string | undefined
43060
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
43061
+ connected_account_id: string
42906
43062
  acs_credential_pool_id?: string | undefined
42907
43063
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
42908
43064
  acs_system_id: string
@@ -43056,6 +43212,8 @@ export interface Routes {
43056
43212
  acs_credential_id: string
43057
43213
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
43058
43214
  acs_user_id?: string | undefined
43215
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
43216
+ connected_account_id: string
43059
43217
  acs_credential_pool_id?: string | undefined
43060
43218
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
43061
43219
  acs_system_id: string
@@ -43956,6 +44114,8 @@ export interface Routes {
43956
44114
  acs_credential_id: string
43957
44115
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
43958
44116
  acs_user_id?: string | undefined
44117
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44118
+ connected_account_id: string
43959
44119
  acs_credential_pool_id?: string | undefined
43960
44120
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
43961
44121
  acs_system_id: string
@@ -44111,6 +44271,8 @@ export interface Routes {
44111
44271
  acs_credential_id: string
44112
44272
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44113
44273
  acs_user_id?: string | undefined
44274
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44275
+ connected_account_id: string
44114
44276
  acs_credential_pool_id?: string | undefined
44115
44277
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
44116
44278
  acs_system_id: string
@@ -44407,6 +44569,8 @@ export interface Routes {
44407
44569
  acs_credential_id: string
44408
44570
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44409
44571
  acs_user_id?: string | undefined
44572
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44573
+ connected_account_id: string
44410
44574
  acs_credential_pool_id?: string | undefined
44411
44575
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
44412
44576
  acs_system_id: string
@@ -44560,6 +44724,8 @@ export interface Routes {
44560
44724
  acs_credential_id: string
44561
44725
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44562
44726
  acs_user_id?: string | undefined
44727
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
44728
+ connected_account_id: string
44563
44729
  acs_credential_pool_id?: string | undefined
44564
44730
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
44565
44731
  acs_system_id: string
@@ -45400,6 +45566,8 @@ export interface Routes {
45400
45566
  unstable_location_id?: (string | null) | undefined
45401
45567
  /** ID of the space for which you want to list devices. */
45402
45568
  space_id?: string | undefined
45569
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
45570
+ search?: string | undefined
45403
45571
  }
45404
45572
  formData: {}
45405
45573
  jsonResponse: {
@@ -48274,6 +48442,8 @@ export interface Routes {
48274
48442
  acs_credential_id: string
48275
48443
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48276
48444
  acs_user_id?: string | undefined
48445
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48446
+ connected_account_id: string
48277
48447
  acs_credential_pool_id?: string | undefined
48278
48448
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
48279
48449
  acs_system_id: string
@@ -48429,6 +48599,8 @@ export interface Routes {
48429
48599
  acs_credential_id: string
48430
48600
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48431
48601
  acs_user_id?: string | undefined
48602
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48603
+ connected_account_id: string
48432
48604
  acs_credential_pool_id?: string | undefined
48433
48605
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
48434
48606
  acs_system_id: string
@@ -48725,6 +48897,8 @@ export interface Routes {
48725
48897
  acs_credential_id: string
48726
48898
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48727
48899
  acs_user_id?: string | undefined
48900
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48901
+ connected_account_id: string
48728
48902
  acs_credential_pool_id?: string | undefined
48729
48903
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
48730
48904
  acs_system_id: string
@@ -48878,6 +49052,8 @@ export interface Routes {
48878
49052
  acs_credential_id: string
48879
49053
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
48880
49054
  acs_user_id?: string | undefined
49055
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49056
+ connected_account_id: string
48881
49057
  acs_credential_pool_id?: string | undefined
48882
49058
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
48883
49059
  acs_system_id: string
@@ -49797,6 +49973,8 @@ export interface Routes {
49797
49973
  acs_credential_id: string
49798
49974
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49799
49975
  acs_user_id?: string | undefined
49976
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49977
+ connected_account_id: string
49800
49978
  acs_credential_pool_id?: string | undefined
49801
49979
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
49802
49980
  acs_system_id: string
@@ -49952,6 +50130,8 @@ export interface Routes {
49952
50130
  acs_credential_id: string
49953
50131
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
49954
50132
  acs_user_id?: string | undefined
50133
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
50134
+ connected_account_id: string
49955
50135
  acs_credential_pool_id?: string | undefined
49956
50136
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
49957
50137
  acs_system_id: string
@@ -50248,6 +50428,8 @@ export interface Routes {
50248
50428
  acs_credential_id: string
50249
50429
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
50250
50430
  acs_user_id?: string | undefined
50431
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
50432
+ connected_account_id: string
50251
50433
  acs_credential_pool_id?: string | undefined
50252
50434
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
50253
50435
  acs_system_id: string
@@ -50401,6 +50583,8 @@ export interface Routes {
50401
50583
  acs_credential_id: string
50402
50584
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
50403
50585
  acs_user_id?: string | undefined
50586
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
50587
+ connected_account_id: string
50404
50588
  acs_credential_pool_id?: string | undefined
50405
50589
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
50406
50590
  acs_system_id: string
@@ -51374,6 +51558,8 @@ export interface Routes {
51374
51558
  acs_credential_id: string
51375
51559
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
51376
51560
  acs_user_id?: string | undefined
51561
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
51562
+ connected_account_id: string
51377
51563
  acs_credential_pool_id?: string | undefined
51378
51564
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
51379
51565
  acs_system_id: string
@@ -51529,6 +51715,8 @@ export interface Routes {
51529
51715
  acs_credential_id: string
51530
51716
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
51531
51717
  acs_user_id?: string | undefined
51718
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
51719
+ connected_account_id: string
51532
51720
  acs_credential_pool_id?: string | undefined
51533
51721
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
51534
51722
  acs_system_id: string
@@ -51825,6 +52013,8 @@ export interface Routes {
51825
52013
  acs_credential_id: string
51826
52014
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
51827
52015
  acs_user_id?: string | undefined
52016
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
52017
+ connected_account_id: string
51828
52018
  acs_credential_pool_id?: string | undefined
51829
52019
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
51830
52020
  acs_system_id: string
@@ -51978,6 +52168,8 @@ export interface Routes {
51978
52168
  acs_credential_id: string
51979
52169
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
51980
52170
  acs_user_id?: string | undefined
52171
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
52172
+ connected_account_id: string
51981
52173
  acs_credential_pool_id?: string | undefined
51982
52174
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
51983
52175
  acs_system_id: string
@@ -53433,6 +53625,8 @@ export interface Routes {
53433
53625
  acs_credential_id: string
53434
53626
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53435
53627
  acs_user_id?: string | undefined
53628
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53629
+ connected_account_id: string
53436
53630
  acs_credential_pool_id?: string | undefined
53437
53631
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
53438
53632
  acs_system_id: string
@@ -53623,6 +53817,8 @@ export interface Routes {
53623
53817
  acs_credentials: Array<{
53624
53818
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53625
53819
  acs_user_id?: string | undefined
53820
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
53821
+ connected_account_id: string
53626
53822
  acs_credential_pool_id?: string | undefined
53627
53823
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
53628
53824
  acs_system_id: string
@@ -53886,6 +54082,12 @@ export interface Routes {
53886
54082
  door_description?: string | undefined
53887
54083
  }
53888
54084
  | undefined
54085
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
54086
+ can_unlock_with_mobile_key?: boolean | undefined
54087
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
54088
+ can_unlock_with_card?: boolean | undefined
54089
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
54090
+ can_unlock_with_code?: boolean | undefined
53889
54091
  }>
53890
54092
  }>
53891
54093
  }>
@@ -54258,6 +54460,8 @@ export interface Routes {
54258
54460
  acs_credential_id: string
54259
54461
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
54260
54462
  acs_user_id?: string | undefined
54463
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
54464
+ connected_account_id: string
54261
54465
  acs_credential_pool_id?: string | undefined
54262
54466
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
54263
54467
  acs_system_id: string
@@ -54413,6 +54617,8 @@ export interface Routes {
54413
54617
  acs_credential_id: string
54414
54618
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
54415
54619
  acs_user_id?: string | undefined
54620
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
54621
+ connected_account_id: string
54416
54622
  acs_credential_pool_id?: string | undefined
54417
54623
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
54418
54624
  acs_system_id: string
@@ -54709,6 +54915,8 @@ export interface Routes {
54709
54915
  acs_credential_id: string
54710
54916
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
54711
54917
  acs_user_id?: string | undefined
54918
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
54919
+ connected_account_id: string
54712
54920
  acs_credential_pool_id?: string | undefined
54713
54921
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
54714
54922
  acs_system_id: string
@@ -54862,6 +55070,8 @@ export interface Routes {
54862
55070
  acs_credential_id: string
54863
55071
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
54864
55072
  acs_user_id?: string | undefined
55073
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
55074
+ connected_account_id: string
54865
55075
  acs_credential_pool_id?: string | undefined
54866
55076
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
54867
55077
  acs_system_id: string
@@ -55766,6 +55976,8 @@ export interface Routes {
55766
55976
  acs_credential_id: string
55767
55977
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
55768
55978
  acs_user_id?: string | undefined
55979
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
55980
+ connected_account_id: string
55769
55981
  acs_credential_pool_id?: string | undefined
55770
55982
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
55771
55983
  acs_system_id: string
@@ -55921,6 +56133,8 @@ export interface Routes {
55921
56133
  acs_credential_id: string
55922
56134
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
55923
56135
  acs_user_id?: string | undefined
56136
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
56137
+ connected_account_id: string
55924
56138
  acs_credential_pool_id?: string | undefined
55925
56139
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
55926
56140
  acs_system_id: string
@@ -56217,6 +56431,8 @@ export interface Routes {
56217
56431
  acs_credential_id: string
56218
56432
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
56219
56433
  acs_user_id?: string | undefined
56434
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
56435
+ connected_account_id: string
56220
56436
  acs_credential_pool_id?: string | undefined
56221
56437
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
56222
56438
  acs_system_id: string
@@ -56370,6 +56586,8 @@ export interface Routes {
56370
56586
  acs_credential_id: string
56371
56587
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
56372
56588
  acs_user_id?: string | undefined
56589
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
56590
+ connected_account_id: string
56373
56591
  acs_credential_pool_id?: string | undefined
56374
56592
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
56375
56593
  acs_system_id: string
@@ -57362,6 +57580,8 @@ export interface Routes {
57362
57580
  acs_credential_id: string
57363
57581
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57364
57582
  acs_user_id?: string | undefined
57583
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57584
+ connected_account_id: string
57365
57585
  acs_credential_pool_id?: string | undefined
57366
57586
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
57367
57587
  acs_system_id: string
@@ -57517,6 +57737,8 @@ export interface Routes {
57517
57737
  acs_credential_id: string
57518
57738
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57519
57739
  acs_user_id?: string | undefined
57740
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57741
+ connected_account_id: string
57520
57742
  acs_credential_pool_id?: string | undefined
57521
57743
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
57522
57744
  acs_system_id: string
@@ -57813,6 +58035,8 @@ export interface Routes {
57813
58035
  acs_credential_id: string
57814
58036
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57815
58037
  acs_user_id?: string | undefined
58038
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58039
+ connected_account_id: string
57816
58040
  acs_credential_pool_id?: string | undefined
57817
58041
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
57818
58042
  acs_system_id: string
@@ -57966,6 +58190,8 @@ export interface Routes {
57966
58190
  acs_credential_id: string
57967
58191
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
57968
58192
  acs_user_id?: string | undefined
58193
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
58194
+ connected_account_id: string
57969
58195
  acs_credential_pool_id?: string | undefined
57970
58196
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
57971
58197
  acs_system_id: string
@@ -60247,6 +60473,8 @@ export interface Routes {
60247
60473
  acs_credential_id: string
60248
60474
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60249
60475
  acs_user_id?: string | undefined
60476
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60477
+ connected_account_id: string
60250
60478
  acs_credential_pool_id?: string | undefined
60251
60479
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
60252
60480
  acs_system_id: string
@@ -60402,6 +60630,8 @@ export interface Routes {
60402
60630
  acs_credential_id: string
60403
60631
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60404
60632
  acs_user_id?: string | undefined
60633
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60634
+ connected_account_id: string
60405
60635
  acs_credential_pool_id?: string | undefined
60406
60636
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
60407
60637
  acs_system_id: string
@@ -60698,6 +60928,8 @@ export interface Routes {
60698
60928
  acs_credential_id: string
60699
60929
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60700
60930
  acs_user_id?: string | undefined
60931
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60932
+ connected_account_id: string
60701
60933
  acs_credential_pool_id?: string | undefined
60702
60934
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
60703
60935
  acs_system_id: string
@@ -60851,6 +61083,8 @@ export interface Routes {
60851
61083
  acs_credential_id: string
60852
61084
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
60853
61085
  acs_user_id?: string | undefined
61086
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61087
+ connected_account_id: string
60854
61088
  acs_credential_pool_id?: string | undefined
60855
61089
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
60856
61090
  acs_system_id: string
@@ -61759,6 +61993,8 @@ export interface Routes {
61759
61993
  acs_credential_id: string
61760
61994
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61761
61995
  acs_user_id?: string | undefined
61996
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61997
+ connected_account_id: string
61762
61998
  acs_credential_pool_id?: string | undefined
61763
61999
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
61764
62000
  acs_system_id: string
@@ -61914,6 +62150,8 @@ export interface Routes {
61914
62150
  acs_credential_id: string
61915
62151
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
61916
62152
  acs_user_id?: string | undefined
62153
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
62154
+ connected_account_id: string
61917
62155
  acs_credential_pool_id?: string | undefined
61918
62156
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
61919
62157
  acs_system_id: string
@@ -62210,6 +62448,8 @@ export interface Routes {
62210
62448
  acs_credential_id: string
62211
62449
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
62212
62450
  acs_user_id?: string | undefined
62451
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
62452
+ connected_account_id: string
62213
62453
  acs_credential_pool_id?: string | undefined
62214
62454
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
62215
62455
  acs_system_id: string
@@ -62363,6 +62603,8 @@ export interface Routes {
62363
62603
  acs_credential_id: string
62364
62604
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
62365
62605
  acs_user_id?: string | undefined
62606
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
62607
+ connected_account_id: string
62366
62608
  acs_credential_pool_id?: string | undefined
62367
62609
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
62368
62610
  acs_system_id: string
@@ -63193,6 +63435,8 @@ export interface Routes {
63193
63435
  unstable_location_id?: (string | null) | undefined
63194
63436
  /** ID of the space for which you want to list devices. */
63195
63437
  space_id?: string | undefined
63438
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
63439
+ search?: string | undefined
63196
63440
  }
63197
63441
  formData: {}
63198
63442
  jsonResponse: {
@@ -66057,6 +66301,8 @@ export interface Routes {
66057
66301
  acs_credential_id: string
66058
66302
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66059
66303
  acs_user_id?: string | undefined
66304
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66305
+ connected_account_id: string
66060
66306
  acs_credential_pool_id?: string | undefined
66061
66307
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
66062
66308
  acs_system_id: string
@@ -66212,6 +66458,8 @@ export interface Routes {
66212
66458
  acs_credential_id: string
66213
66459
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66214
66460
  acs_user_id?: string | undefined
66461
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66462
+ connected_account_id: string
66215
66463
  acs_credential_pool_id?: string | undefined
66216
66464
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
66217
66465
  acs_system_id: string
@@ -66508,6 +66756,8 @@ export interface Routes {
66508
66756
  acs_credential_id: string
66509
66757
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66510
66758
  acs_user_id?: string | undefined
66759
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66760
+ connected_account_id: string
66511
66761
  acs_credential_pool_id?: string | undefined
66512
66762
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
66513
66763
  acs_system_id: string
@@ -66661,6 +66911,8 @@ export interface Routes {
66661
66911
  acs_credential_id: string
66662
66912
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66663
66913
  acs_user_id?: string | undefined
66914
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
66915
+ connected_account_id: string
66664
66916
  acs_credential_pool_id?: string | undefined
66665
66917
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
66666
66918
  acs_system_id: string
@@ -67758,6 +68010,8 @@ export interface Routes {
67758
68010
  acs_credential_id: string
67759
68011
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
67760
68012
  acs_user_id?: string | undefined
68013
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68014
+ connected_account_id: string
67761
68015
  acs_credential_pool_id?: string | undefined
67762
68016
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
67763
68017
  acs_system_id: string
@@ -67913,6 +68167,8 @@ export interface Routes {
67913
68167
  acs_credential_id: string
67914
68168
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
67915
68169
  acs_user_id?: string | undefined
68170
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68171
+ connected_account_id: string
67916
68172
  acs_credential_pool_id?: string | undefined
67917
68173
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
67918
68174
  acs_system_id: string
@@ -68209,6 +68465,8 @@ export interface Routes {
68209
68465
  acs_credential_id: string
68210
68466
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68211
68467
  acs_user_id?: string | undefined
68468
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68469
+ connected_account_id: string
68212
68470
  acs_credential_pool_id?: string | undefined
68213
68471
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
68214
68472
  acs_system_id: string
@@ -68362,6 +68620,8 @@ export interface Routes {
68362
68620
  acs_credential_id: string
68363
68621
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68364
68622
  acs_user_id?: string | undefined
68623
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68624
+ connected_account_id: string
68365
68625
  acs_credential_pool_id?: string | undefined
68366
68626
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
68367
68627
  acs_system_id: string
@@ -69293,6 +69553,8 @@ export interface Routes {
69293
69553
  acs_credential_id: string
69294
69554
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69295
69555
  acs_user_id?: string | undefined
69556
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69557
+ connected_account_id: string
69296
69558
  acs_credential_pool_id?: string | undefined
69297
69559
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
69298
69560
  acs_system_id: string
@@ -69448,6 +69710,8 @@ export interface Routes {
69448
69710
  acs_credential_id: string
69449
69711
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69450
69712
  acs_user_id?: string | undefined
69713
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69714
+ connected_account_id: string
69451
69715
  acs_credential_pool_id?: string | undefined
69452
69716
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
69453
69717
  acs_system_id: string
@@ -69744,6 +70008,8 @@ export interface Routes {
69744
70008
  acs_credential_id: string
69745
70009
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69746
70010
  acs_user_id?: string | undefined
70011
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
70012
+ connected_account_id: string
69747
70013
  acs_credential_pool_id?: string | undefined
69748
70014
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
69749
70015
  acs_system_id: string
@@ -69897,6 +70163,8 @@ export interface Routes {
69897
70163
  acs_credential_id: string
69898
70164
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69899
70165
  acs_user_id?: string | undefined
70166
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
70167
+ connected_account_id: string
69900
70168
  acs_credential_pool_id?: string | undefined
69901
70169
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
69902
70170
  acs_system_id: string
@@ -70925,6 +71193,8 @@ export interface Routes {
70925
71193
  acs_credential_id: string
70926
71194
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
70927
71195
  acs_user_id?: string | undefined
71196
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71197
+ connected_account_id: string
70928
71198
  acs_credential_pool_id?: string | undefined
70929
71199
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
70930
71200
  acs_system_id: string
@@ -71080,6 +71350,8 @@ export interface Routes {
71080
71350
  acs_credential_id: string
71081
71351
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71082
71352
  acs_user_id?: string | undefined
71353
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71354
+ connected_account_id: string
71083
71355
  acs_credential_pool_id?: string | undefined
71084
71356
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
71085
71357
  acs_system_id: string
@@ -71376,6 +71648,8 @@ export interface Routes {
71376
71648
  acs_credential_id: string
71377
71649
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71378
71650
  acs_user_id?: string | undefined
71651
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71652
+ connected_account_id: string
71379
71653
  acs_credential_pool_id?: string | undefined
71380
71654
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
71381
71655
  acs_system_id: string
@@ -71529,6 +71803,8 @@ export interface Routes {
71529
71803
  acs_credential_id: string
71530
71804
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71531
71805
  acs_user_id?: string | undefined
71806
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71807
+ connected_account_id: string
71532
71808
  acs_credential_pool_id?: string | undefined
71533
71809
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
71534
71810
  acs_system_id: string
@@ -73225,6 +73501,8 @@ export interface Routes {
73225
73501
  queryParams: {}
73226
73502
  jsonBody: {}
73227
73503
  commonParams: {
73504
+ /** String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
73505
+ search?: string | undefined
73228
73506
  /** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
73229
73507
  credential_manager_acs_system_id?: string | undefined
73230
73508
  }
@@ -76854,6 +77132,8 @@ export interface Routes {
76854
77132
  acs_credential_id: string
76855
77133
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
76856
77134
  acs_user_id?: string | undefined
77135
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77136
+ connected_account_id: string
76857
77137
  acs_credential_pool_id?: string | undefined
76858
77138
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
76859
77139
  acs_system_id: string
@@ -77009,6 +77289,8 @@ export interface Routes {
77009
77289
  acs_credential_id: string
77010
77290
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77011
77291
  acs_user_id?: string | undefined
77292
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77293
+ connected_account_id: string
77012
77294
  acs_credential_pool_id?: string | undefined
77013
77295
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
77014
77296
  acs_system_id: string
@@ -77305,6 +77587,8 @@ export interface Routes {
77305
77587
  acs_credential_id: string
77306
77588
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77307
77589
  acs_user_id?: string | undefined
77590
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77591
+ connected_account_id: string
77308
77592
  acs_credential_pool_id?: string | undefined
77309
77593
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
77310
77594
  acs_system_id: string
@@ -77458,6 +77742,8 @@ export interface Routes {
77458
77742
  acs_credential_id: string
77459
77743
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77460
77744
  acs_user_id?: string | undefined
77745
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77746
+ connected_account_id: string
77461
77747
  acs_credential_pool_id?: string | undefined
77462
77748
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
77463
77749
  acs_system_id: string