@seamapi/types 1.424.0 → 1.426.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 +256 -31
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +653 -16
- 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/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +6 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
- package/lib/seam/connect/openapi.d.ts +287 -4
- package/lib/seam/connect/openapi.js +215 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +314 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -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/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +242 -8
- package/src/lib/seam/connect/route-types.ts +314 -0
|
@@ -35,6 +35,8 @@ export interface Routes {
|
|
|
35
35
|
is_external_modification_allowed?: boolean | undefined
|
|
36
36
|
/** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
37
37
|
preferred_code_length?: number | undefined
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated Use `is_offline_access_code` instead. */
|
|
38
40
|
use_offline_access_code?: boolean | undefined
|
|
39
41
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
40
42
|
is_offline_access_code?: boolean | undefined
|
|
@@ -198,6 +200,8 @@ export interface Routes {
|
|
|
198
200
|
acs_credential_id: string
|
|
199
201
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
200
202
|
acs_user_id?: string | undefined
|
|
203
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
204
|
+
connected_account_id: string
|
|
201
205
|
acs_credential_pool_id?: string | undefined
|
|
202
206
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
203
207
|
acs_system_id: string
|
|
@@ -353,6 +357,8 @@ export interface Routes {
|
|
|
353
357
|
acs_credential_id: string
|
|
354
358
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
355
359
|
acs_user_id?: string | undefined
|
|
360
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
361
|
+
connected_account_id: string
|
|
356
362
|
acs_credential_pool_id?: string | undefined
|
|
357
363
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
358
364
|
acs_system_id: string
|
|
@@ -649,6 +655,8 @@ export interface Routes {
|
|
|
649
655
|
acs_credential_id: string
|
|
650
656
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
651
657
|
acs_user_id?: string | undefined
|
|
658
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
659
|
+
connected_account_id: string
|
|
652
660
|
acs_credential_pool_id?: string | undefined
|
|
653
661
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
654
662
|
acs_system_id: string
|
|
@@ -802,6 +810,8 @@ export interface Routes {
|
|
|
802
810
|
acs_credential_id: string
|
|
803
811
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
804
812
|
acs_user_id?: string | undefined
|
|
813
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
814
|
+
connected_account_id: string
|
|
805
815
|
acs_credential_pool_id?: string | undefined
|
|
806
816
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
807
817
|
acs_system_id: string
|
|
@@ -2138,6 +2148,8 @@ export interface Routes {
|
|
|
2138
2148
|
allow_external_modification?: boolean | undefined
|
|
2139
2149
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
2140
2150
|
is_external_modification_allowed?: boolean | undefined
|
|
2151
|
+
/**
|
|
2152
|
+
* @deprecated Use `is_offline_access_code` instead. */
|
|
2141
2153
|
use_offline_access_code?: boolean | undefined
|
|
2142
2154
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
2143
2155
|
is_offline_access_code?: boolean | undefined
|
|
@@ -2878,6 +2890,8 @@ export interface Routes {
|
|
|
2878
2890
|
acs_credential_id: string
|
|
2879
2891
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2880
2892
|
acs_user_id?: string | undefined
|
|
2893
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2894
|
+
connected_account_id: string
|
|
2881
2895
|
acs_credential_pool_id?: string | undefined
|
|
2882
2896
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2883
2897
|
acs_system_id: string
|
|
@@ -3033,6 +3047,8 @@ export interface Routes {
|
|
|
3033
3047
|
acs_credential_id: string
|
|
3034
3048
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3035
3049
|
acs_user_id?: string | undefined
|
|
3050
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3051
|
+
connected_account_id: string
|
|
3036
3052
|
acs_credential_pool_id?: string | undefined
|
|
3037
3053
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
3038
3054
|
acs_system_id: string
|
|
@@ -3329,6 +3345,8 @@ export interface Routes {
|
|
|
3329
3345
|
acs_credential_id: string
|
|
3330
3346
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3331
3347
|
acs_user_id?: string | undefined
|
|
3348
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3349
|
+
connected_account_id: string
|
|
3332
3350
|
acs_credential_pool_id?: string | undefined
|
|
3333
3351
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
3334
3352
|
acs_system_id: string
|
|
@@ -3482,6 +3500,8 @@ export interface Routes {
|
|
|
3482
3500
|
acs_credential_id: string
|
|
3483
3501
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3484
3502
|
acs_user_id?: string | undefined
|
|
3503
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3504
|
+
connected_account_id: string
|
|
3485
3505
|
acs_credential_pool_id?: string | undefined
|
|
3486
3506
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
3487
3507
|
acs_system_id: string
|
|
@@ -7329,6 +7349,8 @@ export interface Routes {
|
|
|
7329
7349
|
acs_credential_id: string
|
|
7330
7350
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7331
7351
|
acs_user_id?: string | undefined
|
|
7352
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7353
|
+
connected_account_id: string
|
|
7332
7354
|
acs_credential_pool_id?: string | undefined
|
|
7333
7355
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7334
7356
|
acs_system_id: string
|
|
@@ -7484,6 +7506,8 @@ export interface Routes {
|
|
|
7484
7506
|
acs_credential_id: string
|
|
7485
7507
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7486
7508
|
acs_user_id?: string | undefined
|
|
7509
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7510
|
+
connected_account_id: string
|
|
7487
7511
|
acs_credential_pool_id?: string | undefined
|
|
7488
7512
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7489
7513
|
acs_system_id: string
|
|
@@ -7780,6 +7804,8 @@ export interface Routes {
|
|
|
7780
7804
|
acs_credential_id: string
|
|
7781
7805
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7782
7806
|
acs_user_id?: string | undefined
|
|
7807
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7808
|
+
connected_account_id: string
|
|
7783
7809
|
acs_credential_pool_id?: string | undefined
|
|
7784
7810
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7785
7811
|
acs_system_id: string
|
|
@@ -7933,6 +7959,8 @@ export interface Routes {
|
|
|
7933
7959
|
acs_credential_id: string
|
|
7934
7960
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7935
7961
|
acs_user_id?: string | undefined
|
|
7962
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7963
|
+
connected_account_id: string
|
|
7936
7964
|
acs_credential_pool_id?: string | undefined
|
|
7937
7965
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7938
7966
|
acs_system_id: string
|
|
@@ -9846,6 +9874,8 @@ export interface Routes {
|
|
|
9846
9874
|
is_external_modification_allowed?: boolean | undefined
|
|
9847
9875
|
/** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
9848
9876
|
preferred_code_length?: number | undefined
|
|
9877
|
+
/**
|
|
9878
|
+
* @deprecated Use `is_offline_access_code` instead. */
|
|
9849
9879
|
use_offline_access_code?: boolean | undefined
|
|
9850
9880
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
9851
9881
|
is_offline_access_code?: boolean | undefined
|
|
@@ -10017,6 +10047,8 @@ export interface Routes {
|
|
|
10017
10047
|
acs_credential_id: string
|
|
10018
10048
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10019
10049
|
acs_user_id?: string | undefined
|
|
10050
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10051
|
+
connected_account_id: string
|
|
10020
10052
|
acs_credential_pool_id?: string | undefined
|
|
10021
10053
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10022
10054
|
acs_system_id: string
|
|
@@ -10172,6 +10204,8 @@ export interface Routes {
|
|
|
10172
10204
|
acs_credential_id: string
|
|
10173
10205
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10174
10206
|
acs_user_id?: string | undefined
|
|
10207
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10208
|
+
connected_account_id: string
|
|
10175
10209
|
acs_credential_pool_id?: string | undefined
|
|
10176
10210
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10177
10211
|
acs_system_id: string
|
|
@@ -10468,6 +10502,8 @@ export interface Routes {
|
|
|
10468
10502
|
acs_credential_id: string
|
|
10469
10503
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10470
10504
|
acs_user_id?: string | undefined
|
|
10505
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10506
|
+
connected_account_id: string
|
|
10471
10507
|
acs_credential_pool_id?: string | undefined
|
|
10472
10508
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10473
10509
|
acs_system_id: string
|
|
@@ -10621,6 +10657,8 @@ export interface Routes {
|
|
|
10621
10657
|
acs_credential_id: string
|
|
10622
10658
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10623
10659
|
acs_user_id?: string | undefined
|
|
10660
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10661
|
+
connected_account_id: string
|
|
10624
10662
|
acs_credential_pool_id?: string | undefined
|
|
10625
10663
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10626
10664
|
acs_system_id: string
|
|
@@ -11946,6 +11984,12 @@ export interface Routes {
|
|
|
11946
11984
|
door_description?: string | undefined
|
|
11947
11985
|
}
|
|
11948
11986
|
| undefined
|
|
11987
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
11988
|
+
can_unlock_with_mobile_key?: boolean | undefined
|
|
11989
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
11990
|
+
can_unlock_with_card?: boolean | undefined
|
|
11991
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
11992
|
+
can_unlock_with_code?: boolean | undefined
|
|
11949
11993
|
}>
|
|
11950
11994
|
}
|
|
11951
11995
|
}
|
|
@@ -12419,6 +12463,8 @@ export interface Routes {
|
|
|
12419
12463
|
acs_credential_id: string
|
|
12420
12464
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12421
12465
|
acs_user_id?: string | undefined
|
|
12466
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12467
|
+
connected_account_id: string
|
|
12422
12468
|
acs_credential_pool_id?: string | undefined
|
|
12423
12469
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12424
12470
|
acs_system_id: string
|
|
@@ -12644,6 +12690,8 @@ export interface Routes {
|
|
|
12644
12690
|
acs_credential_id: string
|
|
12645
12691
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12646
12692
|
acs_user_id?: string | undefined
|
|
12693
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12694
|
+
connected_account_id: string
|
|
12647
12695
|
acs_credential_pool_id?: string | undefined
|
|
12648
12696
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12649
12697
|
acs_system_id: string
|
|
@@ -12823,6 +12871,8 @@ export interface Routes {
|
|
|
12823
12871
|
acs_credential_id: string
|
|
12824
12872
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12825
12873
|
acs_user_id?: string | undefined
|
|
12874
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12875
|
+
connected_account_id: string
|
|
12826
12876
|
acs_credential_pool_id?: string | undefined
|
|
12827
12877
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12828
12878
|
acs_system_id: string
|
|
@@ -13006,6 +13056,8 @@ export interface Routes {
|
|
|
13006
13056
|
acs_credential_id: string
|
|
13007
13057
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13008
13058
|
acs_user_id?: string | undefined
|
|
13059
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13060
|
+
connected_account_id: string
|
|
13009
13061
|
acs_credential_pool_id?: string | undefined
|
|
13010
13062
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13011
13063
|
acs_system_id: string
|
|
@@ -13196,6 +13248,8 @@ export interface Routes {
|
|
|
13196
13248
|
acs_credential_id: string
|
|
13197
13249
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13198
13250
|
acs_user_id?: string | undefined
|
|
13251
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13252
|
+
connected_account_id: string
|
|
13199
13253
|
acs_credential_pool_id?: string | undefined
|
|
13200
13254
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13201
13255
|
acs_system_id: string
|
|
@@ -13469,6 +13523,12 @@ export interface Routes {
|
|
|
13469
13523
|
door_description?: string | undefined
|
|
13470
13524
|
}
|
|
13471
13525
|
| undefined
|
|
13526
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
13527
|
+
can_unlock_with_mobile_key?: boolean | undefined
|
|
13528
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
13529
|
+
can_unlock_with_card?: boolean | undefined
|
|
13530
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
13531
|
+
can_unlock_with_code?: boolean | undefined
|
|
13472
13532
|
}>
|
|
13473
13533
|
}
|
|
13474
13534
|
}
|
|
@@ -13497,6 +13557,8 @@ export interface Routes {
|
|
|
13497
13557
|
acs_credential_id: string
|
|
13498
13558
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13499
13559
|
acs_user_id?: string | undefined
|
|
13560
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13561
|
+
connected_account_id: string
|
|
13500
13562
|
acs_credential_pool_id?: string | undefined
|
|
13501
13563
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13502
13564
|
acs_system_id: string
|
|
@@ -13664,6 +13726,8 @@ export interface Routes {
|
|
|
13664
13726
|
acs_credential_id: string
|
|
13665
13727
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13666
13728
|
acs_user_id?: string | undefined
|
|
13729
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13730
|
+
connected_account_id: string
|
|
13667
13731
|
acs_credential_pool_id?: string | undefined
|
|
13668
13732
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13669
13733
|
acs_system_id: string
|
|
@@ -13845,6 +13909,8 @@ export interface Routes {
|
|
|
13845
13909
|
acs_credential_id: string
|
|
13846
13910
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13847
13911
|
acs_user_id?: string | undefined
|
|
13912
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13913
|
+
connected_account_id: string
|
|
13848
13914
|
acs_credential_pool_id?: string | undefined
|
|
13849
13915
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13850
13916
|
acs_system_id: string
|
|
@@ -14020,6 +14086,8 @@ export interface Routes {
|
|
|
14020
14086
|
acs_credential_id: string
|
|
14021
14087
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14022
14088
|
acs_user_id?: string | undefined
|
|
14089
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14090
|
+
connected_account_id: string
|
|
14023
14091
|
acs_credential_pool_id?: string | undefined
|
|
14024
14092
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14025
14093
|
acs_system_id: string
|
|
@@ -14335,6 +14403,8 @@ export interface Routes {
|
|
|
14335
14403
|
acs_credential_id: string
|
|
14336
14404
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14337
14405
|
acs_user_id?: string | undefined
|
|
14406
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14407
|
+
connected_account_id: string
|
|
14338
14408
|
acs_credential_pool_id?: string | undefined
|
|
14339
14409
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14340
14410
|
acs_system_id: string
|
|
@@ -14490,6 +14560,8 @@ export interface Routes {
|
|
|
14490
14560
|
acs_credential_id: string
|
|
14491
14561
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14492
14562
|
acs_user_id?: string | undefined
|
|
14563
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14564
|
+
connected_account_id: string
|
|
14493
14565
|
acs_credential_pool_id?: string | undefined
|
|
14494
14566
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14495
14567
|
acs_system_id: string
|
|
@@ -14786,6 +14858,8 @@ export interface Routes {
|
|
|
14786
14858
|
acs_credential_id: string
|
|
14787
14859
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14788
14860
|
acs_user_id?: string | undefined
|
|
14861
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14862
|
+
connected_account_id: string
|
|
14789
14863
|
acs_credential_pool_id?: string | undefined
|
|
14790
14864
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14791
14865
|
acs_system_id: string
|
|
@@ -14939,6 +15013,8 @@ export interface Routes {
|
|
|
14939
15013
|
acs_credential_id: string
|
|
14940
15014
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14941
15015
|
acs_user_id?: string | undefined
|
|
15016
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15017
|
+
connected_account_id: string
|
|
14942
15018
|
acs_credential_pool_id?: string | undefined
|
|
14943
15019
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14944
15020
|
acs_system_id: string
|
|
@@ -15839,6 +15915,8 @@ export interface Routes {
|
|
|
15839
15915
|
acs_credential_id: string
|
|
15840
15916
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15841
15917
|
acs_user_id?: string | undefined
|
|
15918
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15919
|
+
connected_account_id: string
|
|
15842
15920
|
acs_credential_pool_id?: string | undefined
|
|
15843
15921
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15844
15922
|
acs_system_id: string
|
|
@@ -15994,6 +16072,8 @@ export interface Routes {
|
|
|
15994
16072
|
acs_credential_id: string
|
|
15995
16073
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15996
16074
|
acs_user_id?: string | undefined
|
|
16075
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16076
|
+
connected_account_id: string
|
|
15997
16077
|
acs_credential_pool_id?: string | undefined
|
|
15998
16078
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15999
16079
|
acs_system_id: string
|
|
@@ -16290,6 +16370,8 @@ export interface Routes {
|
|
|
16290
16370
|
acs_credential_id: string
|
|
16291
16371
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16292
16372
|
acs_user_id?: string | undefined
|
|
16373
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16374
|
+
connected_account_id: string
|
|
16293
16375
|
acs_credential_pool_id?: string | undefined
|
|
16294
16376
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
16295
16377
|
acs_system_id: string
|
|
@@ -16443,6 +16525,8 @@ export interface Routes {
|
|
|
16443
16525
|
acs_credential_id: string
|
|
16444
16526
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16445
16527
|
acs_user_id?: string | undefined
|
|
16528
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16529
|
+
connected_account_id: string
|
|
16446
16530
|
acs_credential_pool_id?: string | undefined
|
|
16447
16531
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
16448
16532
|
acs_system_id: string
|
|
@@ -17442,6 +17526,8 @@ export interface Routes {
|
|
|
17442
17526
|
acs_credential_id: string
|
|
17443
17527
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17444
17528
|
acs_user_id?: string | undefined
|
|
17529
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17530
|
+
connected_account_id: string
|
|
17445
17531
|
acs_credential_pool_id?: string | undefined
|
|
17446
17532
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17447
17533
|
acs_system_id: string
|
|
@@ -17597,6 +17683,8 @@ export interface Routes {
|
|
|
17597
17683
|
acs_credential_id: string
|
|
17598
17684
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17599
17685
|
acs_user_id?: string | undefined
|
|
17686
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17687
|
+
connected_account_id: string
|
|
17600
17688
|
acs_credential_pool_id?: string | undefined
|
|
17601
17689
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17602
17690
|
acs_system_id: string
|
|
@@ -17893,6 +17981,8 @@ export interface Routes {
|
|
|
17893
17981
|
acs_credential_id: string
|
|
17894
17982
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17895
17983
|
acs_user_id?: string | undefined
|
|
17984
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17985
|
+
connected_account_id: string
|
|
17896
17986
|
acs_credential_pool_id?: string | undefined
|
|
17897
17987
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17898
17988
|
acs_system_id: string
|
|
@@ -18046,6 +18136,8 @@ export interface Routes {
|
|
|
18046
18136
|
acs_credential_id: string
|
|
18047
18137
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18048
18138
|
acs_user_id?: string | undefined
|
|
18139
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18140
|
+
connected_account_id: string
|
|
18049
18141
|
acs_credential_pool_id?: string | undefined
|
|
18050
18142
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
18051
18143
|
acs_system_id: string
|
|
@@ -18995,6 +19087,12 @@ export interface Routes {
|
|
|
18995
19087
|
door_description?: string | undefined
|
|
18996
19088
|
}
|
|
18997
19089
|
| undefined
|
|
19090
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
19091
|
+
can_unlock_with_mobile_key?: boolean | undefined
|
|
19092
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
19093
|
+
can_unlock_with_card?: boolean | undefined
|
|
19094
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
19095
|
+
can_unlock_with_code?: boolean | undefined
|
|
18998
19096
|
}
|
|
18999
19097
|
}
|
|
19000
19098
|
}
|
|
@@ -19148,6 +19246,12 @@ export interface Routes {
|
|
|
19148
19246
|
door_description?: string | undefined
|
|
19149
19247
|
}
|
|
19150
19248
|
| undefined
|
|
19249
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
19250
|
+
can_unlock_with_mobile_key?: boolean | undefined
|
|
19251
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
19252
|
+
can_unlock_with_card?: boolean | undefined
|
|
19253
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
19254
|
+
can_unlock_with_code?: boolean | undefined
|
|
19151
19255
|
}>
|
|
19152
19256
|
}
|
|
19153
19257
|
}
|
|
@@ -19169,6 +19273,8 @@ export interface Routes {
|
|
|
19169
19273
|
acs_credential_id: string
|
|
19170
19274
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19171
19275
|
acs_user_id?: string | undefined
|
|
19276
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19277
|
+
connected_account_id: string
|
|
19172
19278
|
acs_credential_pool_id?: string | undefined
|
|
19173
19279
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
19174
19280
|
acs_system_id: string
|
|
@@ -20830,6 +20936,12 @@ export interface Routes {
|
|
|
20830
20936
|
door_description?: string | undefined
|
|
20831
20937
|
}
|
|
20832
20938
|
| undefined
|
|
20939
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
20940
|
+
can_unlock_with_mobile_key?: boolean | undefined
|
|
20941
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
20942
|
+
can_unlock_with_card?: boolean | undefined
|
|
20943
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
20944
|
+
can_unlock_with_code?: boolean | undefined
|
|
20833
20945
|
}>
|
|
20834
20946
|
}
|
|
20835
20947
|
}
|
|
@@ -21612,6 +21724,8 @@ export interface Routes {
|
|
|
21612
21724
|
acs_credential_id: string
|
|
21613
21725
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21614
21726
|
acs_user_id?: string | undefined
|
|
21727
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21728
|
+
connected_account_id: string
|
|
21615
21729
|
acs_credential_pool_id?: string | undefined
|
|
21616
21730
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
21617
21731
|
acs_system_id: string
|
|
@@ -21767,6 +21881,8 @@ export interface Routes {
|
|
|
21767
21881
|
acs_credential_id: string
|
|
21768
21882
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21769
21883
|
acs_user_id?: string | undefined
|
|
21884
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21885
|
+
connected_account_id: string
|
|
21770
21886
|
acs_credential_pool_id?: string | undefined
|
|
21771
21887
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
21772
21888
|
acs_system_id: string
|
|
@@ -22063,6 +22179,8 @@ export interface Routes {
|
|
|
22063
22179
|
acs_credential_id: string
|
|
22064
22180
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22065
22181
|
acs_user_id?: string | undefined
|
|
22182
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22183
|
+
connected_account_id: string
|
|
22066
22184
|
acs_credential_pool_id?: string | undefined
|
|
22067
22185
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
22068
22186
|
acs_system_id: string
|
|
@@ -22216,6 +22334,8 @@ export interface Routes {
|
|
|
22216
22334
|
acs_credential_id: string
|
|
22217
22335
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22218
22336
|
acs_user_id?: string | undefined
|
|
22337
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22338
|
+
connected_account_id: string
|
|
22219
22339
|
acs_credential_pool_id?: string | undefined
|
|
22220
22340
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
22221
22341
|
acs_system_id: string
|
|
@@ -23109,6 +23229,8 @@ export interface Routes {
|
|
|
23109
23229
|
acs_credential_id: string
|
|
23110
23230
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23111
23231
|
acs_user_id?: string | undefined
|
|
23232
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23233
|
+
connected_account_id: string
|
|
23112
23234
|
acs_credential_pool_id?: string | undefined
|
|
23113
23235
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
23114
23236
|
acs_system_id: string
|
|
@@ -23264,6 +23386,8 @@ export interface Routes {
|
|
|
23264
23386
|
acs_credential_id: string
|
|
23265
23387
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23266
23388
|
acs_user_id?: string | undefined
|
|
23389
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23390
|
+
connected_account_id: string
|
|
23267
23391
|
acs_credential_pool_id?: string | undefined
|
|
23268
23392
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
23269
23393
|
acs_system_id: string
|
|
@@ -23560,6 +23684,8 @@ export interface Routes {
|
|
|
23560
23684
|
acs_credential_id: string
|
|
23561
23685
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23562
23686
|
acs_user_id?: string | undefined
|
|
23687
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23688
|
+
connected_account_id: string
|
|
23563
23689
|
acs_credential_pool_id?: string | undefined
|
|
23564
23690
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
23565
23691
|
acs_system_id: string
|
|
@@ -23713,6 +23839,8 @@ export interface Routes {
|
|
|
23713
23839
|
acs_credential_id: string
|
|
23714
23840
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23715
23841
|
acs_user_id?: string | undefined
|
|
23842
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23843
|
+
connected_account_id: string
|
|
23716
23844
|
acs_credential_pool_id?: string | undefined
|
|
23717
23845
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
23718
23846
|
acs_system_id: string
|
|
@@ -25286,6 +25414,8 @@ export interface Routes {
|
|
|
25286
25414
|
/** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
25287
25415
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
25288
25416
|
customer_ids?: string[] | undefined
|
|
25417
|
+
/** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
|
|
25418
|
+
search?: string | undefined
|
|
25289
25419
|
/** Maximum number of records to return per page. */
|
|
25290
25420
|
limit?: number
|
|
25291
25421
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
@@ -27580,6 +27710,7 @@ export interface Routes {
|
|
|
27580
27710
|
can_simulate_removal?: boolean | undefined
|
|
27581
27711
|
can_simulate_connection?: boolean | undefined
|
|
27582
27712
|
can_simulate_disconnection?: boolean | undefined
|
|
27713
|
+
can_unlock_with_code?: boolean | undefined
|
|
27583
27714
|
}
|
|
27584
27715
|
}
|
|
27585
27716
|
}
|
|
@@ -27754,6 +27885,7 @@ export interface Routes {
|
|
|
27754
27885
|
| 'can_simulate_removal'
|
|
27755
27886
|
| 'can_simulate_connection'
|
|
27756
27887
|
| 'can_simulate_disconnection'
|
|
27888
|
+
| 'can_unlock_with_code'
|
|
27757
27889
|
>
|
|
27758
27890
|
| undefined
|
|
27759
27891
|
/** */
|
|
@@ -27770,6 +27902,7 @@ export interface Routes {
|
|
|
27770
27902
|
| 'can_simulate_removal'
|
|
27771
27903
|
| 'can_simulate_connection'
|
|
27772
27904
|
| 'can_simulate_disconnection'
|
|
27905
|
+
| 'can_unlock_with_code'
|
|
27773
27906
|
>
|
|
27774
27907
|
| undefined
|
|
27775
27908
|
/**
|
|
@@ -27777,6 +27910,8 @@ export interface Routes {
|
|
|
27777
27910
|
unstable_location_id?: (string | null) | undefined
|
|
27778
27911
|
/** ID of the space for which you want to list devices. */
|
|
27779
27912
|
space_id?: string | undefined
|
|
27913
|
+
/** 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`. */
|
|
27914
|
+
search?: string | undefined
|
|
27780
27915
|
}
|
|
27781
27916
|
formData: {}
|
|
27782
27917
|
jsonResponse: {
|
|
@@ -29126,6 +29261,7 @@ export interface Routes {
|
|
|
29126
29261
|
can_simulate_removal?: boolean | undefined
|
|
29127
29262
|
can_simulate_connection?: boolean | undefined
|
|
29128
29263
|
can_simulate_disconnection?: boolean | undefined
|
|
29264
|
+
can_unlock_with_code?: boolean | undefined
|
|
29129
29265
|
}>
|
|
29130
29266
|
/** Information about the current page of results. */
|
|
29131
29267
|
pagination: {
|
|
@@ -29226,6 +29362,7 @@ export interface Routes {
|
|
|
29226
29362
|
can_simulate_removal?: boolean | undefined
|
|
29227
29363
|
can_simulate_connection?: boolean | undefined
|
|
29228
29364
|
can_simulate_disconnection?: boolean | undefined
|
|
29365
|
+
can_unlock_with_code?: boolean | undefined
|
|
29229
29366
|
}>
|
|
29230
29367
|
}
|
|
29231
29368
|
}
|
|
@@ -29753,6 +29890,7 @@ export interface Routes {
|
|
|
29753
29890
|
can_simulate_removal?: boolean | undefined
|
|
29754
29891
|
can_simulate_connection?: boolean | undefined
|
|
29755
29892
|
can_simulate_disconnection?: boolean | undefined
|
|
29893
|
+
can_unlock_with_code?: boolean | undefined
|
|
29756
29894
|
}
|
|
29757
29895
|
}
|
|
29758
29896
|
}
|
|
@@ -29927,6 +30065,7 @@ export interface Routes {
|
|
|
29927
30065
|
| 'can_simulate_removal'
|
|
29928
30066
|
| 'can_simulate_connection'
|
|
29929
30067
|
| 'can_simulate_disconnection'
|
|
30068
|
+
| 'can_unlock_with_code'
|
|
29930
30069
|
>
|
|
29931
30070
|
| undefined
|
|
29932
30071
|
/** */
|
|
@@ -29943,6 +30082,7 @@ export interface Routes {
|
|
|
29943
30082
|
| 'can_simulate_removal'
|
|
29944
30083
|
| 'can_simulate_connection'
|
|
29945
30084
|
| 'can_simulate_disconnection'
|
|
30085
|
+
| 'can_unlock_with_code'
|
|
29946
30086
|
>
|
|
29947
30087
|
| undefined
|
|
29948
30088
|
/**
|
|
@@ -29950,6 +30090,8 @@ export interface Routes {
|
|
|
29950
30090
|
unstable_location_id?: (string | null) | undefined
|
|
29951
30091
|
/** ID of the space for which you want to list devices. */
|
|
29952
30092
|
space_id?: string | undefined
|
|
30093
|
+
/** 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`. */
|
|
30094
|
+
search?: string | undefined
|
|
29953
30095
|
}
|
|
29954
30096
|
formData: {}
|
|
29955
30097
|
jsonResponse: {
|
|
@@ -30427,6 +30569,7 @@ export interface Routes {
|
|
|
30427
30569
|
can_simulate_removal?: boolean | undefined
|
|
30428
30570
|
can_simulate_connection?: boolean | undefined
|
|
30429
30571
|
can_simulate_disconnection?: boolean | undefined
|
|
30572
|
+
can_unlock_with_code?: boolean | undefined
|
|
30430
30573
|
}>
|
|
30431
30574
|
}
|
|
30432
30575
|
}
|
|
@@ -35072,6 +35215,7 @@ export interface Routes {
|
|
|
35072
35215
|
can_simulate_removal?: boolean | undefined
|
|
35073
35216
|
can_simulate_connection?: boolean | undefined
|
|
35074
35217
|
can_simulate_disconnection?: boolean | undefined
|
|
35218
|
+
can_unlock_with_code?: boolean | undefined
|
|
35075
35219
|
}
|
|
35076
35220
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
35077
35221
|
device: {
|
|
@@ -36420,6 +36564,7 @@ export interface Routes {
|
|
|
36420
36564
|
can_simulate_removal?: boolean | undefined
|
|
36421
36565
|
can_simulate_connection?: boolean | undefined
|
|
36422
36566
|
can_simulate_disconnection?: boolean | undefined
|
|
36567
|
+
can_unlock_with_code?: boolean | undefined
|
|
36423
36568
|
}
|
|
36424
36569
|
}
|
|
36425
36570
|
}
|
|
@@ -36559,6 +36704,7 @@ export interface Routes {
|
|
|
36559
36704
|
| 'can_simulate_removal'
|
|
36560
36705
|
| 'can_simulate_connection'
|
|
36561
36706
|
| 'can_simulate_disconnection'
|
|
36707
|
+
| 'can_unlock_with_code'
|
|
36562
36708
|
>
|
|
36563
36709
|
| undefined
|
|
36564
36710
|
/** */
|
|
@@ -36575,6 +36721,7 @@ export interface Routes {
|
|
|
36575
36721
|
| 'can_simulate_removal'
|
|
36576
36722
|
| 'can_simulate_connection'
|
|
36577
36723
|
| 'can_simulate_disconnection'
|
|
36724
|
+
| 'can_unlock_with_code'
|
|
36578
36725
|
>
|
|
36579
36726
|
| undefined
|
|
36580
36727
|
/**
|
|
@@ -36582,6 +36729,8 @@ export interface Routes {
|
|
|
36582
36729
|
unstable_location_id?: (string | null) | undefined
|
|
36583
36730
|
/** ID of the space for which you want to list devices. */
|
|
36584
36731
|
space_id?: string | undefined
|
|
36732
|
+
/** 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`. */
|
|
36733
|
+
search?: string | undefined
|
|
36585
36734
|
}
|
|
36586
36735
|
formData: {}
|
|
36587
36736
|
jsonResponse: {
|
|
@@ -37931,6 +38080,7 @@ export interface Routes {
|
|
|
37931
38080
|
can_simulate_removal?: boolean | undefined
|
|
37932
38081
|
can_simulate_connection?: boolean | undefined
|
|
37933
38082
|
can_simulate_disconnection?: boolean | undefined
|
|
38083
|
+
can_unlock_with_code?: boolean | undefined
|
|
37934
38084
|
}>
|
|
37935
38085
|
devices: Array<{
|
|
37936
38086
|
/** ID of the device. */
|
|
@@ -39278,6 +39428,7 @@ export interface Routes {
|
|
|
39278
39428
|
can_simulate_removal?: boolean | undefined
|
|
39279
39429
|
can_simulate_connection?: boolean | undefined
|
|
39280
39430
|
can_simulate_disconnection?: boolean | undefined
|
|
39431
|
+
can_unlock_with_code?: boolean | undefined
|
|
39281
39432
|
}>
|
|
39282
39433
|
}
|
|
39283
39434
|
}
|
|
@@ -39446,6 +39597,8 @@ export interface Routes {
|
|
|
39446
39597
|
acs_credential_id: string
|
|
39447
39598
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39448
39599
|
acs_user_id?: string | undefined
|
|
39600
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39601
|
+
connected_account_id: string
|
|
39449
39602
|
acs_credential_pool_id?: string | undefined
|
|
39450
39603
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
39451
39604
|
acs_system_id: string
|
|
@@ -39601,6 +39754,8 @@ export interface Routes {
|
|
|
39601
39754
|
acs_credential_id: string
|
|
39602
39755
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39603
39756
|
acs_user_id?: string | undefined
|
|
39757
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39758
|
+
connected_account_id: string
|
|
39604
39759
|
acs_credential_pool_id?: string | undefined
|
|
39605
39760
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
39606
39761
|
acs_system_id: string
|
|
@@ -39897,6 +40052,8 @@ export interface Routes {
|
|
|
39897
40052
|
acs_credential_id: string
|
|
39898
40053
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39899
40054
|
acs_user_id?: string | undefined
|
|
40055
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40056
|
+
connected_account_id: string
|
|
39900
40057
|
acs_credential_pool_id?: string | undefined
|
|
39901
40058
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
39902
40059
|
acs_system_id: string
|
|
@@ -40050,6 +40207,8 @@ export interface Routes {
|
|
|
40050
40207
|
acs_credential_id: string
|
|
40051
40208
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40052
40209
|
acs_user_id?: string | undefined
|
|
40210
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40211
|
+
connected_account_id: string
|
|
40053
40212
|
acs_credential_pool_id?: string | undefined
|
|
40054
40213
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40055
40214
|
acs_system_id: string
|
|
@@ -40950,6 +41109,8 @@ export interface Routes {
|
|
|
40950
41109
|
acs_credential_id: string
|
|
40951
41110
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40952
41111
|
acs_user_id?: string | undefined
|
|
41112
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41113
|
+
connected_account_id: string
|
|
40953
41114
|
acs_credential_pool_id?: string | undefined
|
|
40954
41115
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40955
41116
|
acs_system_id: string
|
|
@@ -41105,6 +41266,8 @@ export interface Routes {
|
|
|
41105
41266
|
acs_credential_id: string
|
|
41106
41267
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41107
41268
|
acs_user_id?: string | undefined
|
|
41269
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41270
|
+
connected_account_id: string
|
|
41108
41271
|
acs_credential_pool_id?: string | undefined
|
|
41109
41272
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41110
41273
|
acs_system_id: string
|
|
@@ -41401,6 +41564,8 @@ export interface Routes {
|
|
|
41401
41564
|
acs_credential_id: string
|
|
41402
41565
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41403
41566
|
acs_user_id?: string | undefined
|
|
41567
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41568
|
+
connected_account_id: string
|
|
41404
41569
|
acs_credential_pool_id?: string | undefined
|
|
41405
41570
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41406
41571
|
acs_system_id: string
|
|
@@ -41554,6 +41719,8 @@ export interface Routes {
|
|
|
41554
41719
|
acs_credential_id: string
|
|
41555
41720
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41556
41721
|
acs_user_id?: string | undefined
|
|
41722
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41723
|
+
connected_account_id: string
|
|
41557
41724
|
acs_credential_pool_id?: string | undefined
|
|
41558
41725
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41559
41726
|
acs_system_id: string
|
|
@@ -42452,6 +42619,8 @@ export interface Routes {
|
|
|
42452
42619
|
acs_credential_id: string
|
|
42453
42620
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42454
42621
|
acs_user_id?: string | undefined
|
|
42622
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42623
|
+
connected_account_id: string
|
|
42455
42624
|
acs_credential_pool_id?: string | undefined
|
|
42456
42625
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
42457
42626
|
acs_system_id: string
|
|
@@ -42607,6 +42776,8 @@ export interface Routes {
|
|
|
42607
42776
|
acs_credential_id: string
|
|
42608
42777
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42609
42778
|
acs_user_id?: string | undefined
|
|
42779
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42780
|
+
connected_account_id: string
|
|
42610
42781
|
acs_credential_pool_id?: string | undefined
|
|
42611
42782
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
42612
42783
|
acs_system_id: string
|
|
@@ -42903,6 +43074,8 @@ export interface Routes {
|
|
|
42903
43074
|
acs_credential_id: string
|
|
42904
43075
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42905
43076
|
acs_user_id?: string | undefined
|
|
43077
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43078
|
+
connected_account_id: string
|
|
42906
43079
|
acs_credential_pool_id?: string | undefined
|
|
42907
43080
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
42908
43081
|
acs_system_id: string
|
|
@@ -43056,6 +43229,8 @@ export interface Routes {
|
|
|
43056
43229
|
acs_credential_id: string
|
|
43057
43230
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43058
43231
|
acs_user_id?: string | undefined
|
|
43232
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43233
|
+
connected_account_id: string
|
|
43059
43234
|
acs_credential_pool_id?: string | undefined
|
|
43060
43235
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43061
43236
|
acs_system_id: string
|
|
@@ -43956,6 +44131,8 @@ export interface Routes {
|
|
|
43956
44131
|
acs_credential_id: string
|
|
43957
44132
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43958
44133
|
acs_user_id?: string | undefined
|
|
44134
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44135
|
+
connected_account_id: string
|
|
43959
44136
|
acs_credential_pool_id?: string | undefined
|
|
43960
44137
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43961
44138
|
acs_system_id: string
|
|
@@ -44111,6 +44288,8 @@ export interface Routes {
|
|
|
44111
44288
|
acs_credential_id: string
|
|
44112
44289
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44113
44290
|
acs_user_id?: string | undefined
|
|
44291
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44292
|
+
connected_account_id: string
|
|
44114
44293
|
acs_credential_pool_id?: string | undefined
|
|
44115
44294
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44116
44295
|
acs_system_id: string
|
|
@@ -44407,6 +44586,8 @@ export interface Routes {
|
|
|
44407
44586
|
acs_credential_id: string
|
|
44408
44587
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44409
44588
|
acs_user_id?: string | undefined
|
|
44589
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44590
|
+
connected_account_id: string
|
|
44410
44591
|
acs_credential_pool_id?: string | undefined
|
|
44411
44592
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44412
44593
|
acs_system_id: string
|
|
@@ -44560,6 +44741,8 @@ export interface Routes {
|
|
|
44560
44741
|
acs_credential_id: string
|
|
44561
44742
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44562
44743
|
acs_user_id?: string | undefined
|
|
44744
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44745
|
+
connected_account_id: string
|
|
44563
44746
|
acs_credential_pool_id?: string | undefined
|
|
44564
44747
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44565
44748
|
acs_system_id: string
|
|
@@ -45377,6 +45560,7 @@ export interface Routes {
|
|
|
45377
45560
|
| 'can_simulate_removal'
|
|
45378
45561
|
| 'can_simulate_connection'
|
|
45379
45562
|
| 'can_simulate_disconnection'
|
|
45563
|
+
| 'can_unlock_with_code'
|
|
45380
45564
|
>
|
|
45381
45565
|
| undefined
|
|
45382
45566
|
/** */
|
|
@@ -45393,6 +45577,7 @@ export interface Routes {
|
|
|
45393
45577
|
| 'can_simulate_removal'
|
|
45394
45578
|
| 'can_simulate_connection'
|
|
45395
45579
|
| 'can_simulate_disconnection'
|
|
45580
|
+
| 'can_unlock_with_code'
|
|
45396
45581
|
>
|
|
45397
45582
|
| undefined
|
|
45398
45583
|
/**
|
|
@@ -45400,6 +45585,8 @@ export interface Routes {
|
|
|
45400
45585
|
unstable_location_id?: (string | null) | undefined
|
|
45401
45586
|
/** ID of the space for which you want to list devices. */
|
|
45402
45587
|
space_id?: string | undefined
|
|
45588
|
+
/** 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`. */
|
|
45589
|
+
search?: string | undefined
|
|
45403
45590
|
}
|
|
45404
45591
|
formData: {}
|
|
45405
45592
|
jsonResponse: {
|
|
@@ -46749,6 +46936,7 @@ export interface Routes {
|
|
|
46749
46936
|
can_simulate_removal?: boolean | undefined
|
|
46750
46937
|
can_simulate_connection?: boolean | undefined
|
|
46751
46938
|
can_simulate_disconnection?: boolean | undefined
|
|
46939
|
+
can_unlock_with_code?: boolean | undefined
|
|
46752
46940
|
}>
|
|
46753
46941
|
devices: Array<{
|
|
46754
46942
|
/** ID of the device. */
|
|
@@ -48096,6 +48284,7 @@ export interface Routes {
|
|
|
48096
48284
|
can_simulate_removal?: boolean | undefined
|
|
48097
48285
|
can_simulate_connection?: boolean | undefined
|
|
48098
48286
|
can_simulate_disconnection?: boolean | undefined
|
|
48287
|
+
can_unlock_with_code?: boolean | undefined
|
|
48099
48288
|
}>
|
|
48100
48289
|
}
|
|
48101
48290
|
}
|
|
@@ -48274,6 +48463,8 @@ export interface Routes {
|
|
|
48274
48463
|
acs_credential_id: string
|
|
48275
48464
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48276
48465
|
acs_user_id?: string | undefined
|
|
48466
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48467
|
+
connected_account_id: string
|
|
48277
48468
|
acs_credential_pool_id?: string | undefined
|
|
48278
48469
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48279
48470
|
acs_system_id: string
|
|
@@ -48429,6 +48620,8 @@ export interface Routes {
|
|
|
48429
48620
|
acs_credential_id: string
|
|
48430
48621
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48431
48622
|
acs_user_id?: string | undefined
|
|
48623
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48624
|
+
connected_account_id: string
|
|
48432
48625
|
acs_credential_pool_id?: string | undefined
|
|
48433
48626
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48434
48627
|
acs_system_id: string
|
|
@@ -48725,6 +48918,8 @@ export interface Routes {
|
|
|
48725
48918
|
acs_credential_id: string
|
|
48726
48919
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48727
48920
|
acs_user_id?: string | undefined
|
|
48921
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48922
|
+
connected_account_id: string
|
|
48728
48923
|
acs_credential_pool_id?: string | undefined
|
|
48729
48924
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48730
48925
|
acs_system_id: string
|
|
@@ -48878,6 +49073,8 @@ export interface Routes {
|
|
|
48878
49073
|
acs_credential_id: string
|
|
48879
49074
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48880
49075
|
acs_user_id?: string | undefined
|
|
49076
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49077
|
+
connected_account_id: string
|
|
48881
49078
|
acs_credential_pool_id?: string | undefined
|
|
48882
49079
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48883
49080
|
acs_system_id: string
|
|
@@ -49797,6 +49994,8 @@ export interface Routes {
|
|
|
49797
49994
|
acs_credential_id: string
|
|
49798
49995
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49799
49996
|
acs_user_id?: string | undefined
|
|
49997
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49998
|
+
connected_account_id: string
|
|
49800
49999
|
acs_credential_pool_id?: string | undefined
|
|
49801
50000
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49802
50001
|
acs_system_id: string
|
|
@@ -49952,6 +50151,8 @@ export interface Routes {
|
|
|
49952
50151
|
acs_credential_id: string
|
|
49953
50152
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49954
50153
|
acs_user_id?: string | undefined
|
|
50154
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50155
|
+
connected_account_id: string
|
|
49955
50156
|
acs_credential_pool_id?: string | undefined
|
|
49956
50157
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49957
50158
|
acs_system_id: string
|
|
@@ -50248,6 +50449,8 @@ export interface Routes {
|
|
|
50248
50449
|
acs_credential_id: string
|
|
50249
50450
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50250
50451
|
acs_user_id?: string | undefined
|
|
50452
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50453
|
+
connected_account_id: string
|
|
50251
50454
|
acs_credential_pool_id?: string | undefined
|
|
50252
50455
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50253
50456
|
acs_system_id: string
|
|
@@ -50401,6 +50604,8 @@ export interface Routes {
|
|
|
50401
50604
|
acs_credential_id: string
|
|
50402
50605
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50403
50606
|
acs_user_id?: string | undefined
|
|
50607
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50608
|
+
connected_account_id: string
|
|
50404
50609
|
acs_credential_pool_id?: string | undefined
|
|
50405
50610
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50406
50611
|
acs_system_id: string
|
|
@@ -51374,6 +51579,8 @@ export interface Routes {
|
|
|
51374
51579
|
acs_credential_id: string
|
|
51375
51580
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51376
51581
|
acs_user_id?: string | undefined
|
|
51582
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51583
|
+
connected_account_id: string
|
|
51377
51584
|
acs_credential_pool_id?: string | undefined
|
|
51378
51585
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
51379
51586
|
acs_system_id: string
|
|
@@ -51529,6 +51736,8 @@ export interface Routes {
|
|
|
51529
51736
|
acs_credential_id: string
|
|
51530
51737
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51531
51738
|
acs_user_id?: string | undefined
|
|
51739
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51740
|
+
connected_account_id: string
|
|
51532
51741
|
acs_credential_pool_id?: string | undefined
|
|
51533
51742
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
51534
51743
|
acs_system_id: string
|
|
@@ -51825,6 +52034,8 @@ export interface Routes {
|
|
|
51825
52034
|
acs_credential_id: string
|
|
51826
52035
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51827
52036
|
acs_user_id?: string | undefined
|
|
52037
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52038
|
+
connected_account_id: string
|
|
51828
52039
|
acs_credential_pool_id?: string | undefined
|
|
51829
52040
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
51830
52041
|
acs_system_id: string
|
|
@@ -51978,6 +52189,8 @@ export interface Routes {
|
|
|
51978
52189
|
acs_credential_id: string
|
|
51979
52190
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51980
52191
|
acs_user_id?: string | undefined
|
|
52192
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52193
|
+
connected_account_id: string
|
|
51981
52194
|
acs_credential_pool_id?: string | undefined
|
|
51982
52195
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
51983
52196
|
acs_system_id: string
|
|
@@ -53433,6 +53646,8 @@ export interface Routes {
|
|
|
53433
53646
|
acs_credential_id: string
|
|
53434
53647
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53435
53648
|
acs_user_id?: string | undefined
|
|
53649
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53650
|
+
connected_account_id: string
|
|
53436
53651
|
acs_credential_pool_id?: string | undefined
|
|
53437
53652
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53438
53653
|
acs_system_id: string
|
|
@@ -53623,6 +53838,8 @@ export interface Routes {
|
|
|
53623
53838
|
acs_credentials: Array<{
|
|
53624
53839
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53625
53840
|
acs_user_id?: string | undefined
|
|
53841
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53842
|
+
connected_account_id: string
|
|
53626
53843
|
acs_credential_pool_id?: string | undefined
|
|
53627
53844
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53628
53845
|
acs_system_id: string
|
|
@@ -53886,6 +54103,12 @@ export interface Routes {
|
|
|
53886
54103
|
door_description?: string | undefined
|
|
53887
54104
|
}
|
|
53888
54105
|
| undefined
|
|
54106
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
54107
|
+
can_unlock_with_mobile_key?: boolean | undefined
|
|
54108
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
54109
|
+
can_unlock_with_card?: boolean | undefined
|
|
54110
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
54111
|
+
can_unlock_with_code?: boolean | undefined
|
|
53889
54112
|
}>
|
|
53890
54113
|
}>
|
|
53891
54114
|
}>
|
|
@@ -54258,6 +54481,8 @@ export interface Routes {
|
|
|
54258
54481
|
acs_credential_id: string
|
|
54259
54482
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54260
54483
|
acs_user_id?: string | undefined
|
|
54484
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54485
|
+
connected_account_id: string
|
|
54261
54486
|
acs_credential_pool_id?: string | undefined
|
|
54262
54487
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
54263
54488
|
acs_system_id: string
|
|
@@ -54413,6 +54638,8 @@ export interface Routes {
|
|
|
54413
54638
|
acs_credential_id: string
|
|
54414
54639
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54415
54640
|
acs_user_id?: string | undefined
|
|
54641
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54642
|
+
connected_account_id: string
|
|
54416
54643
|
acs_credential_pool_id?: string | undefined
|
|
54417
54644
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
54418
54645
|
acs_system_id: string
|
|
@@ -54709,6 +54936,8 @@ export interface Routes {
|
|
|
54709
54936
|
acs_credential_id: string
|
|
54710
54937
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54711
54938
|
acs_user_id?: string | undefined
|
|
54939
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54940
|
+
connected_account_id: string
|
|
54712
54941
|
acs_credential_pool_id?: string | undefined
|
|
54713
54942
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
54714
54943
|
acs_system_id: string
|
|
@@ -54862,6 +55091,8 @@ export interface Routes {
|
|
|
54862
55091
|
acs_credential_id: string
|
|
54863
55092
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54864
55093
|
acs_user_id?: string | undefined
|
|
55094
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55095
|
+
connected_account_id: string
|
|
54865
55096
|
acs_credential_pool_id?: string | undefined
|
|
54866
55097
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
54867
55098
|
acs_system_id: string
|
|
@@ -55766,6 +55997,8 @@ export interface Routes {
|
|
|
55766
55997
|
acs_credential_id: string
|
|
55767
55998
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55768
55999
|
acs_user_id?: string | undefined
|
|
56000
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56001
|
+
connected_account_id: string
|
|
55769
56002
|
acs_credential_pool_id?: string | undefined
|
|
55770
56003
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
55771
56004
|
acs_system_id: string
|
|
@@ -55921,6 +56154,8 @@ export interface Routes {
|
|
|
55921
56154
|
acs_credential_id: string
|
|
55922
56155
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55923
56156
|
acs_user_id?: string | undefined
|
|
56157
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56158
|
+
connected_account_id: string
|
|
55924
56159
|
acs_credential_pool_id?: string | undefined
|
|
55925
56160
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
55926
56161
|
acs_system_id: string
|
|
@@ -56217,6 +56452,8 @@ export interface Routes {
|
|
|
56217
56452
|
acs_credential_id: string
|
|
56218
56453
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56219
56454
|
acs_user_id?: string | undefined
|
|
56455
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56456
|
+
connected_account_id: string
|
|
56220
56457
|
acs_credential_pool_id?: string | undefined
|
|
56221
56458
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
56222
56459
|
acs_system_id: string
|
|
@@ -56370,6 +56607,8 @@ export interface Routes {
|
|
|
56370
56607
|
acs_credential_id: string
|
|
56371
56608
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56372
56609
|
acs_user_id?: string | undefined
|
|
56610
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56611
|
+
connected_account_id: string
|
|
56373
56612
|
acs_credential_pool_id?: string | undefined
|
|
56374
56613
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
56375
56614
|
acs_system_id: string
|
|
@@ -57362,6 +57601,8 @@ export interface Routes {
|
|
|
57362
57601
|
acs_credential_id: string
|
|
57363
57602
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57364
57603
|
acs_user_id?: string | undefined
|
|
57604
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57605
|
+
connected_account_id: string
|
|
57365
57606
|
acs_credential_pool_id?: string | undefined
|
|
57366
57607
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57367
57608
|
acs_system_id: string
|
|
@@ -57517,6 +57758,8 @@ export interface Routes {
|
|
|
57517
57758
|
acs_credential_id: string
|
|
57518
57759
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57519
57760
|
acs_user_id?: string | undefined
|
|
57761
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57762
|
+
connected_account_id: string
|
|
57520
57763
|
acs_credential_pool_id?: string | undefined
|
|
57521
57764
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57522
57765
|
acs_system_id: string
|
|
@@ -57813,6 +58056,8 @@ export interface Routes {
|
|
|
57813
58056
|
acs_credential_id: string
|
|
57814
58057
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57815
58058
|
acs_user_id?: string | undefined
|
|
58059
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58060
|
+
connected_account_id: string
|
|
57816
58061
|
acs_credential_pool_id?: string | undefined
|
|
57817
58062
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57818
58063
|
acs_system_id: string
|
|
@@ -57966,6 +58211,8 @@ export interface Routes {
|
|
|
57966
58211
|
acs_credential_id: string
|
|
57967
58212
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57968
58213
|
acs_user_id?: string | undefined
|
|
58214
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58215
|
+
connected_account_id: string
|
|
57969
58216
|
acs_credential_pool_id?: string | undefined
|
|
57970
58217
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57971
58218
|
acs_system_id: string
|
|
@@ -60075,6 +60322,7 @@ export interface Routes {
|
|
|
60075
60322
|
can_simulate_removal?: boolean | undefined
|
|
60076
60323
|
can_simulate_connection?: boolean | undefined
|
|
60077
60324
|
can_simulate_disconnection?: boolean | undefined
|
|
60325
|
+
can_unlock_with_code?: boolean | undefined
|
|
60078
60326
|
}
|
|
60079
60327
|
}
|
|
60080
60328
|
}
|
|
@@ -60247,6 +60495,8 @@ export interface Routes {
|
|
|
60247
60495
|
acs_credential_id: string
|
|
60248
60496
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60249
60497
|
acs_user_id?: string | undefined
|
|
60498
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60499
|
+
connected_account_id: string
|
|
60250
60500
|
acs_credential_pool_id?: string | undefined
|
|
60251
60501
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
60252
60502
|
acs_system_id: string
|
|
@@ -60402,6 +60652,8 @@ export interface Routes {
|
|
|
60402
60652
|
acs_credential_id: string
|
|
60403
60653
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60404
60654
|
acs_user_id?: string | undefined
|
|
60655
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60656
|
+
connected_account_id: string
|
|
60405
60657
|
acs_credential_pool_id?: string | undefined
|
|
60406
60658
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
60407
60659
|
acs_system_id: string
|
|
@@ -60698,6 +60950,8 @@ export interface Routes {
|
|
|
60698
60950
|
acs_credential_id: string
|
|
60699
60951
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60700
60952
|
acs_user_id?: string | undefined
|
|
60953
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60954
|
+
connected_account_id: string
|
|
60701
60955
|
acs_credential_pool_id?: string | undefined
|
|
60702
60956
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
60703
60957
|
acs_system_id: string
|
|
@@ -60851,6 +61105,8 @@ export interface Routes {
|
|
|
60851
61105
|
acs_credential_id: string
|
|
60852
61106
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60853
61107
|
acs_user_id?: string | undefined
|
|
61108
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61109
|
+
connected_account_id: string
|
|
60854
61110
|
acs_credential_pool_id?: string | undefined
|
|
60855
61111
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
60856
61112
|
acs_system_id: string
|
|
@@ -61759,6 +62015,8 @@ export interface Routes {
|
|
|
61759
62015
|
acs_credential_id: string
|
|
61760
62016
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61761
62017
|
acs_user_id?: string | undefined
|
|
62018
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
62019
|
+
connected_account_id: string
|
|
61762
62020
|
acs_credential_pool_id?: string | undefined
|
|
61763
62021
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61764
62022
|
acs_system_id: string
|
|
@@ -61914,6 +62172,8 @@ export interface Routes {
|
|
|
61914
62172
|
acs_credential_id: string
|
|
61915
62173
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61916
62174
|
acs_user_id?: string | undefined
|
|
62175
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
62176
|
+
connected_account_id: string
|
|
61917
62177
|
acs_credential_pool_id?: string | undefined
|
|
61918
62178
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61919
62179
|
acs_system_id: string
|
|
@@ -62210,6 +62470,8 @@ export interface Routes {
|
|
|
62210
62470
|
acs_credential_id: string
|
|
62211
62471
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
62212
62472
|
acs_user_id?: string | undefined
|
|
62473
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
62474
|
+
connected_account_id: string
|
|
62213
62475
|
acs_credential_pool_id?: string | undefined
|
|
62214
62476
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
62215
62477
|
acs_system_id: string
|
|
@@ -62363,6 +62625,8 @@ export interface Routes {
|
|
|
62363
62625
|
acs_credential_id: string
|
|
62364
62626
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
62365
62627
|
acs_user_id?: string | undefined
|
|
62628
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
62629
|
+
connected_account_id: string
|
|
62366
62630
|
acs_credential_pool_id?: string | undefined
|
|
62367
62631
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
62368
62632
|
acs_system_id: string
|
|
@@ -63170,6 +63434,7 @@ export interface Routes {
|
|
|
63170
63434
|
| 'can_simulate_removal'
|
|
63171
63435
|
| 'can_simulate_connection'
|
|
63172
63436
|
| 'can_simulate_disconnection'
|
|
63437
|
+
| 'can_unlock_with_code'
|
|
63173
63438
|
>
|
|
63174
63439
|
| undefined
|
|
63175
63440
|
/** */
|
|
@@ -63186,6 +63451,7 @@ export interface Routes {
|
|
|
63186
63451
|
| 'can_simulate_removal'
|
|
63187
63452
|
| 'can_simulate_connection'
|
|
63188
63453
|
| 'can_simulate_disconnection'
|
|
63454
|
+
| 'can_unlock_with_code'
|
|
63189
63455
|
>
|
|
63190
63456
|
| undefined
|
|
63191
63457
|
/**
|
|
@@ -63193,6 +63459,8 @@ export interface Routes {
|
|
|
63193
63459
|
unstable_location_id?: (string | null) | undefined
|
|
63194
63460
|
/** ID of the space for which you want to list devices. */
|
|
63195
63461
|
space_id?: string | undefined
|
|
63462
|
+
/** 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`. */
|
|
63463
|
+
search?: string | undefined
|
|
63196
63464
|
}
|
|
63197
63465
|
formData: {}
|
|
63198
63466
|
jsonResponse: {
|
|
@@ -64542,6 +64810,7 @@ export interface Routes {
|
|
|
64542
64810
|
can_simulate_removal?: boolean | undefined
|
|
64543
64811
|
can_simulate_connection?: boolean | undefined
|
|
64544
64812
|
can_simulate_disconnection?: boolean | undefined
|
|
64813
|
+
can_unlock_with_code?: boolean | undefined
|
|
64545
64814
|
}>
|
|
64546
64815
|
devices: Array<{
|
|
64547
64816
|
/** ID of the device. */
|
|
@@ -65889,6 +66158,7 @@ export interface Routes {
|
|
|
65889
66158
|
can_simulate_removal?: boolean | undefined
|
|
65890
66159
|
can_simulate_connection?: boolean | undefined
|
|
65891
66160
|
can_simulate_disconnection?: boolean | undefined
|
|
66161
|
+
can_unlock_with_code?: boolean | undefined
|
|
65892
66162
|
}>
|
|
65893
66163
|
}
|
|
65894
66164
|
}
|
|
@@ -66057,6 +66327,8 @@ export interface Routes {
|
|
|
66057
66327
|
acs_credential_id: string
|
|
66058
66328
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66059
66329
|
acs_user_id?: string | undefined
|
|
66330
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66331
|
+
connected_account_id: string
|
|
66060
66332
|
acs_credential_pool_id?: string | undefined
|
|
66061
66333
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
66062
66334
|
acs_system_id: string
|
|
@@ -66212,6 +66484,8 @@ export interface Routes {
|
|
|
66212
66484
|
acs_credential_id: string
|
|
66213
66485
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66214
66486
|
acs_user_id?: string | undefined
|
|
66487
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66488
|
+
connected_account_id: string
|
|
66215
66489
|
acs_credential_pool_id?: string | undefined
|
|
66216
66490
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
66217
66491
|
acs_system_id: string
|
|
@@ -66508,6 +66782,8 @@ export interface Routes {
|
|
|
66508
66782
|
acs_credential_id: string
|
|
66509
66783
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66510
66784
|
acs_user_id?: string | undefined
|
|
66785
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66786
|
+
connected_account_id: string
|
|
66511
66787
|
acs_credential_pool_id?: string | undefined
|
|
66512
66788
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
66513
66789
|
acs_system_id: string
|
|
@@ -66661,6 +66937,8 @@ export interface Routes {
|
|
|
66661
66937
|
acs_credential_id: string
|
|
66662
66938
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66663
66939
|
acs_user_id?: string | undefined
|
|
66940
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66941
|
+
connected_account_id: string
|
|
66664
66942
|
acs_credential_pool_id?: string | undefined
|
|
66665
66943
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
66666
66944
|
acs_system_id: string
|
|
@@ -67758,6 +68036,8 @@ export interface Routes {
|
|
|
67758
68036
|
acs_credential_id: string
|
|
67759
68037
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
67760
68038
|
acs_user_id?: string | undefined
|
|
68039
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68040
|
+
connected_account_id: string
|
|
67761
68041
|
acs_credential_pool_id?: string | undefined
|
|
67762
68042
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
67763
68043
|
acs_system_id: string
|
|
@@ -67913,6 +68193,8 @@ export interface Routes {
|
|
|
67913
68193
|
acs_credential_id: string
|
|
67914
68194
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
67915
68195
|
acs_user_id?: string | undefined
|
|
68196
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68197
|
+
connected_account_id: string
|
|
67916
68198
|
acs_credential_pool_id?: string | undefined
|
|
67917
68199
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
67918
68200
|
acs_system_id: string
|
|
@@ -68209,6 +68491,8 @@ export interface Routes {
|
|
|
68209
68491
|
acs_credential_id: string
|
|
68210
68492
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68211
68493
|
acs_user_id?: string | undefined
|
|
68494
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68495
|
+
connected_account_id: string
|
|
68212
68496
|
acs_credential_pool_id?: string | undefined
|
|
68213
68497
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
68214
68498
|
acs_system_id: string
|
|
@@ -68362,6 +68646,8 @@ export interface Routes {
|
|
|
68362
68646
|
acs_credential_id: string
|
|
68363
68647
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68364
68648
|
acs_user_id?: string | undefined
|
|
68649
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68650
|
+
connected_account_id: string
|
|
68365
68651
|
acs_credential_pool_id?: string | undefined
|
|
68366
68652
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
68367
68653
|
acs_system_id: string
|
|
@@ -69293,6 +69579,8 @@ export interface Routes {
|
|
|
69293
69579
|
acs_credential_id: string
|
|
69294
69580
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69295
69581
|
acs_user_id?: string | undefined
|
|
69582
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69583
|
+
connected_account_id: string
|
|
69296
69584
|
acs_credential_pool_id?: string | undefined
|
|
69297
69585
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69298
69586
|
acs_system_id: string
|
|
@@ -69448,6 +69736,8 @@ export interface Routes {
|
|
|
69448
69736
|
acs_credential_id: string
|
|
69449
69737
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69450
69738
|
acs_user_id?: string | undefined
|
|
69739
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69740
|
+
connected_account_id: string
|
|
69451
69741
|
acs_credential_pool_id?: string | undefined
|
|
69452
69742
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69453
69743
|
acs_system_id: string
|
|
@@ -69744,6 +70034,8 @@ export interface Routes {
|
|
|
69744
70034
|
acs_credential_id: string
|
|
69745
70035
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69746
70036
|
acs_user_id?: string | undefined
|
|
70037
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70038
|
+
connected_account_id: string
|
|
69747
70039
|
acs_credential_pool_id?: string | undefined
|
|
69748
70040
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69749
70041
|
acs_system_id: string
|
|
@@ -69897,6 +70189,8 @@ export interface Routes {
|
|
|
69897
70189
|
acs_credential_id: string
|
|
69898
70190
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69899
70191
|
acs_user_id?: string | undefined
|
|
70192
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70193
|
+
connected_account_id: string
|
|
69900
70194
|
acs_credential_pool_id?: string | undefined
|
|
69901
70195
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69902
70196
|
acs_system_id: string
|
|
@@ -70925,6 +71219,8 @@ export interface Routes {
|
|
|
70925
71219
|
acs_credential_id: string
|
|
70926
71220
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70927
71221
|
acs_user_id?: string | undefined
|
|
71222
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71223
|
+
connected_account_id: string
|
|
70928
71224
|
acs_credential_pool_id?: string | undefined
|
|
70929
71225
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
70930
71226
|
acs_system_id: string
|
|
@@ -71080,6 +71376,8 @@ export interface Routes {
|
|
|
71080
71376
|
acs_credential_id: string
|
|
71081
71377
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71082
71378
|
acs_user_id?: string | undefined
|
|
71379
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71380
|
+
connected_account_id: string
|
|
71083
71381
|
acs_credential_pool_id?: string | undefined
|
|
71084
71382
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71085
71383
|
acs_system_id: string
|
|
@@ -71376,6 +71674,8 @@ export interface Routes {
|
|
|
71376
71674
|
acs_credential_id: string
|
|
71377
71675
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71378
71676
|
acs_user_id?: string | undefined
|
|
71677
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71678
|
+
connected_account_id: string
|
|
71379
71679
|
acs_credential_pool_id?: string | undefined
|
|
71380
71680
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71381
71681
|
acs_system_id: string
|
|
@@ -71529,6 +71829,8 @@ export interface Routes {
|
|
|
71529
71829
|
acs_credential_id: string
|
|
71530
71830
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71531
71831
|
acs_user_id?: string | undefined
|
|
71832
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71833
|
+
connected_account_id: string
|
|
71532
71834
|
acs_credential_pool_id?: string | undefined
|
|
71533
71835
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71534
71836
|
acs_system_id: string
|
|
@@ -73225,6 +73527,8 @@ export interface Routes {
|
|
|
73225
73527
|
queryParams: {}
|
|
73226
73528
|
jsonBody: {}
|
|
73227
73529
|
commonParams: {
|
|
73530
|
+
/** 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`. */
|
|
73531
|
+
search?: string | undefined
|
|
73228
73532
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
|
73229
73533
|
credential_manager_acs_system_id?: string | undefined
|
|
73230
73534
|
}
|
|
@@ -74621,6 +74925,7 @@ export interface Routes {
|
|
|
74621
74925
|
can_simulate_removal?: boolean | undefined
|
|
74622
74926
|
can_simulate_connection?: boolean | undefined
|
|
74623
74927
|
can_simulate_disconnection?: boolean | undefined
|
|
74928
|
+
can_unlock_with_code?: boolean | undefined
|
|
74624
74929
|
}>
|
|
74625
74930
|
/**
|
|
74626
74931
|
* @deprecated Use devices. */
|
|
@@ -75970,6 +76275,7 @@ export interface Routes {
|
|
|
75970
76275
|
can_simulate_removal?: boolean | undefined
|
|
75971
76276
|
can_simulate_connection?: boolean | undefined
|
|
75972
76277
|
can_simulate_disconnection?: boolean | undefined
|
|
76278
|
+
can_unlock_with_code?: boolean | undefined
|
|
75973
76279
|
}>
|
|
75974
76280
|
}
|
|
75975
76281
|
}
|
|
@@ -76854,6 +77160,8 @@ export interface Routes {
|
|
|
76854
77160
|
acs_credential_id: string
|
|
76855
77161
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
76856
77162
|
acs_user_id?: string | undefined
|
|
77163
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77164
|
+
connected_account_id: string
|
|
76857
77165
|
acs_credential_pool_id?: string | undefined
|
|
76858
77166
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
76859
77167
|
acs_system_id: string
|
|
@@ -77009,6 +77317,8 @@ export interface Routes {
|
|
|
77009
77317
|
acs_credential_id: string
|
|
77010
77318
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77011
77319
|
acs_user_id?: string | undefined
|
|
77320
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77321
|
+
connected_account_id: string
|
|
77012
77322
|
acs_credential_pool_id?: string | undefined
|
|
77013
77323
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
77014
77324
|
acs_system_id: string
|
|
@@ -77305,6 +77615,8 @@ export interface Routes {
|
|
|
77305
77615
|
acs_credential_id: string
|
|
77306
77616
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77307
77617
|
acs_user_id?: string | undefined
|
|
77618
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77619
|
+
connected_account_id: string
|
|
77308
77620
|
acs_credential_pool_id?: string | undefined
|
|
77309
77621
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
77310
77622
|
acs_system_id: string
|
|
@@ -77458,6 +77770,8 @@ export interface Routes {
|
|
|
77458
77770
|
acs_credential_id: string
|
|
77459
77771
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77460
77772
|
acs_user_id?: string | undefined
|
|
77773
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77774
|
+
connected_account_id: string
|
|
77461
77775
|
acs_credential_pool_id?: string | undefined
|
|
77462
77776
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
77463
77777
|
acs_system_id: string
|