@seamapi/types 1.423.4 → 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.
- package/dist/connect.cjs +225 -24
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +602 -12
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
- package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +4 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -4
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +3 -9
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +4 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
- package/lib/seam/connect/models/provider-capability.d.ts +3 -0
- package/lib/seam/connect/models/provider-capability.js +11 -0
- package/lib/seam/connect/models/provider-capability.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +263 -5
- package/lib/seam/connect/openapi.js +190 -11
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +292 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
- package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +3 -16
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -2
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/models/provider-capability.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +217 -11
- package/src/lib/seam/connect/route-types.ts +298 -3
|
@@ -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
|
|
@@ -24910,7 +25038,6 @@ export interface Routes {
|
|
|
24910
25038
|
connected_account_id: string | null
|
|
24911
25039
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
24912
25040
|
url: string
|
|
24913
|
-
/** */
|
|
24914
25041
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
24915
25042
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
24916
25043
|
accepted_providers: string[]
|
|
@@ -24992,7 +25119,6 @@ export interface Routes {
|
|
|
24992
25119
|
connected_account_id: string | null
|
|
24993
25120
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
24994
25121
|
url: string
|
|
24995
|
-
/** */
|
|
24996
25122
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
24997
25123
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
24998
25124
|
accepted_providers: string[]
|
|
@@ -25058,7 +25184,6 @@ export interface Routes {
|
|
|
25058
25184
|
connected_account_id: string | null
|
|
25059
25185
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
25060
25186
|
url: string
|
|
25061
|
-
/** */
|
|
25062
25187
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
25063
25188
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
25064
25189
|
accepted_providers: string[]
|
|
@@ -25271,6 +25396,10 @@ export interface Routes {
|
|
|
25271
25396
|
automatically_manage_new_devices: boolean
|
|
25272
25397
|
/** Your unique key for the customer associated with this connected account. */
|
|
25273
25398
|
customer_key?: string | undefined
|
|
25399
|
+
/** List of capabilities that were accepted during the account connection process. */
|
|
25400
|
+
accepted_capabilities: Array<
|
|
25401
|
+
'lock' | 'thermostat' | 'noise_sensor' | 'access_control'
|
|
25402
|
+
>
|
|
25274
25403
|
}
|
|
25275
25404
|
}
|
|
25276
25405
|
}
|
|
@@ -25428,6 +25557,10 @@ export interface Routes {
|
|
|
25428
25557
|
automatically_manage_new_devices: boolean
|
|
25429
25558
|
/** Your unique key for the customer associated with this connected account. */
|
|
25430
25559
|
customer_key?: string | undefined
|
|
25560
|
+
/** List of capabilities that were accepted during the account connection process. */
|
|
25561
|
+
accepted_capabilities: Array<
|
|
25562
|
+
'lock' | 'thermostat' | 'noise_sensor' | 'access_control'
|
|
25563
|
+
>
|
|
25431
25564
|
}>
|
|
25432
25565
|
/** Information about the current page of results. */
|
|
25433
25566
|
pagination: {
|
|
@@ -25604,6 +25737,10 @@ export interface Routes {
|
|
|
25604
25737
|
automatically_manage_new_devices: boolean
|
|
25605
25738
|
/** Your unique key for the customer associated with this connected account. */
|
|
25606
25739
|
customer_key?: string | undefined
|
|
25740
|
+
/** List of capabilities that were accepted during the account connection process. */
|
|
25741
|
+
accepted_capabilities: Array<
|
|
25742
|
+
'lock' | 'thermostat' | 'noise_sensor' | 'access_control'
|
|
25743
|
+
>
|
|
25607
25744
|
}
|
|
25608
25745
|
}
|
|
25609
25746
|
}
|
|
@@ -27768,6 +27905,8 @@ export interface Routes {
|
|
|
27768
27905
|
unstable_location_id?: (string | null) | undefined
|
|
27769
27906
|
/** ID of the space for which you want to list devices. */
|
|
27770
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
|
|
27771
27910
|
}
|
|
27772
27911
|
formData: {}
|
|
27773
27912
|
jsonResponse: {
|
|
@@ -29941,6 +30080,8 @@ export interface Routes {
|
|
|
29941
30080
|
unstable_location_id?: (string | null) | undefined
|
|
29942
30081
|
/** ID of the space for which you want to list devices. */
|
|
29943
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
|
|
29944
30085
|
}
|
|
29945
30086
|
formData: {}
|
|
29946
30087
|
jsonResponse: {
|
|
@@ -36573,6 +36714,8 @@ export interface Routes {
|
|
|
36573
36714
|
unstable_location_id?: (string | null) | undefined
|
|
36574
36715
|
/** ID of the space for which you want to list devices. */
|
|
36575
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
|
|
36576
36719
|
}
|
|
36577
36720
|
formData: {}
|
|
36578
36721
|
jsonResponse: {
|
|
@@ -39437,6 +39580,8 @@ export interface Routes {
|
|
|
39437
39580
|
acs_credential_id: string
|
|
39438
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. */
|
|
39439
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
|
|
39440
39585
|
acs_credential_pool_id?: string | undefined
|
|
39441
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). */
|
|
39442
39587
|
acs_system_id: string
|
|
@@ -39592,6 +39737,8 @@ export interface Routes {
|
|
|
39592
39737
|
acs_credential_id: string
|
|
39593
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. */
|
|
39594
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
|
|
39595
39742
|
acs_credential_pool_id?: string | undefined
|
|
39596
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). */
|
|
39597
39744
|
acs_system_id: string
|
|
@@ -39888,6 +40035,8 @@ export interface Routes {
|
|
|
39888
40035
|
acs_credential_id: string
|
|
39889
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. */
|
|
39890
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
|
|
39891
40040
|
acs_credential_pool_id?: string | undefined
|
|
39892
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). */
|
|
39893
40042
|
acs_system_id: string
|
|
@@ -40041,6 +40190,8 @@ export interface Routes {
|
|
|
40041
40190
|
acs_credential_id: string
|
|
40042
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. */
|
|
40043
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
|
|
40044
40195
|
acs_credential_pool_id?: string | undefined
|
|
40045
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). */
|
|
40046
40197
|
acs_system_id: string
|
|
@@ -40941,6 +41092,8 @@ export interface Routes {
|
|
|
40941
41092
|
acs_credential_id: string
|
|
40942
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. */
|
|
40943
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
|
|
40944
41097
|
acs_credential_pool_id?: string | undefined
|
|
40945
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). */
|
|
40946
41099
|
acs_system_id: string
|
|
@@ -41096,6 +41249,8 @@ export interface Routes {
|
|
|
41096
41249
|
acs_credential_id: string
|
|
41097
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. */
|
|
41098
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
|
|
41099
41254
|
acs_credential_pool_id?: string | undefined
|
|
41100
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). */
|
|
41101
41256
|
acs_system_id: string
|
|
@@ -41392,6 +41547,8 @@ export interface Routes {
|
|
|
41392
41547
|
acs_credential_id: string
|
|
41393
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. */
|
|
41394
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
|
|
41395
41552
|
acs_credential_pool_id?: string | undefined
|
|
41396
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). */
|
|
41397
41554
|
acs_system_id: string
|
|
@@ -41545,6 +41702,8 @@ export interface Routes {
|
|
|
41545
41702
|
acs_credential_id: string
|
|
41546
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. */
|
|
41547
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
|
|
41548
41707
|
acs_credential_pool_id?: string | undefined
|
|
41549
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). */
|
|
41550
41709
|
acs_system_id: string
|
|
@@ -42443,6 +42602,8 @@ export interface Routes {
|
|
|
42443
42602
|
acs_credential_id: string
|
|
42444
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. */
|
|
42445
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
|
|
42446
42607
|
acs_credential_pool_id?: string | undefined
|
|
42447
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). */
|
|
42448
42609
|
acs_system_id: string
|
|
@@ -42598,6 +42759,8 @@ export interface Routes {
|
|
|
42598
42759
|
acs_credential_id: string
|
|
42599
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. */
|
|
42600
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
|
|
42601
42764
|
acs_credential_pool_id?: string | undefined
|
|
42602
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). */
|
|
42603
42766
|
acs_system_id: string
|
|
@@ -42894,6 +43057,8 @@ export interface Routes {
|
|
|
42894
43057
|
acs_credential_id: string
|
|
42895
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. */
|
|
42896
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
|
|
42897
43062
|
acs_credential_pool_id?: string | undefined
|
|
42898
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). */
|
|
42899
43064
|
acs_system_id: string
|
|
@@ -43047,6 +43212,8 @@ export interface Routes {
|
|
|
43047
43212
|
acs_credential_id: string
|
|
43048
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. */
|
|
43049
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
|
|
43050
43217
|
acs_credential_pool_id?: string | undefined
|
|
43051
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). */
|
|
43052
43219
|
acs_system_id: string
|
|
@@ -43947,6 +44114,8 @@ export interface Routes {
|
|
|
43947
44114
|
acs_credential_id: string
|
|
43948
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. */
|
|
43949
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
|
|
43950
44119
|
acs_credential_pool_id?: string | undefined
|
|
43951
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). */
|
|
43952
44121
|
acs_system_id: string
|
|
@@ -44102,6 +44271,8 @@ export interface Routes {
|
|
|
44102
44271
|
acs_credential_id: string
|
|
44103
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. */
|
|
44104
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
|
|
44105
44276
|
acs_credential_pool_id?: string | undefined
|
|
44106
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). */
|
|
44107
44278
|
acs_system_id: string
|
|
@@ -44398,6 +44569,8 @@ export interface Routes {
|
|
|
44398
44569
|
acs_credential_id: string
|
|
44399
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. */
|
|
44400
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
|
|
44401
44574
|
acs_credential_pool_id?: string | undefined
|
|
44402
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). */
|
|
44403
44576
|
acs_system_id: string
|
|
@@ -44551,6 +44724,8 @@ export interface Routes {
|
|
|
44551
44724
|
acs_credential_id: string
|
|
44552
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. */
|
|
44553
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
|
|
44554
44729
|
acs_credential_pool_id?: string | undefined
|
|
44555
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). */
|
|
44556
44731
|
acs_system_id: string
|
|
@@ -45391,6 +45566,8 @@ export interface Routes {
|
|
|
45391
45566
|
unstable_location_id?: (string | null) | undefined
|
|
45392
45567
|
/** ID of the space for which you want to list devices. */
|
|
45393
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
|
|
45394
45571
|
}
|
|
45395
45572
|
formData: {}
|
|
45396
45573
|
jsonResponse: {
|
|
@@ -48265,6 +48442,8 @@ export interface Routes {
|
|
|
48265
48442
|
acs_credential_id: string
|
|
48266
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. */
|
|
48267
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
|
|
48268
48447
|
acs_credential_pool_id?: string | undefined
|
|
48269
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). */
|
|
48270
48449
|
acs_system_id: string
|
|
@@ -48420,6 +48599,8 @@ export interface Routes {
|
|
|
48420
48599
|
acs_credential_id: string
|
|
48421
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. */
|
|
48422
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
|
|
48423
48604
|
acs_credential_pool_id?: string | undefined
|
|
48424
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). */
|
|
48425
48606
|
acs_system_id: string
|
|
@@ -48716,6 +48897,8 @@ export interface Routes {
|
|
|
48716
48897
|
acs_credential_id: string
|
|
48717
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. */
|
|
48718
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
|
|
48719
48902
|
acs_credential_pool_id?: string | undefined
|
|
48720
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). */
|
|
48721
48904
|
acs_system_id: string
|
|
@@ -48869,6 +49052,8 @@ export interface Routes {
|
|
|
48869
49052
|
acs_credential_id: string
|
|
48870
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. */
|
|
48871
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
|
|
48872
49057
|
acs_credential_pool_id?: string | undefined
|
|
48873
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). */
|
|
48874
49059
|
acs_system_id: string
|
|
@@ -49788,6 +49973,8 @@ export interface Routes {
|
|
|
49788
49973
|
acs_credential_id: string
|
|
49789
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. */
|
|
49790
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
|
|
49791
49978
|
acs_credential_pool_id?: string | undefined
|
|
49792
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). */
|
|
49793
49980
|
acs_system_id: string
|
|
@@ -49943,6 +50130,8 @@ export interface Routes {
|
|
|
49943
50130
|
acs_credential_id: string
|
|
49944
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. */
|
|
49945
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
|
|
49946
50135
|
acs_credential_pool_id?: string | undefined
|
|
49947
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). */
|
|
49948
50137
|
acs_system_id: string
|
|
@@ -50239,6 +50428,8 @@ export interface Routes {
|
|
|
50239
50428
|
acs_credential_id: string
|
|
50240
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. */
|
|
50241
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
|
|
50242
50433
|
acs_credential_pool_id?: string | undefined
|
|
50243
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). */
|
|
50244
50435
|
acs_system_id: string
|
|
@@ -50392,6 +50583,8 @@ export interface Routes {
|
|
|
50392
50583
|
acs_credential_id: string
|
|
50393
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. */
|
|
50394
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
|
|
50395
50588
|
acs_credential_pool_id?: string | undefined
|
|
50396
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). */
|
|
50397
50590
|
acs_system_id: string
|
|
@@ -51365,6 +51558,8 @@ export interface Routes {
|
|
|
51365
51558
|
acs_credential_id: string
|
|
51366
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. */
|
|
51367
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
|
|
51368
51563
|
acs_credential_pool_id?: string | undefined
|
|
51369
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). */
|
|
51370
51565
|
acs_system_id: string
|
|
@@ -51520,6 +51715,8 @@ export interface Routes {
|
|
|
51520
51715
|
acs_credential_id: string
|
|
51521
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. */
|
|
51522
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
|
|
51523
51720
|
acs_credential_pool_id?: string | undefined
|
|
51524
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). */
|
|
51525
51722
|
acs_system_id: string
|
|
@@ -51816,6 +52013,8 @@ export interface Routes {
|
|
|
51816
52013
|
acs_credential_id: string
|
|
51817
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. */
|
|
51818
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
|
|
51819
52018
|
acs_credential_pool_id?: string | undefined
|
|
51820
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). */
|
|
51821
52020
|
acs_system_id: string
|
|
@@ -51969,6 +52168,8 @@ export interface Routes {
|
|
|
51969
52168
|
acs_credential_id: string
|
|
51970
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. */
|
|
51971
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
|
|
51972
52173
|
acs_credential_pool_id?: string | undefined
|
|
51973
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). */
|
|
51974
52175
|
acs_system_id: string
|
|
@@ -53424,6 +53625,8 @@ export interface Routes {
|
|
|
53424
53625
|
acs_credential_id: string
|
|
53425
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. */
|
|
53426
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
|
|
53427
53630
|
acs_credential_pool_id?: string | undefined
|
|
53428
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). */
|
|
53429
53632
|
acs_system_id: string
|
|
@@ -53614,6 +53817,8 @@ export interface Routes {
|
|
|
53614
53817
|
acs_credentials: Array<{
|
|
53615
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. */
|
|
53616
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
|
|
53617
53822
|
acs_credential_pool_id?: string | undefined
|
|
53618
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). */
|
|
53619
53824
|
acs_system_id: string
|
|
@@ -53877,6 +54082,12 @@ export interface Routes {
|
|
|
53877
54082
|
door_description?: string | undefined
|
|
53878
54083
|
}
|
|
53879
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
|
|
53880
54091
|
}>
|
|
53881
54092
|
}>
|
|
53882
54093
|
}>
|
|
@@ -54249,6 +54460,8 @@ export interface Routes {
|
|
|
54249
54460
|
acs_credential_id: string
|
|
54250
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. */
|
|
54251
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
|
|
54252
54465
|
acs_credential_pool_id?: string | undefined
|
|
54253
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). */
|
|
54254
54467
|
acs_system_id: string
|
|
@@ -54404,6 +54617,8 @@ export interface Routes {
|
|
|
54404
54617
|
acs_credential_id: string
|
|
54405
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. */
|
|
54406
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
|
|
54407
54622
|
acs_credential_pool_id?: string | undefined
|
|
54408
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). */
|
|
54409
54624
|
acs_system_id: string
|
|
@@ -54700,6 +54915,8 @@ export interface Routes {
|
|
|
54700
54915
|
acs_credential_id: string
|
|
54701
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. */
|
|
54702
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
|
|
54703
54920
|
acs_credential_pool_id?: string | undefined
|
|
54704
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). */
|
|
54705
54922
|
acs_system_id: string
|
|
@@ -54853,6 +55070,8 @@ export interface Routes {
|
|
|
54853
55070
|
acs_credential_id: string
|
|
54854
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. */
|
|
54855
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
|
|
54856
55075
|
acs_credential_pool_id?: string | undefined
|
|
54857
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). */
|
|
54858
55077
|
acs_system_id: string
|
|
@@ -55757,6 +55976,8 @@ export interface Routes {
|
|
|
55757
55976
|
acs_credential_id: string
|
|
55758
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. */
|
|
55759
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
|
|
55760
55981
|
acs_credential_pool_id?: string | undefined
|
|
55761
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). */
|
|
55762
55983
|
acs_system_id: string
|
|
@@ -55912,6 +56133,8 @@ export interface Routes {
|
|
|
55912
56133
|
acs_credential_id: string
|
|
55913
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. */
|
|
55914
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
|
|
55915
56138
|
acs_credential_pool_id?: string | undefined
|
|
55916
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). */
|
|
55917
56140
|
acs_system_id: string
|
|
@@ -56208,6 +56431,8 @@ export interface Routes {
|
|
|
56208
56431
|
acs_credential_id: string
|
|
56209
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. */
|
|
56210
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
|
|
56211
56436
|
acs_credential_pool_id?: string | undefined
|
|
56212
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). */
|
|
56213
56438
|
acs_system_id: string
|
|
@@ -56361,6 +56586,8 @@ export interface Routes {
|
|
|
56361
56586
|
acs_credential_id: string
|
|
56362
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. */
|
|
56363
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
|
|
56364
56591
|
acs_credential_pool_id?: string | undefined
|
|
56365
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). */
|
|
56366
56593
|
acs_system_id: string
|
|
@@ -57353,6 +57580,8 @@ export interface Routes {
|
|
|
57353
57580
|
acs_credential_id: string
|
|
57354
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. */
|
|
57355
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
|
|
57356
57585
|
acs_credential_pool_id?: string | undefined
|
|
57357
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). */
|
|
57358
57587
|
acs_system_id: string
|
|
@@ -57508,6 +57737,8 @@ export interface Routes {
|
|
|
57508
57737
|
acs_credential_id: string
|
|
57509
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. */
|
|
57510
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
|
|
57511
57742
|
acs_credential_pool_id?: string | undefined
|
|
57512
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). */
|
|
57513
57744
|
acs_system_id: string
|
|
@@ -57804,6 +58035,8 @@ export interface Routes {
|
|
|
57804
58035
|
acs_credential_id: string
|
|
57805
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. */
|
|
57806
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
|
|
57807
58040
|
acs_credential_pool_id?: string | undefined
|
|
57808
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). */
|
|
57809
58042
|
acs_system_id: string
|
|
@@ -57957,6 +58190,8 @@ export interface Routes {
|
|
|
57957
58190
|
acs_credential_id: string
|
|
57958
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. */
|
|
57959
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
|
|
57960
58195
|
acs_credential_pool_id?: string | undefined
|
|
57961
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). */
|
|
57962
58197
|
acs_system_id: string
|
|
@@ -60238,6 +60473,8 @@ export interface Routes {
|
|
|
60238
60473
|
acs_credential_id: string
|
|
60239
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. */
|
|
60240
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
|
|
60241
60478
|
acs_credential_pool_id?: string | undefined
|
|
60242
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). */
|
|
60243
60480
|
acs_system_id: string
|
|
@@ -60393,6 +60630,8 @@ export interface Routes {
|
|
|
60393
60630
|
acs_credential_id: string
|
|
60394
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. */
|
|
60395
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
|
|
60396
60635
|
acs_credential_pool_id?: string | undefined
|
|
60397
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). */
|
|
60398
60637
|
acs_system_id: string
|
|
@@ -60689,6 +60928,8 @@ export interface Routes {
|
|
|
60689
60928
|
acs_credential_id: string
|
|
60690
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. */
|
|
60691
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
|
|
60692
60933
|
acs_credential_pool_id?: string | undefined
|
|
60693
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). */
|
|
60694
60935
|
acs_system_id: string
|
|
@@ -60842,6 +61083,8 @@ export interface Routes {
|
|
|
60842
61083
|
acs_credential_id: string
|
|
60843
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. */
|
|
60844
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
|
|
60845
61088
|
acs_credential_pool_id?: string | undefined
|
|
60846
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). */
|
|
60847
61090
|
acs_system_id: string
|
|
@@ -61750,6 +61993,8 @@ export interface Routes {
|
|
|
61750
61993
|
acs_credential_id: string
|
|
61751
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. */
|
|
61752
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
|
|
61753
61998
|
acs_credential_pool_id?: string | undefined
|
|
61754
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). */
|
|
61755
62000
|
acs_system_id: string
|
|
@@ -61905,6 +62150,8 @@ export interface Routes {
|
|
|
61905
62150
|
acs_credential_id: string
|
|
61906
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. */
|
|
61907
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
|
|
61908
62155
|
acs_credential_pool_id?: string | undefined
|
|
61909
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). */
|
|
61910
62157
|
acs_system_id: string
|
|
@@ -62201,6 +62448,8 @@ export interface Routes {
|
|
|
62201
62448
|
acs_credential_id: string
|
|
62202
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. */
|
|
62203
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
|
|
62204
62453
|
acs_credential_pool_id?: string | undefined
|
|
62205
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). */
|
|
62206
62455
|
acs_system_id: string
|
|
@@ -62354,6 +62603,8 @@ export interface Routes {
|
|
|
62354
62603
|
acs_credential_id: string
|
|
62355
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. */
|
|
62356
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
|
|
62357
62608
|
acs_credential_pool_id?: string | undefined
|
|
62358
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). */
|
|
62359
62610
|
acs_system_id: string
|
|
@@ -63184,6 +63435,8 @@ export interface Routes {
|
|
|
63184
63435
|
unstable_location_id?: (string | null) | undefined
|
|
63185
63436
|
/** ID of the space for which you want to list devices. */
|
|
63186
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
|
|
63187
63440
|
}
|
|
63188
63441
|
formData: {}
|
|
63189
63442
|
jsonResponse: {
|
|
@@ -66048,6 +66301,8 @@ export interface Routes {
|
|
|
66048
66301
|
acs_credential_id: string
|
|
66049
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. */
|
|
66050
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
|
|
66051
66306
|
acs_credential_pool_id?: string | undefined
|
|
66052
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). */
|
|
66053
66308
|
acs_system_id: string
|
|
@@ -66203,6 +66458,8 @@ export interface Routes {
|
|
|
66203
66458
|
acs_credential_id: string
|
|
66204
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. */
|
|
66205
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
|
|
66206
66463
|
acs_credential_pool_id?: string | undefined
|
|
66207
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). */
|
|
66208
66465
|
acs_system_id: string
|
|
@@ -66499,6 +66756,8 @@ export interface Routes {
|
|
|
66499
66756
|
acs_credential_id: string
|
|
66500
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. */
|
|
66501
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
|
|
66502
66761
|
acs_credential_pool_id?: string | undefined
|
|
66503
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). */
|
|
66504
66763
|
acs_system_id: string
|
|
@@ -66652,6 +66911,8 @@ export interface Routes {
|
|
|
66652
66911
|
acs_credential_id: string
|
|
66653
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. */
|
|
66654
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
|
|
66655
66916
|
acs_credential_pool_id?: string | undefined
|
|
66656
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). */
|
|
66657
66918
|
acs_system_id: string
|
|
@@ -67749,6 +68010,8 @@ export interface Routes {
|
|
|
67749
68010
|
acs_credential_id: string
|
|
67750
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. */
|
|
67751
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
|
|
67752
68015
|
acs_credential_pool_id?: string | undefined
|
|
67753
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). */
|
|
67754
68017
|
acs_system_id: string
|
|
@@ -67904,6 +68167,8 @@ export interface Routes {
|
|
|
67904
68167
|
acs_credential_id: string
|
|
67905
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. */
|
|
67906
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
|
|
67907
68172
|
acs_credential_pool_id?: string | undefined
|
|
67908
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). */
|
|
67909
68174
|
acs_system_id: string
|
|
@@ -68200,6 +68465,8 @@ export interface Routes {
|
|
|
68200
68465
|
acs_credential_id: string
|
|
68201
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. */
|
|
68202
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
|
|
68203
68470
|
acs_credential_pool_id?: string | undefined
|
|
68204
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). */
|
|
68205
68472
|
acs_system_id: string
|
|
@@ -68353,6 +68620,8 @@ export interface Routes {
|
|
|
68353
68620
|
acs_credential_id: string
|
|
68354
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. */
|
|
68355
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
|
|
68356
68625
|
acs_credential_pool_id?: string | undefined
|
|
68357
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). */
|
|
68358
68627
|
acs_system_id: string
|
|
@@ -69284,6 +69553,8 @@ export interface Routes {
|
|
|
69284
69553
|
acs_credential_id: string
|
|
69285
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. */
|
|
69286
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
|
|
69287
69558
|
acs_credential_pool_id?: string | undefined
|
|
69288
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). */
|
|
69289
69560
|
acs_system_id: string
|
|
@@ -69439,6 +69710,8 @@ export interface Routes {
|
|
|
69439
69710
|
acs_credential_id: string
|
|
69440
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. */
|
|
69441
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
|
|
69442
69715
|
acs_credential_pool_id?: string | undefined
|
|
69443
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). */
|
|
69444
69717
|
acs_system_id: string
|
|
@@ -69735,6 +70008,8 @@ export interface Routes {
|
|
|
69735
70008
|
acs_credential_id: string
|
|
69736
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. */
|
|
69737
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
|
|
69738
70013
|
acs_credential_pool_id?: string | undefined
|
|
69739
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). */
|
|
69740
70015
|
acs_system_id: string
|
|
@@ -69888,6 +70163,8 @@ export interface Routes {
|
|
|
69888
70163
|
acs_credential_id: string
|
|
69889
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. */
|
|
69890
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
|
|
69891
70168
|
acs_credential_pool_id?: string | undefined
|
|
69892
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). */
|
|
69893
70170
|
acs_system_id: string
|
|
@@ -70916,6 +71193,8 @@ export interface Routes {
|
|
|
70916
71193
|
acs_credential_id: string
|
|
70917
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. */
|
|
70918
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
|
|
70919
71198
|
acs_credential_pool_id?: string | undefined
|
|
70920
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). */
|
|
70921
71200
|
acs_system_id: string
|
|
@@ -71071,6 +71350,8 @@ export interface Routes {
|
|
|
71071
71350
|
acs_credential_id: string
|
|
71072
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. */
|
|
71073
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
|
|
71074
71355
|
acs_credential_pool_id?: string | undefined
|
|
71075
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). */
|
|
71076
71357
|
acs_system_id: string
|
|
@@ -71367,6 +71648,8 @@ export interface Routes {
|
|
|
71367
71648
|
acs_credential_id: string
|
|
71368
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. */
|
|
71369
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
|
|
71370
71653
|
acs_credential_pool_id?: string | undefined
|
|
71371
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). */
|
|
71372
71655
|
acs_system_id: string
|
|
@@ -71520,6 +71803,8 @@ export interface Routes {
|
|
|
71520
71803
|
acs_credential_id: string
|
|
71521
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. */
|
|
71522
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
|
|
71523
71808
|
acs_credential_pool_id?: string | undefined
|
|
71524
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). */
|
|
71525
71810
|
acs_system_id: string
|
|
@@ -73216,6 +73501,8 @@ export interface Routes {
|
|
|
73216
73501
|
queryParams: {}
|
|
73217
73502
|
jsonBody: {}
|
|
73218
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
|
|
73219
73506
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
|
73220
73507
|
credential_manager_acs_system_id?: string | undefined
|
|
73221
73508
|
}
|
|
@@ -76845,6 +77132,8 @@ export interface Routes {
|
|
|
76845
77132
|
acs_credential_id: string
|
|
76846
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. */
|
|
76847
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
|
|
76848
77137
|
acs_credential_pool_id?: string | undefined
|
|
76849
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). */
|
|
76850
77139
|
acs_system_id: string
|
|
@@ -77000,6 +77289,8 @@ export interface Routes {
|
|
|
77000
77289
|
acs_credential_id: string
|
|
77001
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. */
|
|
77002
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
|
|
77003
77294
|
acs_credential_pool_id?: string | undefined
|
|
77004
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). */
|
|
77005
77296
|
acs_system_id: string
|
|
@@ -77296,6 +77587,8 @@ export interface Routes {
|
|
|
77296
77587
|
acs_credential_id: string
|
|
77297
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. */
|
|
77298
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
|
|
77299
77592
|
acs_credential_pool_id?: string | undefined
|
|
77300
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). */
|
|
77301
77594
|
acs_system_id: string
|
|
@@ -77449,6 +77742,8 @@ export interface Routes {
|
|
|
77449
77742
|
acs_credential_id: string
|
|
77450
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. */
|
|
77451
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
|
|
77452
77747
|
acs_credential_pool_id?: string | undefined
|
|
77453
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). */
|
|
77454
77749
|
acs_system_id: string
|