@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;
|
|
@@ -186,6 +188,8 @@ export interface Routes {
|
|
|
186
188
|
acs_credential_id: string;
|
|
187
189
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
188
190
|
acs_user_id?: string | undefined;
|
|
191
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
192
|
+
connected_account_id: string;
|
|
189
193
|
acs_credential_pool_id?: string | undefined;
|
|
190
194
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
191
195
|
acs_system_id: string;
|
|
@@ -312,6 +316,8 @@ export interface Routes {
|
|
|
312
316
|
acs_credential_id: string;
|
|
313
317
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
314
318
|
acs_user_id?: string | undefined;
|
|
319
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
320
|
+
connected_account_id: string;
|
|
315
321
|
acs_credential_pool_id?: string | undefined;
|
|
316
322
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
317
323
|
acs_system_id: string;
|
|
@@ -561,6 +567,8 @@ export interface Routes {
|
|
|
561
567
|
acs_credential_id: string;
|
|
562
568
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
563
569
|
acs_user_id?: string | undefined;
|
|
570
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
571
|
+
connected_account_id: string;
|
|
564
572
|
acs_credential_pool_id?: string | undefined;
|
|
565
573
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
566
574
|
acs_system_id: string;
|
|
@@ -687,6 +695,8 @@ export interface Routes {
|
|
|
687
695
|
acs_credential_id: string;
|
|
688
696
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
689
697
|
acs_user_id?: string | undefined;
|
|
698
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
699
|
+
connected_account_id: string;
|
|
690
700
|
acs_credential_pool_id?: string | undefined;
|
|
691
701
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
692
702
|
acs_system_id: string;
|
|
@@ -1894,6 +1904,8 @@ export interface Routes {
|
|
|
1894
1904
|
allow_external_modification?: boolean | undefined;
|
|
1895
1905
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
1896
1906
|
is_external_modification_allowed?: boolean | undefined;
|
|
1907
|
+
/**
|
|
1908
|
+
* @deprecated Use `is_offline_access_code` instead. */
|
|
1897
1909
|
use_offline_access_code?: boolean | undefined;
|
|
1898
1910
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
1899
1911
|
is_offline_access_code?: boolean | undefined;
|
|
@@ -2567,6 +2579,8 @@ export interface Routes {
|
|
|
2567
2579
|
acs_credential_id: string;
|
|
2568
2580
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2569
2581
|
acs_user_id?: string | undefined;
|
|
2582
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2583
|
+
connected_account_id: string;
|
|
2570
2584
|
acs_credential_pool_id?: string | undefined;
|
|
2571
2585
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2572
2586
|
acs_system_id: string;
|
|
@@ -2693,6 +2707,8 @@ export interface Routes {
|
|
|
2693
2707
|
acs_credential_id: string;
|
|
2694
2708
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2695
2709
|
acs_user_id?: string | undefined;
|
|
2710
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2711
|
+
connected_account_id: string;
|
|
2696
2712
|
acs_credential_pool_id?: string | undefined;
|
|
2697
2713
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2698
2714
|
acs_system_id: string;
|
|
@@ -2942,6 +2958,8 @@ export interface Routes {
|
|
|
2942
2958
|
acs_credential_id: string;
|
|
2943
2959
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2944
2960
|
acs_user_id?: string | undefined;
|
|
2961
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2962
|
+
connected_account_id: string;
|
|
2945
2963
|
acs_credential_pool_id?: string | undefined;
|
|
2946
2964
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2947
2965
|
acs_system_id: string;
|
|
@@ -3068,6 +3086,8 @@ export interface Routes {
|
|
|
3068
3086
|
acs_credential_id: string;
|
|
3069
3087
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3070
3088
|
acs_user_id?: string | undefined;
|
|
3089
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3090
|
+
connected_account_id: string;
|
|
3071
3091
|
acs_credential_pool_id?: string | undefined;
|
|
3072
3092
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
3073
3093
|
acs_system_id: string;
|
|
@@ -6554,6 +6574,8 @@ export interface Routes {
|
|
|
6554
6574
|
acs_credential_id: string;
|
|
6555
6575
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6556
6576
|
acs_user_id?: string | undefined;
|
|
6577
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6578
|
+
connected_account_id: string;
|
|
6557
6579
|
acs_credential_pool_id?: string | undefined;
|
|
6558
6580
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
6559
6581
|
acs_system_id: string;
|
|
@@ -6680,6 +6702,8 @@ export interface Routes {
|
|
|
6680
6702
|
acs_credential_id: string;
|
|
6681
6703
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6682
6704
|
acs_user_id?: string | undefined;
|
|
6705
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6706
|
+
connected_account_id: string;
|
|
6683
6707
|
acs_credential_pool_id?: string | undefined;
|
|
6684
6708
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
6685
6709
|
acs_system_id: string;
|
|
@@ -6929,6 +6953,8 @@ export interface Routes {
|
|
|
6929
6953
|
acs_credential_id: string;
|
|
6930
6954
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6931
6955
|
acs_user_id?: string | undefined;
|
|
6956
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6957
|
+
connected_account_id: string;
|
|
6932
6958
|
acs_credential_pool_id?: string | undefined;
|
|
6933
6959
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
6934
6960
|
acs_system_id: string;
|
|
@@ -7055,6 +7081,8 @@ export interface Routes {
|
|
|
7055
7081
|
acs_credential_id: string;
|
|
7056
7082
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7057
7083
|
acs_user_id?: string | undefined;
|
|
7084
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7085
|
+
connected_account_id: string;
|
|
7058
7086
|
acs_credential_pool_id?: string | undefined;
|
|
7059
7087
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7060
7088
|
acs_system_id: string;
|
|
@@ -8784,6 +8812,8 @@ export interface Routes {
|
|
|
8784
8812
|
is_external_modification_allowed?: boolean | undefined;
|
|
8785
8813
|
/** 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. */
|
|
8786
8814
|
preferred_code_length?: number | undefined;
|
|
8815
|
+
/**
|
|
8816
|
+
* @deprecated Use `is_offline_access_code` instead. */
|
|
8787
8817
|
use_offline_access_code?: boolean | undefined;
|
|
8788
8818
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
8789
8819
|
is_offline_access_code?: boolean | undefined;
|
|
@@ -8943,6 +8973,8 @@ export interface Routes {
|
|
|
8943
8973
|
acs_credential_id: string;
|
|
8944
8974
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8945
8975
|
acs_user_id?: string | undefined;
|
|
8976
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8977
|
+
connected_account_id: string;
|
|
8946
8978
|
acs_credential_pool_id?: string | undefined;
|
|
8947
8979
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
8948
8980
|
acs_system_id: string;
|
|
@@ -9069,6 +9101,8 @@ export interface Routes {
|
|
|
9069
9101
|
acs_credential_id: string;
|
|
9070
9102
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9071
9103
|
acs_user_id?: string | undefined;
|
|
9104
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9105
|
+
connected_account_id: string;
|
|
9072
9106
|
acs_credential_pool_id?: string | undefined;
|
|
9073
9107
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9074
9108
|
acs_system_id: string;
|
|
@@ -9318,6 +9352,8 @@ export interface Routes {
|
|
|
9318
9352
|
acs_credential_id: string;
|
|
9319
9353
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9320
9354
|
acs_user_id?: string | undefined;
|
|
9355
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9356
|
+
connected_account_id: string;
|
|
9321
9357
|
acs_credential_pool_id?: string | undefined;
|
|
9322
9358
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9323
9359
|
acs_system_id: string;
|
|
@@ -9444,6 +9480,8 @@ export interface Routes {
|
|
|
9444
9480
|
acs_credential_id: string;
|
|
9445
9481
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9446
9482
|
acs_user_id?: string | undefined;
|
|
9483
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9484
|
+
connected_account_id: string;
|
|
9447
9485
|
acs_credential_pool_id?: string | undefined;
|
|
9448
9486
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9449
9487
|
acs_system_id: string;
|
|
@@ -10643,6 +10681,12 @@ export interface Routes {
|
|
|
10643
10681
|
/** Description of the door in the Salto Space access system. */
|
|
10644
10682
|
door_description?: string | undefined;
|
|
10645
10683
|
} | undefined;
|
|
10684
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
10685
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
10686
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
10687
|
+
can_unlock_with_card?: boolean | undefined;
|
|
10688
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
10689
|
+
can_unlock_with_code?: boolean | undefined;
|
|
10646
10690
|
}>;
|
|
10647
10691
|
};
|
|
10648
10692
|
};
|
|
@@ -11059,6 +11103,8 @@ export interface Routes {
|
|
|
11059
11103
|
acs_credential_id: string;
|
|
11060
11104
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11061
11105
|
acs_user_id?: string | undefined;
|
|
11106
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11107
|
+
connected_account_id: string;
|
|
11062
11108
|
acs_credential_pool_id?: string | undefined;
|
|
11063
11109
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11064
11110
|
acs_system_id: string;
|
|
@@ -11250,6 +11296,8 @@ export interface Routes {
|
|
|
11250
11296
|
acs_credential_id: string;
|
|
11251
11297
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11252
11298
|
acs_user_id?: string | undefined;
|
|
11299
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11300
|
+
connected_account_id: string;
|
|
11253
11301
|
acs_credential_pool_id?: string | undefined;
|
|
11254
11302
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11255
11303
|
acs_system_id: string;
|
|
@@ -11403,6 +11451,8 @@ export interface Routes {
|
|
|
11403
11451
|
acs_credential_id: string;
|
|
11404
11452
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11405
11453
|
acs_user_id?: string | undefined;
|
|
11454
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11455
|
+
connected_account_id: string;
|
|
11406
11456
|
acs_credential_pool_id?: string | undefined;
|
|
11407
11457
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11408
11458
|
acs_system_id: string;
|
|
@@ -11560,6 +11610,8 @@ export interface Routes {
|
|
|
11560
11610
|
acs_credential_id: string;
|
|
11561
11611
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11562
11612
|
acs_user_id?: string | undefined;
|
|
11613
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11614
|
+
connected_account_id: string;
|
|
11563
11615
|
acs_credential_pool_id?: string | undefined;
|
|
11564
11616
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11565
11617
|
acs_system_id: string;
|
|
@@ -11718,6 +11770,8 @@ export interface Routes {
|
|
|
11718
11770
|
acs_credential_id: string;
|
|
11719
11771
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11720
11772
|
acs_user_id?: string | undefined;
|
|
11773
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11774
|
+
connected_account_id: string;
|
|
11721
11775
|
acs_credential_pool_id?: string | undefined;
|
|
11722
11776
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11723
11777
|
acs_system_id: string;
|
|
@@ -11942,6 +11996,12 @@ export interface Routes {
|
|
|
11942
11996
|
/** Description of the door in the Salto Space access system. */
|
|
11943
11997
|
door_description?: string | undefined;
|
|
11944
11998
|
} | undefined;
|
|
11999
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
12000
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
12001
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
12002
|
+
can_unlock_with_card?: boolean | undefined;
|
|
12003
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
12004
|
+
can_unlock_with_code?: boolean | undefined;
|
|
11945
12005
|
}>;
|
|
11946
12006
|
};
|
|
11947
12007
|
};
|
|
@@ -11970,6 +12030,8 @@ export interface Routes {
|
|
|
11970
12030
|
acs_credential_id: string;
|
|
11971
12031
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11972
12032
|
acs_user_id?: string | undefined;
|
|
12033
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12034
|
+
connected_account_id: string;
|
|
11973
12035
|
acs_credential_pool_id?: string | undefined;
|
|
11974
12036
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11975
12037
|
acs_system_id: string;
|
|
@@ -12111,6 +12173,8 @@ export interface Routes {
|
|
|
12111
12173
|
acs_credential_id: string;
|
|
12112
12174
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12113
12175
|
acs_user_id?: string | undefined;
|
|
12176
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12177
|
+
connected_account_id: string;
|
|
12114
12178
|
acs_credential_pool_id?: string | undefined;
|
|
12115
12179
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12116
12180
|
acs_system_id: string;
|
|
@@ -12262,6 +12326,8 @@ export interface Routes {
|
|
|
12262
12326
|
acs_credential_id: string;
|
|
12263
12327
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12264
12328
|
acs_user_id?: string | undefined;
|
|
12329
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12330
|
+
connected_account_id: string;
|
|
12265
12331
|
acs_credential_pool_id?: string | undefined;
|
|
12266
12332
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12267
12333
|
acs_system_id: string;
|
|
@@ -12411,6 +12477,8 @@ export interface Routes {
|
|
|
12411
12477
|
acs_credential_id: string;
|
|
12412
12478
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12413
12479
|
acs_user_id?: string | undefined;
|
|
12480
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12481
|
+
connected_account_id: string;
|
|
12414
12482
|
acs_credential_pool_id?: string | undefined;
|
|
12415
12483
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12416
12484
|
acs_system_id: string;
|
|
@@ -12688,6 +12756,8 @@ export interface Routes {
|
|
|
12688
12756
|
acs_credential_id: string;
|
|
12689
12757
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12690
12758
|
acs_user_id?: string | undefined;
|
|
12759
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12760
|
+
connected_account_id: string;
|
|
12691
12761
|
acs_credential_pool_id?: string | undefined;
|
|
12692
12762
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12693
12763
|
acs_system_id: string;
|
|
@@ -12814,6 +12884,8 @@ export interface Routes {
|
|
|
12814
12884
|
acs_credential_id: string;
|
|
12815
12885
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12816
12886
|
acs_user_id?: string | undefined;
|
|
12887
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12888
|
+
connected_account_id: string;
|
|
12817
12889
|
acs_credential_pool_id?: string | undefined;
|
|
12818
12890
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12819
12891
|
acs_system_id: string;
|
|
@@ -13063,6 +13135,8 @@ export interface Routes {
|
|
|
13063
13135
|
acs_credential_id: string;
|
|
13064
13136
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13065
13137
|
acs_user_id?: string | undefined;
|
|
13138
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13139
|
+
connected_account_id: string;
|
|
13066
13140
|
acs_credential_pool_id?: string | undefined;
|
|
13067
13141
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13068
13142
|
acs_system_id: string;
|
|
@@ -13189,6 +13263,8 @@ export interface Routes {
|
|
|
13189
13263
|
acs_credential_id: string;
|
|
13190
13264
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13191
13265
|
acs_user_id?: string | undefined;
|
|
13266
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13267
|
+
connected_account_id: string;
|
|
13192
13268
|
acs_credential_pool_id?: string | undefined;
|
|
13193
13269
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13194
13270
|
acs_system_id: string;
|
|
@@ -14003,6 +14079,8 @@ export interface Routes {
|
|
|
14003
14079
|
acs_credential_id: string;
|
|
14004
14080
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14005
14081
|
acs_user_id?: string | undefined;
|
|
14082
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14083
|
+
connected_account_id: string;
|
|
14006
14084
|
acs_credential_pool_id?: string | undefined;
|
|
14007
14085
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14008
14086
|
acs_system_id: string;
|
|
@@ -14129,6 +14207,8 @@ export interface Routes {
|
|
|
14129
14207
|
acs_credential_id: string;
|
|
14130
14208
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14131
14209
|
acs_user_id?: string | undefined;
|
|
14210
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14211
|
+
connected_account_id: string;
|
|
14132
14212
|
acs_credential_pool_id?: string | undefined;
|
|
14133
14213
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14134
14214
|
acs_system_id: string;
|
|
@@ -14378,6 +14458,8 @@ export interface Routes {
|
|
|
14378
14458
|
acs_credential_id: string;
|
|
14379
14459
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14380
14460
|
acs_user_id?: string | undefined;
|
|
14461
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14462
|
+
connected_account_id: string;
|
|
14381
14463
|
acs_credential_pool_id?: string | undefined;
|
|
14382
14464
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14383
14465
|
acs_system_id: string;
|
|
@@ -14504,6 +14586,8 @@ export interface Routes {
|
|
|
14504
14586
|
acs_credential_id: string;
|
|
14505
14587
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14506
14588
|
acs_user_id?: string | undefined;
|
|
14589
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14590
|
+
connected_account_id: string;
|
|
14507
14591
|
acs_credential_pool_id?: string | undefined;
|
|
14508
14592
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14509
14593
|
acs_system_id: string;
|
|
@@ -15414,6 +15498,8 @@ export interface Routes {
|
|
|
15414
15498
|
acs_credential_id: string;
|
|
15415
15499
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15416
15500
|
acs_user_id?: string | undefined;
|
|
15501
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15502
|
+
connected_account_id: string;
|
|
15417
15503
|
acs_credential_pool_id?: string | undefined;
|
|
15418
15504
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15419
15505
|
acs_system_id: string;
|
|
@@ -15540,6 +15626,8 @@ export interface Routes {
|
|
|
15540
15626
|
acs_credential_id: string;
|
|
15541
15627
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15542
15628
|
acs_user_id?: string | undefined;
|
|
15629
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15630
|
+
connected_account_id: string;
|
|
15543
15631
|
acs_credential_pool_id?: string | undefined;
|
|
15544
15632
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15545
15633
|
acs_system_id: string;
|
|
@@ -15789,6 +15877,8 @@ export interface Routes {
|
|
|
15789
15877
|
acs_credential_id: string;
|
|
15790
15878
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15791
15879
|
acs_user_id?: string | undefined;
|
|
15880
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15881
|
+
connected_account_id: string;
|
|
15792
15882
|
acs_credential_pool_id?: string | undefined;
|
|
15793
15883
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15794
15884
|
acs_system_id: string;
|
|
@@ -15915,6 +16005,8 @@ export interface Routes {
|
|
|
15915
16005
|
acs_credential_id: string;
|
|
15916
16006
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15917
16007
|
acs_user_id?: string | undefined;
|
|
16008
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16009
|
+
connected_account_id: string;
|
|
15918
16010
|
acs_credential_pool_id?: string | undefined;
|
|
15919
16011
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15920
16012
|
acs_system_id: string;
|
|
@@ -16758,6 +16850,12 @@ export interface Routes {
|
|
|
16758
16850
|
/** Description of the door in the Salto Space access system. */
|
|
16759
16851
|
door_description?: string | undefined;
|
|
16760
16852
|
} | undefined;
|
|
16853
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
16854
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
16855
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
16856
|
+
can_unlock_with_card?: boolean | undefined;
|
|
16857
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
16858
|
+
can_unlock_with_code?: boolean | undefined;
|
|
16761
16859
|
};
|
|
16762
16860
|
};
|
|
16763
16861
|
};
|
|
@@ -16888,6 +16986,12 @@ export interface Routes {
|
|
|
16888
16986
|
/** Description of the door in the Salto Space access system. */
|
|
16889
16987
|
door_description?: string | undefined;
|
|
16890
16988
|
} | undefined;
|
|
16989
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
16990
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
16991
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
16992
|
+
can_unlock_with_card?: boolean | undefined;
|
|
16993
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
16994
|
+
can_unlock_with_code?: boolean | undefined;
|
|
16891
16995
|
}>;
|
|
16892
16996
|
};
|
|
16893
16997
|
};
|
|
@@ -16909,6 +17013,8 @@ export interface Routes {
|
|
|
16909
17013
|
acs_credential_id: string;
|
|
16910
17014
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16911
17015
|
acs_user_id?: string | undefined;
|
|
17016
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17017
|
+
connected_account_id: string;
|
|
16912
17018
|
acs_credential_pool_id?: string | undefined;
|
|
16913
17019
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
16914
17020
|
acs_system_id: string;
|
|
@@ -18285,6 +18391,12 @@ export interface Routes {
|
|
|
18285
18391
|
/** Description of the door in the Salto Space access system. */
|
|
18286
18392
|
door_description?: string | undefined;
|
|
18287
18393
|
} | undefined;
|
|
18394
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
18395
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
18396
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
18397
|
+
can_unlock_with_card?: boolean | undefined;
|
|
18398
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
18399
|
+
can_unlock_with_code?: boolean | undefined;
|
|
18288
18400
|
}>;
|
|
18289
18401
|
};
|
|
18290
18402
|
};
|
|
@@ -18987,6 +19099,8 @@ export interface Routes {
|
|
|
18987
19099
|
acs_credential_id: string;
|
|
18988
19100
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18989
19101
|
acs_user_id?: string | undefined;
|
|
19102
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19103
|
+
connected_account_id: string;
|
|
18990
19104
|
acs_credential_pool_id?: string | undefined;
|
|
18991
19105
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
18992
19106
|
acs_system_id: string;
|
|
@@ -19113,6 +19227,8 @@ export interface Routes {
|
|
|
19113
19227
|
acs_credential_id: string;
|
|
19114
19228
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19115
19229
|
acs_user_id?: string | undefined;
|
|
19230
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19231
|
+
connected_account_id: string;
|
|
19116
19232
|
acs_credential_pool_id?: string | undefined;
|
|
19117
19233
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
19118
19234
|
acs_system_id: string;
|
|
@@ -19362,6 +19478,8 @@ export interface Routes {
|
|
|
19362
19478
|
acs_credential_id: string;
|
|
19363
19479
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19364
19480
|
acs_user_id?: string | undefined;
|
|
19481
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19482
|
+
connected_account_id: string;
|
|
19365
19483
|
acs_credential_pool_id?: string | undefined;
|
|
19366
19484
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
19367
19485
|
acs_system_id: string;
|
|
@@ -19488,6 +19606,8 @@ export interface Routes {
|
|
|
19488
19606
|
acs_credential_id: string;
|
|
19489
19607
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19490
19608
|
acs_user_id?: string | undefined;
|
|
19609
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19610
|
+
connected_account_id: string;
|
|
19491
19611
|
acs_credential_pool_id?: string | undefined;
|
|
19492
19612
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
19493
19613
|
acs_system_id: string;
|
|
@@ -20295,6 +20415,8 @@ export interface Routes {
|
|
|
20295
20415
|
acs_credential_id: string;
|
|
20296
20416
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20297
20417
|
acs_user_id?: string | undefined;
|
|
20418
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20419
|
+
connected_account_id: string;
|
|
20298
20420
|
acs_credential_pool_id?: string | undefined;
|
|
20299
20421
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
20300
20422
|
acs_system_id: string;
|
|
@@ -20421,6 +20543,8 @@ export interface Routes {
|
|
|
20421
20543
|
acs_credential_id: string;
|
|
20422
20544
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20423
20545
|
acs_user_id?: string | undefined;
|
|
20546
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20547
|
+
connected_account_id: string;
|
|
20424
20548
|
acs_credential_pool_id?: string | undefined;
|
|
20425
20549
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
20426
20550
|
acs_system_id: string;
|
|
@@ -20670,6 +20794,8 @@ export interface Routes {
|
|
|
20670
20794
|
acs_credential_id: string;
|
|
20671
20795
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20672
20796
|
acs_user_id?: string | undefined;
|
|
20797
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20798
|
+
connected_account_id: string;
|
|
20673
20799
|
acs_credential_pool_id?: string | undefined;
|
|
20674
20800
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
20675
20801
|
acs_system_id: string;
|
|
@@ -20796,6 +20922,8 @@ export interface Routes {
|
|
|
20796
20922
|
acs_credential_id: string;
|
|
20797
20923
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20798
20924
|
acs_user_id?: string | undefined;
|
|
20925
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20926
|
+
connected_account_id: string;
|
|
20799
20927
|
acs_credential_pool_id?: string | undefined;
|
|
20800
20928
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
20801
20929
|
acs_system_id: string;
|
|
@@ -22209,6 +22337,8 @@ export interface Routes {
|
|
|
22209
22337
|
/** 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. */
|
|
22210
22338
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
22211
22339
|
customer_ids?: string[] | undefined;
|
|
22340
|
+
/** 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`. */
|
|
22341
|
+
search?: string | undefined;
|
|
22212
22342
|
/** Maximum number of records to return per page. */
|
|
22213
22343
|
limit?: number;
|
|
22214
22344
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
@@ -24170,6 +24300,7 @@ export interface Routes {
|
|
|
24170
24300
|
can_simulate_removal?: boolean | undefined;
|
|
24171
24301
|
can_simulate_connection?: boolean | undefined;
|
|
24172
24302
|
can_simulate_disconnection?: boolean | undefined;
|
|
24303
|
+
can_unlock_with_code?: boolean | undefined;
|
|
24173
24304
|
};
|
|
24174
24305
|
};
|
|
24175
24306
|
};
|
|
@@ -24205,14 +24336,16 @@ export interface Routes {
|
|
|
24205
24336
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
24206
24337
|
page_cursor?: (string | undefined) | null;
|
|
24207
24338
|
/** */
|
|
24208
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
24339
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
24209
24340
|
/** */
|
|
24210
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
24341
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
24211
24342
|
/**
|
|
24212
24343
|
* @deprecated Use `space_id`. */
|
|
24213
24344
|
unstable_location_id?: (string | null) | undefined;
|
|
24214
24345
|
/** ID of the space for which you want to list devices. */
|
|
24215
24346
|
space_id?: string | undefined;
|
|
24347
|
+
/** 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`. */
|
|
24348
|
+
search?: string | undefined;
|
|
24216
24349
|
};
|
|
24217
24350
|
formData: {};
|
|
24218
24351
|
jsonResponse: {
|
|
@@ -25325,6 +25458,7 @@ export interface Routes {
|
|
|
25325
25458
|
can_simulate_removal?: boolean | undefined;
|
|
25326
25459
|
can_simulate_connection?: boolean | undefined;
|
|
25327
25460
|
can_simulate_disconnection?: boolean | undefined;
|
|
25461
|
+
can_unlock_with_code?: boolean | undefined;
|
|
25328
25462
|
}>;
|
|
25329
25463
|
/** Information about the current page of results. */
|
|
25330
25464
|
pagination: {
|
|
@@ -25364,6 +25498,7 @@ export interface Routes {
|
|
|
25364
25498
|
can_simulate_removal?: boolean | undefined;
|
|
25365
25499
|
can_simulate_connection?: boolean | undefined;
|
|
25366
25500
|
can_simulate_disconnection?: boolean | undefined;
|
|
25501
|
+
can_unlock_with_code?: boolean | undefined;
|
|
25367
25502
|
}>;
|
|
25368
25503
|
};
|
|
25369
25504
|
};
|
|
@@ -25803,6 +25938,7 @@ export interface Routes {
|
|
|
25803
25938
|
can_simulate_removal?: boolean | undefined;
|
|
25804
25939
|
can_simulate_connection?: boolean | undefined;
|
|
25805
25940
|
can_simulate_disconnection?: boolean | undefined;
|
|
25941
|
+
can_unlock_with_code?: boolean | undefined;
|
|
25806
25942
|
};
|
|
25807
25943
|
};
|
|
25808
25944
|
};
|
|
@@ -25838,14 +25974,16 @@ export interface Routes {
|
|
|
25838
25974
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
25839
25975
|
page_cursor?: (string | undefined) | null;
|
|
25840
25976
|
/** */
|
|
25841
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
25977
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
25842
25978
|
/** */
|
|
25843
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
25979
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
25844
25980
|
/**
|
|
25845
25981
|
* @deprecated Use `space_id`. */
|
|
25846
25982
|
unstable_location_id?: (string | null) | undefined;
|
|
25847
25983
|
/** ID of the space for which you want to list devices. */
|
|
25848
25984
|
space_id?: string | undefined;
|
|
25985
|
+
/** 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`. */
|
|
25986
|
+
search?: string | undefined;
|
|
25849
25987
|
};
|
|
25850
25988
|
formData: {};
|
|
25851
25989
|
jsonResponse: {
|
|
@@ -26235,6 +26373,7 @@ export interface Routes {
|
|
|
26235
26373
|
can_simulate_removal?: boolean | undefined;
|
|
26236
26374
|
can_simulate_connection?: boolean | undefined;
|
|
26237
26375
|
can_simulate_disconnection?: boolean | undefined;
|
|
26376
|
+
can_unlock_with_code?: boolean | undefined;
|
|
26238
26377
|
}>;
|
|
26239
26378
|
};
|
|
26240
26379
|
};
|
|
@@ -30241,6 +30380,7 @@ export interface Routes {
|
|
|
30241
30380
|
can_simulate_removal?: boolean | undefined;
|
|
30242
30381
|
can_simulate_connection?: boolean | undefined;
|
|
30243
30382
|
can_simulate_disconnection?: boolean | undefined;
|
|
30383
|
+
can_unlock_with_code?: boolean | undefined;
|
|
30244
30384
|
};
|
|
30245
30385
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
30246
30386
|
device: {
|
|
@@ -31352,6 +31492,7 @@ export interface Routes {
|
|
|
31352
31492
|
can_simulate_removal?: boolean | undefined;
|
|
31353
31493
|
can_simulate_connection?: boolean | undefined;
|
|
31354
31494
|
can_simulate_disconnection?: boolean | undefined;
|
|
31495
|
+
can_unlock_with_code?: boolean | undefined;
|
|
31355
31496
|
};
|
|
31356
31497
|
};
|
|
31357
31498
|
};
|
|
@@ -31387,14 +31528,16 @@ export interface Routes {
|
|
|
31387
31528
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
31388
31529
|
page_cursor?: (string | undefined) | null;
|
|
31389
31530
|
/** */
|
|
31390
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
31531
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
31391
31532
|
/** */
|
|
31392
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
31533
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
31393
31534
|
/**
|
|
31394
31535
|
* @deprecated Use `space_id`. */
|
|
31395
31536
|
unstable_location_id?: (string | null) | undefined;
|
|
31396
31537
|
/** ID of the space for which you want to list devices. */
|
|
31397
31538
|
space_id?: string | undefined;
|
|
31539
|
+
/** 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`. */
|
|
31540
|
+
search?: string | undefined;
|
|
31398
31541
|
};
|
|
31399
31542
|
formData: {};
|
|
31400
31543
|
jsonResponse: {
|
|
@@ -32507,6 +32650,7 @@ export interface Routes {
|
|
|
32507
32650
|
can_simulate_removal?: boolean | undefined;
|
|
32508
32651
|
can_simulate_connection?: boolean | undefined;
|
|
32509
32652
|
can_simulate_disconnection?: boolean | undefined;
|
|
32653
|
+
can_unlock_with_code?: boolean | undefined;
|
|
32510
32654
|
}>;
|
|
32511
32655
|
devices: Array<{
|
|
32512
32656
|
/** ID of the device. */
|
|
@@ -33617,6 +33761,7 @@ export interface Routes {
|
|
|
33617
33761
|
can_simulate_removal?: boolean | undefined;
|
|
33618
33762
|
can_simulate_connection?: boolean | undefined;
|
|
33619
33763
|
can_simulate_disconnection?: boolean | undefined;
|
|
33764
|
+
can_unlock_with_code?: boolean | undefined;
|
|
33620
33765
|
}>;
|
|
33621
33766
|
};
|
|
33622
33767
|
};
|
|
@@ -33773,6 +33918,8 @@ export interface Routes {
|
|
|
33773
33918
|
acs_credential_id: string;
|
|
33774
33919
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33775
33920
|
acs_user_id?: string | undefined;
|
|
33921
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33922
|
+
connected_account_id: string;
|
|
33776
33923
|
acs_credential_pool_id?: string | undefined;
|
|
33777
33924
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33778
33925
|
acs_system_id: string;
|
|
@@ -33899,6 +34046,8 @@ export interface Routes {
|
|
|
33899
34046
|
acs_credential_id: string;
|
|
33900
34047
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33901
34048
|
acs_user_id?: string | undefined;
|
|
34049
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34050
|
+
connected_account_id: string;
|
|
33902
34051
|
acs_credential_pool_id?: string | undefined;
|
|
33903
34052
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33904
34053
|
acs_system_id: string;
|
|
@@ -34148,6 +34297,8 @@ export interface Routes {
|
|
|
34148
34297
|
acs_credential_id: string;
|
|
34149
34298
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34150
34299
|
acs_user_id?: string | undefined;
|
|
34300
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34301
|
+
connected_account_id: string;
|
|
34151
34302
|
acs_credential_pool_id?: string | undefined;
|
|
34152
34303
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34153
34304
|
acs_system_id: string;
|
|
@@ -34274,6 +34425,8 @@ export interface Routes {
|
|
|
34274
34425
|
acs_credential_id: string;
|
|
34275
34426
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34276
34427
|
acs_user_id?: string | undefined;
|
|
34428
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34429
|
+
connected_account_id: string;
|
|
34277
34430
|
acs_credential_pool_id?: string | undefined;
|
|
34278
34431
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34279
34432
|
acs_system_id: string;
|
|
@@ -35088,6 +35241,8 @@ export interface Routes {
|
|
|
35088
35241
|
acs_credential_id: string;
|
|
35089
35242
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35090
35243
|
acs_user_id?: string | undefined;
|
|
35244
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35245
|
+
connected_account_id: string;
|
|
35091
35246
|
acs_credential_pool_id?: string | undefined;
|
|
35092
35247
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35093
35248
|
acs_system_id: string;
|
|
@@ -35214,6 +35369,8 @@ export interface Routes {
|
|
|
35214
35369
|
acs_credential_id: string;
|
|
35215
35370
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35216
35371
|
acs_user_id?: string | undefined;
|
|
35372
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35373
|
+
connected_account_id: string;
|
|
35217
35374
|
acs_credential_pool_id?: string | undefined;
|
|
35218
35375
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35219
35376
|
acs_system_id: string;
|
|
@@ -35463,6 +35620,8 @@ export interface Routes {
|
|
|
35463
35620
|
acs_credential_id: string;
|
|
35464
35621
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35465
35622
|
acs_user_id?: string | undefined;
|
|
35623
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35624
|
+
connected_account_id: string;
|
|
35466
35625
|
acs_credential_pool_id?: string | undefined;
|
|
35467
35626
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35468
35627
|
acs_system_id: string;
|
|
@@ -35589,6 +35748,8 @@ export interface Routes {
|
|
|
35589
35748
|
acs_credential_id: string;
|
|
35590
35749
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35591
35750
|
acs_user_id?: string | undefined;
|
|
35751
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35752
|
+
connected_account_id: string;
|
|
35592
35753
|
acs_credential_pool_id?: string | undefined;
|
|
35593
35754
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35594
35755
|
acs_system_id: string;
|
|
@@ -36401,6 +36562,8 @@ export interface Routes {
|
|
|
36401
36562
|
acs_credential_id: string;
|
|
36402
36563
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36403
36564
|
acs_user_id?: string | undefined;
|
|
36565
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36566
|
+
connected_account_id: string;
|
|
36404
36567
|
acs_credential_pool_id?: string | undefined;
|
|
36405
36568
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
36406
36569
|
acs_system_id: string;
|
|
@@ -36527,6 +36690,8 @@ export interface Routes {
|
|
|
36527
36690
|
acs_credential_id: string;
|
|
36528
36691
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36529
36692
|
acs_user_id?: string | undefined;
|
|
36693
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36694
|
+
connected_account_id: string;
|
|
36530
36695
|
acs_credential_pool_id?: string | undefined;
|
|
36531
36696
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
36532
36697
|
acs_system_id: string;
|
|
@@ -36776,6 +36941,8 @@ export interface Routes {
|
|
|
36776
36941
|
acs_credential_id: string;
|
|
36777
36942
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36778
36943
|
acs_user_id?: string | undefined;
|
|
36944
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36945
|
+
connected_account_id: string;
|
|
36779
36946
|
acs_credential_pool_id?: string | undefined;
|
|
36780
36947
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
36781
36948
|
acs_system_id: string;
|
|
@@ -36902,6 +37069,8 @@ export interface Routes {
|
|
|
36902
37069
|
acs_credential_id: string;
|
|
36903
37070
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36904
37071
|
acs_user_id?: string | undefined;
|
|
37072
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37073
|
+
connected_account_id: string;
|
|
36905
37074
|
acs_credential_pool_id?: string | undefined;
|
|
36906
37075
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
36907
37076
|
acs_system_id: string;
|
|
@@ -37716,6 +37885,8 @@ export interface Routes {
|
|
|
37716
37885
|
acs_credential_id: string;
|
|
37717
37886
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37718
37887
|
acs_user_id?: string | undefined;
|
|
37888
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37889
|
+
connected_account_id: string;
|
|
37719
37890
|
acs_credential_pool_id?: string | undefined;
|
|
37720
37891
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37721
37892
|
acs_system_id: string;
|
|
@@ -37842,6 +38013,8 @@ export interface Routes {
|
|
|
37842
38013
|
acs_credential_id: string;
|
|
37843
38014
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37844
38015
|
acs_user_id?: string | undefined;
|
|
38016
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
38017
|
+
connected_account_id: string;
|
|
37845
38018
|
acs_credential_pool_id?: string | undefined;
|
|
37846
38019
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37847
38020
|
acs_system_id: string;
|
|
@@ -38091,6 +38264,8 @@ export interface Routes {
|
|
|
38091
38264
|
acs_credential_id: string;
|
|
38092
38265
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
38093
38266
|
acs_user_id?: string | undefined;
|
|
38267
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
38268
|
+
connected_account_id: string;
|
|
38094
38269
|
acs_credential_pool_id?: string | undefined;
|
|
38095
38270
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
38096
38271
|
acs_system_id: string;
|
|
@@ -38217,6 +38392,8 @@ export interface Routes {
|
|
|
38217
38392
|
acs_credential_id: string;
|
|
38218
38393
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
38219
38394
|
acs_user_id?: string | undefined;
|
|
38395
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
38396
|
+
connected_account_id: string;
|
|
38220
38397
|
acs_credential_pool_id?: string | undefined;
|
|
38221
38398
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
38222
38399
|
acs_system_id: string;
|
|
@@ -38945,14 +39122,16 @@ export interface Routes {
|
|
|
38945
39122
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
38946
39123
|
page_cursor?: (string | undefined) | null;
|
|
38947
39124
|
/** */
|
|
38948
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
39125
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
38949
39126
|
/** */
|
|
38950
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
39127
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
38951
39128
|
/**
|
|
38952
39129
|
* @deprecated Use `space_id`. */
|
|
38953
39130
|
unstable_location_id?: (string | null) | undefined;
|
|
38954
39131
|
/** ID of the space for which you want to list devices. */
|
|
38955
39132
|
space_id?: string | undefined;
|
|
39133
|
+
/** 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`. */
|
|
39134
|
+
search?: string | undefined;
|
|
38956
39135
|
};
|
|
38957
39136
|
formData: {};
|
|
38958
39137
|
jsonResponse: {
|
|
@@ -40065,6 +40244,7 @@ export interface Routes {
|
|
|
40065
40244
|
can_simulate_removal?: boolean | undefined;
|
|
40066
40245
|
can_simulate_connection?: boolean | undefined;
|
|
40067
40246
|
can_simulate_disconnection?: boolean | undefined;
|
|
40247
|
+
can_unlock_with_code?: boolean | undefined;
|
|
40068
40248
|
}>;
|
|
40069
40249
|
devices: Array<{
|
|
40070
40250
|
/** ID of the device. */
|
|
@@ -41175,6 +41355,7 @@ export interface Routes {
|
|
|
41175
41355
|
can_simulate_removal?: boolean | undefined;
|
|
41176
41356
|
can_simulate_connection?: boolean | undefined;
|
|
41177
41357
|
can_simulate_disconnection?: boolean | undefined;
|
|
41358
|
+
can_unlock_with_code?: boolean | undefined;
|
|
41178
41359
|
}>;
|
|
41179
41360
|
};
|
|
41180
41361
|
};
|
|
@@ -41341,6 +41522,8 @@ export interface Routes {
|
|
|
41341
41522
|
acs_credential_id: string;
|
|
41342
41523
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41343
41524
|
acs_user_id?: string | undefined;
|
|
41525
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41526
|
+
connected_account_id: string;
|
|
41344
41527
|
acs_credential_pool_id?: string | undefined;
|
|
41345
41528
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41346
41529
|
acs_system_id: string;
|
|
@@ -41467,6 +41650,8 @@ export interface Routes {
|
|
|
41467
41650
|
acs_credential_id: string;
|
|
41468
41651
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41469
41652
|
acs_user_id?: string | undefined;
|
|
41653
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41654
|
+
connected_account_id: string;
|
|
41470
41655
|
acs_credential_pool_id?: string | undefined;
|
|
41471
41656
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41472
41657
|
acs_system_id: string;
|
|
@@ -41716,6 +41901,8 @@ export interface Routes {
|
|
|
41716
41901
|
acs_credential_id: string;
|
|
41717
41902
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41718
41903
|
acs_user_id?: string | undefined;
|
|
41904
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41905
|
+
connected_account_id: string;
|
|
41719
41906
|
acs_credential_pool_id?: string | undefined;
|
|
41720
41907
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41721
41908
|
acs_system_id: string;
|
|
@@ -41842,6 +42029,8 @@ export interface Routes {
|
|
|
41842
42029
|
acs_credential_id: string;
|
|
41843
42030
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41844
42031
|
acs_user_id?: string | undefined;
|
|
42032
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42033
|
+
connected_account_id: string;
|
|
41845
42034
|
acs_credential_pool_id?: string | undefined;
|
|
41846
42035
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41847
42036
|
acs_system_id: string;
|
|
@@ -42675,6 +42864,8 @@ export interface Routes {
|
|
|
42675
42864
|
acs_credential_id: string;
|
|
42676
42865
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42677
42866
|
acs_user_id?: string | undefined;
|
|
42867
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42868
|
+
connected_account_id: string;
|
|
42678
42869
|
acs_credential_pool_id?: string | undefined;
|
|
42679
42870
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
42680
42871
|
acs_system_id: string;
|
|
@@ -42801,6 +42992,8 @@ export interface Routes {
|
|
|
42801
42992
|
acs_credential_id: string;
|
|
42802
42993
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42803
42994
|
acs_user_id?: string | undefined;
|
|
42995
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42996
|
+
connected_account_id: string;
|
|
42804
42997
|
acs_credential_pool_id?: string | undefined;
|
|
42805
42998
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
42806
42999
|
acs_system_id: string;
|
|
@@ -43050,6 +43243,8 @@ export interface Routes {
|
|
|
43050
43243
|
acs_credential_id: string;
|
|
43051
43244
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43052
43245
|
acs_user_id?: string | undefined;
|
|
43246
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43247
|
+
connected_account_id: string;
|
|
43053
43248
|
acs_credential_pool_id?: string | undefined;
|
|
43054
43249
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43055
43250
|
acs_system_id: string;
|
|
@@ -43176,6 +43371,8 @@ export interface Routes {
|
|
|
43176
43371
|
acs_credential_id: string;
|
|
43177
43372
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43178
43373
|
acs_user_id?: string | undefined;
|
|
43374
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43375
|
+
connected_account_id: string;
|
|
43179
43376
|
acs_credential_pool_id?: string | undefined;
|
|
43180
43377
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43181
43378
|
acs_system_id: string;
|
|
@@ -44063,6 +44260,8 @@ export interface Routes {
|
|
|
44063
44260
|
acs_credential_id: string;
|
|
44064
44261
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44065
44262
|
acs_user_id?: string | undefined;
|
|
44263
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44264
|
+
connected_account_id: string;
|
|
44066
44265
|
acs_credential_pool_id?: string | undefined;
|
|
44067
44266
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44068
44267
|
acs_system_id: string;
|
|
@@ -44189,6 +44388,8 @@ export interface Routes {
|
|
|
44189
44388
|
acs_credential_id: string;
|
|
44190
44389
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44191
44390
|
acs_user_id?: string | undefined;
|
|
44391
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44392
|
+
connected_account_id: string;
|
|
44192
44393
|
acs_credential_pool_id?: string | undefined;
|
|
44193
44394
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44194
44395
|
acs_system_id: string;
|
|
@@ -44438,6 +44639,8 @@ export interface Routes {
|
|
|
44438
44639
|
acs_credential_id: string;
|
|
44439
44640
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44440
44641
|
acs_user_id?: string | undefined;
|
|
44642
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44643
|
+
connected_account_id: string;
|
|
44441
44644
|
acs_credential_pool_id?: string | undefined;
|
|
44442
44645
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44443
44646
|
acs_system_id: string;
|
|
@@ -44564,6 +44767,8 @@ export interface Routes {
|
|
|
44564
44767
|
acs_credential_id: string;
|
|
44565
44768
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44566
44769
|
acs_user_id?: string | undefined;
|
|
44770
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
44771
|
+
connected_account_id: string;
|
|
44567
44772
|
acs_credential_pool_id?: string | undefined;
|
|
44568
44773
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44569
44774
|
acs_system_id: string;
|
|
@@ -45897,6 +46102,8 @@ export interface Routes {
|
|
|
45897
46102
|
acs_credential_id: string;
|
|
45898
46103
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45899
46104
|
acs_user_id?: string | undefined;
|
|
46105
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46106
|
+
connected_account_id: string;
|
|
45900
46107
|
acs_credential_pool_id?: string | undefined;
|
|
45901
46108
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
45902
46109
|
acs_system_id: string;
|
|
@@ -46059,6 +46266,8 @@ export interface Routes {
|
|
|
46059
46266
|
acs_credentials: Array<{
|
|
46060
46267
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46061
46268
|
acs_user_id?: string | undefined;
|
|
46269
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46270
|
+
connected_account_id: string;
|
|
46062
46271
|
acs_credential_pool_id?: string | undefined;
|
|
46063
46272
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
46064
46273
|
acs_system_id: string;
|
|
@@ -46270,6 +46479,12 @@ export interface Routes {
|
|
|
46270
46479
|
/** Description of the door in the Salto Space access system. */
|
|
46271
46480
|
door_description?: string | undefined;
|
|
46272
46481
|
} | undefined;
|
|
46482
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
46483
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
46484
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
46485
|
+
can_unlock_with_card?: boolean | undefined;
|
|
46486
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
46487
|
+
can_unlock_with_code?: boolean | undefined;
|
|
46273
46488
|
}>;
|
|
46274
46489
|
}>;
|
|
46275
46490
|
}>;
|
|
@@ -46630,6 +46845,8 @@ export interface Routes {
|
|
|
46630
46845
|
acs_credential_id: string;
|
|
46631
46846
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46632
46847
|
acs_user_id?: string | undefined;
|
|
46848
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46849
|
+
connected_account_id: string;
|
|
46633
46850
|
acs_credential_pool_id?: string | undefined;
|
|
46634
46851
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
46635
46852
|
acs_system_id: string;
|
|
@@ -46756,6 +46973,8 @@ export interface Routes {
|
|
|
46756
46973
|
acs_credential_id: string;
|
|
46757
46974
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46758
46975
|
acs_user_id?: string | undefined;
|
|
46976
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46977
|
+
connected_account_id: string;
|
|
46759
46978
|
acs_credential_pool_id?: string | undefined;
|
|
46760
46979
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
46761
46980
|
acs_system_id: string;
|
|
@@ -47005,6 +47224,8 @@ export interface Routes {
|
|
|
47005
47224
|
acs_credential_id: string;
|
|
47006
47225
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47007
47226
|
acs_user_id?: string | undefined;
|
|
47227
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47228
|
+
connected_account_id: string;
|
|
47008
47229
|
acs_credential_pool_id?: string | undefined;
|
|
47009
47230
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47010
47231
|
acs_system_id: string;
|
|
@@ -47131,6 +47352,8 @@ export interface Routes {
|
|
|
47131
47352
|
acs_credential_id: string;
|
|
47132
47353
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47133
47354
|
acs_user_id?: string | undefined;
|
|
47355
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47356
|
+
connected_account_id: string;
|
|
47134
47357
|
acs_credential_pool_id?: string | undefined;
|
|
47135
47358
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47136
47359
|
acs_system_id: string;
|
|
@@ -47949,6 +48172,8 @@ export interface Routes {
|
|
|
47949
48172
|
acs_credential_id: string;
|
|
47950
48173
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47951
48174
|
acs_user_id?: string | undefined;
|
|
48175
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48176
|
+
connected_account_id: string;
|
|
47952
48177
|
acs_credential_pool_id?: string | undefined;
|
|
47953
48178
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47954
48179
|
acs_system_id: string;
|
|
@@ -48075,6 +48300,8 @@ export interface Routes {
|
|
|
48075
48300
|
acs_credential_id: string;
|
|
48076
48301
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48077
48302
|
acs_user_id?: string | undefined;
|
|
48303
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48304
|
+
connected_account_id: string;
|
|
48078
48305
|
acs_credential_pool_id?: string | undefined;
|
|
48079
48306
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48080
48307
|
acs_system_id: string;
|
|
@@ -48324,6 +48551,8 @@ export interface Routes {
|
|
|
48324
48551
|
acs_credential_id: string;
|
|
48325
48552
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48326
48553
|
acs_user_id?: string | undefined;
|
|
48554
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48555
|
+
connected_account_id: string;
|
|
48327
48556
|
acs_credential_pool_id?: string | undefined;
|
|
48328
48557
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48329
48558
|
acs_system_id: string;
|
|
@@ -48450,6 +48679,8 @@ export interface Routes {
|
|
|
48450
48679
|
acs_credential_id: string;
|
|
48451
48680
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48452
48681
|
acs_user_id?: string | undefined;
|
|
48682
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48683
|
+
connected_account_id: string;
|
|
48453
48684
|
acs_credential_pool_id?: string | undefined;
|
|
48454
48685
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48455
48686
|
acs_system_id: string;
|
|
@@ -49356,6 +49587,8 @@ export interface Routes {
|
|
|
49356
49587
|
acs_credential_id: string;
|
|
49357
49588
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49358
49589
|
acs_user_id?: string | undefined;
|
|
49590
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49591
|
+
connected_account_id: string;
|
|
49359
49592
|
acs_credential_pool_id?: string | undefined;
|
|
49360
49593
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49361
49594
|
acs_system_id: string;
|
|
@@ -49482,6 +49715,8 @@ export interface Routes {
|
|
|
49482
49715
|
acs_credential_id: string;
|
|
49483
49716
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49484
49717
|
acs_user_id?: string | undefined;
|
|
49718
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49719
|
+
connected_account_id: string;
|
|
49485
49720
|
acs_credential_pool_id?: string | undefined;
|
|
49486
49721
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49487
49722
|
acs_system_id: string;
|
|
@@ -49731,6 +49966,8 @@ export interface Routes {
|
|
|
49731
49966
|
acs_credential_id: string;
|
|
49732
49967
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49733
49968
|
acs_user_id?: string | undefined;
|
|
49969
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49970
|
+
connected_account_id: string;
|
|
49734
49971
|
acs_credential_pool_id?: string | undefined;
|
|
49735
49972
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49736
49973
|
acs_system_id: string;
|
|
@@ -49857,6 +50094,8 @@ export interface Routes {
|
|
|
49857
50094
|
acs_credential_id: string;
|
|
49858
50095
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49859
50096
|
acs_user_id?: string | undefined;
|
|
50097
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50098
|
+
connected_account_id: string;
|
|
49860
50099
|
acs_credential_pool_id?: string | undefined;
|
|
49861
50100
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49862
50101
|
acs_system_id: string;
|
|
@@ -51655,6 +51894,7 @@ export interface Routes {
|
|
|
51655
51894
|
can_simulate_removal?: boolean | undefined;
|
|
51656
51895
|
can_simulate_connection?: boolean | undefined;
|
|
51657
51896
|
can_simulate_disconnection?: boolean | undefined;
|
|
51897
|
+
can_unlock_with_code?: boolean | undefined;
|
|
51658
51898
|
};
|
|
51659
51899
|
};
|
|
51660
51900
|
};
|
|
@@ -51815,6 +52055,8 @@ export interface Routes {
|
|
|
51815
52055
|
acs_credential_id: string;
|
|
51816
52056
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51817
52057
|
acs_user_id?: string | undefined;
|
|
52058
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52059
|
+
connected_account_id: string;
|
|
51818
52060
|
acs_credential_pool_id?: string | undefined;
|
|
51819
52061
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
51820
52062
|
acs_system_id: string;
|
|
@@ -51941,6 +52183,8 @@ export interface Routes {
|
|
|
51941
52183
|
acs_credential_id: string;
|
|
51942
52184
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51943
52185
|
acs_user_id?: string | undefined;
|
|
52186
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52187
|
+
connected_account_id: string;
|
|
51944
52188
|
acs_credential_pool_id?: string | undefined;
|
|
51945
52189
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
51946
52190
|
acs_system_id: string;
|
|
@@ -52190,6 +52434,8 @@ export interface Routes {
|
|
|
52190
52434
|
acs_credential_id: string;
|
|
52191
52435
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52192
52436
|
acs_user_id?: string | undefined;
|
|
52437
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52438
|
+
connected_account_id: string;
|
|
52193
52439
|
acs_credential_pool_id?: string | undefined;
|
|
52194
52440
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
52195
52441
|
acs_system_id: string;
|
|
@@ -52316,6 +52562,8 @@ export interface Routes {
|
|
|
52316
52562
|
acs_credential_id: string;
|
|
52317
52563
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52318
52564
|
acs_user_id?: string | undefined;
|
|
52565
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52566
|
+
connected_account_id: string;
|
|
52319
52567
|
acs_credential_pool_id?: string | undefined;
|
|
52320
52568
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
52321
52569
|
acs_system_id: string;
|
|
@@ -53138,6 +53386,8 @@ export interface Routes {
|
|
|
53138
53386
|
acs_credential_id: string;
|
|
53139
53387
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53140
53388
|
acs_user_id?: string | undefined;
|
|
53389
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53390
|
+
connected_account_id: string;
|
|
53141
53391
|
acs_credential_pool_id?: string | undefined;
|
|
53142
53392
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53143
53393
|
acs_system_id: string;
|
|
@@ -53264,6 +53514,8 @@ export interface Routes {
|
|
|
53264
53514
|
acs_credential_id: string;
|
|
53265
53515
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53266
53516
|
acs_user_id?: string | undefined;
|
|
53517
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53518
|
+
connected_account_id: string;
|
|
53267
53519
|
acs_credential_pool_id?: string | undefined;
|
|
53268
53520
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53269
53521
|
acs_system_id: string;
|
|
@@ -53513,6 +53765,8 @@ export interface Routes {
|
|
|
53513
53765
|
acs_credential_id: string;
|
|
53514
53766
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53515
53767
|
acs_user_id?: string | undefined;
|
|
53768
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53769
|
+
connected_account_id: string;
|
|
53516
53770
|
acs_credential_pool_id?: string | undefined;
|
|
53517
53771
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53518
53772
|
acs_system_id: string;
|
|
@@ -53639,6 +53893,8 @@ export interface Routes {
|
|
|
53639
53893
|
acs_credential_id: string;
|
|
53640
53894
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53641
53895
|
acs_user_id?: string | undefined;
|
|
53896
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53897
|
+
connected_account_id: string;
|
|
53642
53898
|
acs_credential_pool_id?: string | undefined;
|
|
53643
53899
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53644
53900
|
acs_system_id: string;
|
|
@@ -54332,14 +54588,16 @@ export interface Routes {
|
|
|
54332
54588
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
54333
54589
|
page_cursor?: (string | undefined) | null;
|
|
54334
54590
|
/** */
|
|
54335
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
54591
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
54336
54592
|
/** */
|
|
54337
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
54593
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
54338
54594
|
/**
|
|
54339
54595
|
* @deprecated Use `space_id`. */
|
|
54340
54596
|
unstable_location_id?: (string | null) | undefined;
|
|
54341
54597
|
/** ID of the space for which you want to list devices. */
|
|
54342
54598
|
space_id?: string | undefined;
|
|
54599
|
+
/** 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`. */
|
|
54600
|
+
search?: string | undefined;
|
|
54343
54601
|
};
|
|
54344
54602
|
formData: {};
|
|
54345
54603
|
jsonResponse: {
|
|
@@ -55452,6 +55710,7 @@ export interface Routes {
|
|
|
55452
55710
|
can_simulate_removal?: boolean | undefined;
|
|
55453
55711
|
can_simulate_connection?: boolean | undefined;
|
|
55454
55712
|
can_simulate_disconnection?: boolean | undefined;
|
|
55713
|
+
can_unlock_with_code?: boolean | undefined;
|
|
55455
55714
|
}>;
|
|
55456
55715
|
devices: Array<{
|
|
55457
55716
|
/** ID of the device. */
|
|
@@ -56562,6 +56821,7 @@ export interface Routes {
|
|
|
56562
56821
|
can_simulate_removal?: boolean | undefined;
|
|
56563
56822
|
can_simulate_connection?: boolean | undefined;
|
|
56564
56823
|
can_simulate_disconnection?: boolean | undefined;
|
|
56824
|
+
can_unlock_with_code?: boolean | undefined;
|
|
56565
56825
|
}>;
|
|
56566
56826
|
};
|
|
56567
56827
|
};
|
|
@@ -56718,6 +56978,8 @@ export interface Routes {
|
|
|
56718
56978
|
acs_credential_id: string;
|
|
56719
56979
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56720
56980
|
acs_user_id?: string | undefined;
|
|
56981
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56982
|
+
connected_account_id: string;
|
|
56721
56983
|
acs_credential_pool_id?: string | undefined;
|
|
56722
56984
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
56723
56985
|
acs_system_id: string;
|
|
@@ -56844,6 +57106,8 @@ export interface Routes {
|
|
|
56844
57106
|
acs_credential_id: string;
|
|
56845
57107
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56846
57108
|
acs_user_id?: string | undefined;
|
|
57109
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57110
|
+
connected_account_id: string;
|
|
56847
57111
|
acs_credential_pool_id?: string | undefined;
|
|
56848
57112
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
56849
57113
|
acs_system_id: string;
|
|
@@ -57093,6 +57357,8 @@ export interface Routes {
|
|
|
57093
57357
|
acs_credential_id: string;
|
|
57094
57358
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57095
57359
|
acs_user_id?: string | undefined;
|
|
57360
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57361
|
+
connected_account_id: string;
|
|
57096
57362
|
acs_credential_pool_id?: string | undefined;
|
|
57097
57363
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57098
57364
|
acs_system_id: string;
|
|
@@ -57219,6 +57485,8 @@ export interface Routes {
|
|
|
57219
57485
|
acs_credential_id: string;
|
|
57220
57486
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57221
57487
|
acs_user_id?: string | undefined;
|
|
57488
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57489
|
+
connected_account_id: string;
|
|
57222
57490
|
acs_credential_pool_id?: string | undefined;
|
|
57223
57491
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57224
57492
|
acs_system_id: string;
|
|
@@ -58230,6 +58498,8 @@ export interface Routes {
|
|
|
58230
58498
|
acs_credential_id: string;
|
|
58231
58499
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58232
58500
|
acs_user_id?: string | undefined;
|
|
58501
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58502
|
+
connected_account_id: string;
|
|
58233
58503
|
acs_credential_pool_id?: string | undefined;
|
|
58234
58504
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
58235
58505
|
acs_system_id: string;
|
|
@@ -58356,6 +58626,8 @@ export interface Routes {
|
|
|
58356
58626
|
acs_credential_id: string;
|
|
58357
58627
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58358
58628
|
acs_user_id?: string | undefined;
|
|
58629
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58630
|
+
connected_account_id: string;
|
|
58359
58631
|
acs_credential_pool_id?: string | undefined;
|
|
58360
58632
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
58361
58633
|
acs_system_id: string;
|
|
@@ -58605,6 +58877,8 @@ export interface Routes {
|
|
|
58605
58877
|
acs_credential_id: string;
|
|
58606
58878
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58607
58879
|
acs_user_id?: string | undefined;
|
|
58880
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58881
|
+
connected_account_id: string;
|
|
58608
58882
|
acs_credential_pool_id?: string | undefined;
|
|
58609
58883
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
58610
58884
|
acs_system_id: string;
|
|
@@ -58731,6 +59005,8 @@ export interface Routes {
|
|
|
58731
59005
|
acs_credential_id: string;
|
|
58732
59006
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58733
59007
|
acs_user_id?: string | undefined;
|
|
59008
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59009
|
+
connected_account_id: string;
|
|
58734
59010
|
acs_credential_pool_id?: string | undefined;
|
|
58735
59011
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
58736
59012
|
acs_system_id: string;
|
|
@@ -59572,6 +59848,8 @@ export interface Routes {
|
|
|
59572
59848
|
acs_credential_id: string;
|
|
59573
59849
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59574
59850
|
acs_user_id?: string | undefined;
|
|
59851
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59852
|
+
connected_account_id: string;
|
|
59575
59853
|
acs_credential_pool_id?: string | undefined;
|
|
59576
59854
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59577
59855
|
acs_system_id: string;
|
|
@@ -59698,6 +59976,8 @@ export interface Routes {
|
|
|
59698
59976
|
acs_credential_id: string;
|
|
59699
59977
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59700
59978
|
acs_user_id?: string | undefined;
|
|
59979
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59980
|
+
connected_account_id: string;
|
|
59701
59981
|
acs_credential_pool_id?: string | undefined;
|
|
59702
59982
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59703
59983
|
acs_system_id: string;
|
|
@@ -59947,6 +60227,8 @@ export interface Routes {
|
|
|
59947
60227
|
acs_credential_id: string;
|
|
59948
60228
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59949
60229
|
acs_user_id?: string | undefined;
|
|
60230
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60231
|
+
connected_account_id: string;
|
|
59950
60232
|
acs_credential_pool_id?: string | undefined;
|
|
59951
60233
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59952
60234
|
acs_system_id: string;
|
|
@@ -60073,6 +60355,8 @@ export interface Routes {
|
|
|
60073
60355
|
acs_credential_id: string;
|
|
60074
60356
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60075
60357
|
acs_user_id?: string | undefined;
|
|
60358
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60359
|
+
connected_account_id: string;
|
|
60076
60360
|
acs_credential_pool_id?: string | undefined;
|
|
60077
60361
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
60078
60362
|
acs_system_id: string;
|
|
@@ -61011,6 +61295,8 @@ export interface Routes {
|
|
|
61011
61295
|
acs_credential_id: string;
|
|
61012
61296
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61013
61297
|
acs_user_id?: string | undefined;
|
|
61298
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61299
|
+
connected_account_id: string;
|
|
61014
61300
|
acs_credential_pool_id?: string | undefined;
|
|
61015
61301
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61016
61302
|
acs_system_id: string;
|
|
@@ -61137,6 +61423,8 @@ export interface Routes {
|
|
|
61137
61423
|
acs_credential_id: string;
|
|
61138
61424
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61139
61425
|
acs_user_id?: string | undefined;
|
|
61426
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61427
|
+
connected_account_id: string;
|
|
61140
61428
|
acs_credential_pool_id?: string | undefined;
|
|
61141
61429
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61142
61430
|
acs_system_id: string;
|
|
@@ -61386,6 +61674,8 @@ export interface Routes {
|
|
|
61386
61674
|
acs_credential_id: string;
|
|
61387
61675
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61388
61676
|
acs_user_id?: string | undefined;
|
|
61677
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61678
|
+
connected_account_id: string;
|
|
61389
61679
|
acs_credential_pool_id?: string | undefined;
|
|
61390
61680
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61391
61681
|
acs_system_id: string;
|
|
@@ -61512,6 +61802,8 @@ export interface Routes {
|
|
|
61512
61802
|
acs_credential_id: string;
|
|
61513
61803
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61514
61804
|
acs_user_id?: string | undefined;
|
|
61805
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61806
|
+
connected_account_id: string;
|
|
61515
61807
|
acs_credential_pool_id?: string | undefined;
|
|
61516
61808
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61517
61809
|
acs_system_id: string;
|
|
@@ -63091,6 +63383,8 @@ export interface Routes {
|
|
|
63091
63383
|
queryParams: {};
|
|
63092
63384
|
jsonBody: {};
|
|
63093
63385
|
commonParams: {
|
|
63386
|
+
/** 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`. */
|
|
63387
|
+
search?: string | undefined;
|
|
63094
63388
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
|
63095
63389
|
credential_manager_acs_system_id?: string | undefined;
|
|
63096
63390
|
};
|
|
@@ -64250,6 +64544,7 @@ export interface Routes {
|
|
|
64250
64544
|
can_simulate_removal?: boolean | undefined;
|
|
64251
64545
|
can_simulate_connection?: boolean | undefined;
|
|
64252
64546
|
can_simulate_disconnection?: boolean | undefined;
|
|
64547
|
+
can_unlock_with_code?: boolean | undefined;
|
|
64253
64548
|
}>;
|
|
64254
64549
|
/**
|
|
64255
64550
|
* @deprecated Use devices. */
|
|
@@ -65362,6 +65657,7 @@ export interface Routes {
|
|
|
65362
65657
|
can_simulate_removal?: boolean | undefined;
|
|
65363
65658
|
can_simulate_connection?: boolean | undefined;
|
|
65364
65659
|
can_simulate_disconnection?: boolean | undefined;
|
|
65660
|
+
can_unlock_with_code?: boolean | undefined;
|
|
65365
65661
|
}>;
|
|
65366
65662
|
};
|
|
65367
65663
|
};
|
|
@@ -66154,6 +66450,8 @@ export interface Routes {
|
|
|
66154
66450
|
acs_credential_id: string;
|
|
66155
66451
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66156
66452
|
acs_user_id?: string | undefined;
|
|
66453
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66454
|
+
connected_account_id: string;
|
|
66157
66455
|
acs_credential_pool_id?: string | undefined;
|
|
66158
66456
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
66159
66457
|
acs_system_id: string;
|
|
@@ -66280,6 +66578,8 @@ export interface Routes {
|
|
|
66280
66578
|
acs_credential_id: string;
|
|
66281
66579
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66282
66580
|
acs_user_id?: string | undefined;
|
|
66581
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66582
|
+
connected_account_id: string;
|
|
66283
66583
|
acs_credential_pool_id?: string | undefined;
|
|
66284
66584
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
66285
66585
|
acs_system_id: string;
|
|
@@ -66529,6 +66829,8 @@ export interface Routes {
|
|
|
66529
66829
|
acs_credential_id: string;
|
|
66530
66830
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66531
66831
|
acs_user_id?: string | undefined;
|
|
66832
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66833
|
+
connected_account_id: string;
|
|
66532
66834
|
acs_credential_pool_id?: string | undefined;
|
|
66533
66835
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
66534
66836
|
acs_system_id: string;
|
|
@@ -66655,6 +66957,8 @@ export interface Routes {
|
|
|
66655
66957
|
acs_credential_id: string;
|
|
66656
66958
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66657
66959
|
acs_user_id?: string | undefined;
|
|
66960
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66961
|
+
connected_account_id: string;
|
|
66658
66962
|
acs_credential_pool_id?: string | undefined;
|
|
66659
66963
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
66660
66964
|
acs_system_id: string;
|