@seamapi/types 1.429.1 → 1.431.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 +145 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +573 -0
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +5 -0
- package/lib/seam/connect/models/acs/acs-credential.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/capability-properties/index.d.ts +18 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -1
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +26 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -0
- package/lib/seam/connect/models/events/devices.d.ts +2 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +1 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -0
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +4 -1
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/modes.d.ts +2 -0
- package/lib/seam/connect/models/thermostats/modes.js +8 -0
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +76 -0
- package/lib/seam/connect/openapi.js +124 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +422 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -0
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +8 -1
- package/src/lib/seam/connect/models/thermostats/modes.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +138 -0
- package/src/lib/seam/connect/route-types.ts +907 -0
|
@@ -188,6 +188,8 @@ export interface Routes {
|
|
|
188
188
|
acs_credential_id: string;
|
|
189
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. */
|
|
190
190
|
acs_user_id?: string | undefined;
|
|
191
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
192
|
+
user_identity_id?: string | undefined;
|
|
191
193
|
/** ID of the [connected account](https://docs.seam.co/latest/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
194
|
connected_account_id: string;
|
|
193
195
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -316,6 +318,8 @@ export interface Routes {
|
|
|
316
318
|
acs_credential_id: string;
|
|
317
319
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
318
320
|
acs_user_id?: string | undefined;
|
|
321
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
322
|
+
user_identity_id?: string | undefined;
|
|
319
323
|
/** ID of the [connected account](https://docs.seam.co/latest/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
324
|
connected_account_id: string;
|
|
321
325
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -496,6 +500,8 @@ export interface Routes {
|
|
|
496
500
|
acs_credential_id: string;
|
|
497
501
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
498
502
|
acs_user_id?: string | undefined;
|
|
503
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
504
|
+
user_identity_id?: string | undefined;
|
|
499
505
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
500
506
|
connected_account_id: string;
|
|
501
507
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -624,6 +630,8 @@ export interface Routes {
|
|
|
624
630
|
acs_credential_id: string;
|
|
625
631
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
626
632
|
acs_user_id?: string | undefined;
|
|
633
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
634
|
+
user_identity_id?: string | undefined;
|
|
627
635
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
628
636
|
connected_account_id: string;
|
|
629
637
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2508,6 +2516,8 @@ export interface Routes {
|
|
|
2508
2516
|
acs_credential_id: string;
|
|
2509
2517
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2510
2518
|
acs_user_id?: string | undefined;
|
|
2519
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2520
|
+
user_identity_id?: string | undefined;
|
|
2511
2521
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2512
2522
|
connected_account_id: string;
|
|
2513
2523
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2636,6 +2646,8 @@ export interface Routes {
|
|
|
2636
2646
|
acs_credential_id: string;
|
|
2637
2647
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2638
2648
|
acs_user_id?: string | undefined;
|
|
2649
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2650
|
+
user_identity_id?: string | undefined;
|
|
2639
2651
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2640
2652
|
connected_account_id: string;
|
|
2641
2653
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2816,6 +2828,8 @@ export interface Routes {
|
|
|
2816
2828
|
acs_credential_id: string;
|
|
2817
2829
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2818
2830
|
acs_user_id?: string | undefined;
|
|
2831
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2832
|
+
user_identity_id?: string | undefined;
|
|
2819
2833
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2820
2834
|
connected_account_id: string;
|
|
2821
2835
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2944,6 +2958,8 @@ export interface Routes {
|
|
|
2944
2958
|
acs_credential_id: string;
|
|
2945
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. */
|
|
2946
2960
|
acs_user_id?: string | undefined;
|
|
2961
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2962
|
+
user_identity_id?: string | undefined;
|
|
2947
2963
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2948
2964
|
connected_account_id: string;
|
|
2949
2965
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6432,6 +6448,8 @@ export interface Routes {
|
|
|
6432
6448
|
acs_credential_id: string;
|
|
6433
6449
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6434
6450
|
acs_user_id?: string | undefined;
|
|
6451
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6452
|
+
user_identity_id?: string | undefined;
|
|
6435
6453
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6436
6454
|
connected_account_id: string;
|
|
6437
6455
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6560,6 +6578,8 @@ export interface Routes {
|
|
|
6560
6578
|
acs_credential_id: string;
|
|
6561
6579
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6562
6580
|
acs_user_id?: string | undefined;
|
|
6581
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6582
|
+
user_identity_id?: string | undefined;
|
|
6563
6583
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6564
6584
|
connected_account_id: string;
|
|
6565
6585
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6740,6 +6760,8 @@ export interface Routes {
|
|
|
6740
6760
|
acs_credential_id: string;
|
|
6741
6761
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6742
6762
|
acs_user_id?: string | undefined;
|
|
6763
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6764
|
+
user_identity_id?: string | undefined;
|
|
6743
6765
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6744
6766
|
connected_account_id: string;
|
|
6745
6767
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6868,6 +6890,8 @@ export interface Routes {
|
|
|
6868
6890
|
acs_credential_id: string;
|
|
6869
6891
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6870
6892
|
acs_user_id?: string | undefined;
|
|
6893
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6894
|
+
user_identity_id?: string | undefined;
|
|
6871
6895
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
6872
6896
|
connected_account_id: string;
|
|
6873
6897
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -8760,6 +8784,8 @@ export interface Routes {
|
|
|
8760
8784
|
acs_credential_id: string;
|
|
8761
8785
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8762
8786
|
acs_user_id?: string | undefined;
|
|
8787
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8788
|
+
user_identity_id?: string | undefined;
|
|
8763
8789
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8764
8790
|
connected_account_id: string;
|
|
8765
8791
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -8888,6 +8914,8 @@ export interface Routes {
|
|
|
8888
8914
|
acs_credential_id: string;
|
|
8889
8915
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8890
8916
|
acs_user_id?: string | undefined;
|
|
8917
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8918
|
+
user_identity_id?: string | undefined;
|
|
8891
8919
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
8892
8920
|
connected_account_id: string;
|
|
8893
8921
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9068,6 +9096,8 @@ export interface Routes {
|
|
|
9068
9096
|
acs_credential_id: string;
|
|
9069
9097
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9070
9098
|
acs_user_id?: string | undefined;
|
|
9099
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9100
|
+
user_identity_id?: string | undefined;
|
|
9071
9101
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9072
9102
|
connected_account_id: string;
|
|
9073
9103
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9196,6 +9226,8 @@ export interface Routes {
|
|
|
9196
9226
|
acs_credential_id: string;
|
|
9197
9227
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9198
9228
|
acs_user_id?: string | undefined;
|
|
9229
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9230
|
+
user_identity_id?: string | undefined;
|
|
9199
9231
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9200
9232
|
connected_account_id: string;
|
|
9201
9233
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10272,6 +10304,8 @@ export interface Routes {
|
|
|
10272
10304
|
acs_credential_id: string;
|
|
10273
10305
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10274
10306
|
acs_user_id?: string | undefined;
|
|
10307
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10308
|
+
user_identity_id?: string | undefined;
|
|
10275
10309
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10276
10310
|
connected_account_id: string;
|
|
10277
10311
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10400,6 +10434,8 @@ export interface Routes {
|
|
|
10400
10434
|
acs_credential_id: string;
|
|
10401
10435
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10402
10436
|
acs_user_id?: string | undefined;
|
|
10437
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10438
|
+
user_identity_id?: string | undefined;
|
|
10403
10439
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10404
10440
|
connected_account_id: string;
|
|
10405
10441
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10580,6 +10616,8 @@ export interface Routes {
|
|
|
10580
10616
|
acs_credential_id: string;
|
|
10581
10617
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10582
10618
|
acs_user_id?: string | undefined;
|
|
10619
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10620
|
+
user_identity_id?: string | undefined;
|
|
10583
10621
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10584
10622
|
connected_account_id: string;
|
|
10585
10623
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10708,6 +10746,8 @@ export interface Routes {
|
|
|
10708
10746
|
acs_credential_id: string;
|
|
10709
10747
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10710
10748
|
acs_user_id?: string | undefined;
|
|
10749
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10750
|
+
user_identity_id?: string | undefined;
|
|
10711
10751
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10712
10752
|
connected_account_id: string;
|
|
10713
10753
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12077,6 +12117,8 @@ export interface Routes {
|
|
|
12077
12117
|
acs_credential_id: string;
|
|
12078
12118
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12079
12119
|
acs_user_id?: string | undefined;
|
|
12120
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12121
|
+
user_identity_id?: string | undefined;
|
|
12080
12122
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12081
12123
|
connected_account_id: string;
|
|
12082
12124
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12270,6 +12312,8 @@ export interface Routes {
|
|
|
12270
12312
|
acs_credential_id: string;
|
|
12271
12313
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12272
12314
|
acs_user_id?: string | undefined;
|
|
12315
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12316
|
+
user_identity_id?: string | undefined;
|
|
12273
12317
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12274
12318
|
connected_account_id: string;
|
|
12275
12319
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12425,6 +12469,8 @@ export interface Routes {
|
|
|
12425
12469
|
acs_credential_id: string;
|
|
12426
12470
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12427
12471
|
acs_user_id?: string | undefined;
|
|
12472
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12473
|
+
user_identity_id?: string | undefined;
|
|
12428
12474
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12429
12475
|
connected_account_id: string;
|
|
12430
12476
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12584,6 +12630,8 @@ export interface Routes {
|
|
|
12584
12630
|
acs_credential_id: string;
|
|
12585
12631
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12586
12632
|
acs_user_id?: string | undefined;
|
|
12633
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12634
|
+
user_identity_id?: string | undefined;
|
|
12587
12635
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12588
12636
|
connected_account_id: string;
|
|
12589
12637
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12744,6 +12792,8 @@ export interface Routes {
|
|
|
12744
12792
|
acs_credential_id: string;
|
|
12745
12793
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12746
12794
|
acs_user_id?: string | undefined;
|
|
12795
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12796
|
+
user_identity_id?: string | undefined;
|
|
12747
12797
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12748
12798
|
connected_account_id: string;
|
|
12749
12799
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13004,6 +13054,8 @@ export interface Routes {
|
|
|
13004
13054
|
acs_credential_id: string;
|
|
13005
13055
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13006
13056
|
acs_user_id?: string | undefined;
|
|
13057
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13058
|
+
user_identity_id?: string | undefined;
|
|
13007
13059
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13008
13060
|
connected_account_id: string;
|
|
13009
13061
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13147,6 +13199,8 @@ export interface Routes {
|
|
|
13147
13199
|
acs_credential_id: string;
|
|
13148
13200
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13149
13201
|
acs_user_id?: string | undefined;
|
|
13202
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13203
|
+
user_identity_id?: string | undefined;
|
|
13150
13204
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13151
13205
|
connected_account_id: string;
|
|
13152
13206
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13300,6 +13354,8 @@ export interface Routes {
|
|
|
13300
13354
|
acs_credential_id: string;
|
|
13301
13355
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13302
13356
|
acs_user_id?: string | undefined;
|
|
13357
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13358
|
+
user_identity_id?: string | undefined;
|
|
13303
13359
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13304
13360
|
connected_account_id: string;
|
|
13305
13361
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13451,6 +13507,8 @@ export interface Routes {
|
|
|
13451
13507
|
acs_credential_id: string;
|
|
13452
13508
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13453
13509
|
acs_user_id?: string | undefined;
|
|
13510
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13511
|
+
user_identity_id?: string | undefined;
|
|
13454
13512
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13455
13513
|
connected_account_id: string;
|
|
13456
13514
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13732,6 +13790,8 @@ export interface Routes {
|
|
|
13732
13790
|
acs_credential_id: string;
|
|
13733
13791
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13734
13792
|
acs_user_id?: string | undefined;
|
|
13793
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13794
|
+
user_identity_id?: string | undefined;
|
|
13735
13795
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13736
13796
|
connected_account_id: string;
|
|
13737
13797
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13860,6 +13920,8 @@ export interface Routes {
|
|
|
13860
13920
|
acs_credential_id: string;
|
|
13861
13921
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13862
13922
|
acs_user_id?: string | undefined;
|
|
13923
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13924
|
+
user_identity_id?: string | undefined;
|
|
13863
13925
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13864
13926
|
connected_account_id: string;
|
|
13865
13927
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -14040,6 +14102,8 @@ export interface Routes {
|
|
|
14040
14102
|
acs_credential_id: string;
|
|
14041
14103
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14042
14104
|
acs_user_id?: string | undefined;
|
|
14105
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14106
|
+
user_identity_id?: string | undefined;
|
|
14043
14107
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14044
14108
|
connected_account_id: string;
|
|
14045
14109
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -14168,6 +14232,8 @@ export interface Routes {
|
|
|
14168
14232
|
acs_credential_id: string;
|
|
14169
14233
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14170
14234
|
acs_user_id?: string | undefined;
|
|
14235
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14236
|
+
user_identity_id?: string | undefined;
|
|
14171
14237
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14172
14238
|
connected_account_id: string;
|
|
14173
14239
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15080,6 +15146,8 @@ export interface Routes {
|
|
|
15080
15146
|
acs_credential_id: string;
|
|
15081
15147
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15082
15148
|
acs_user_id?: string | undefined;
|
|
15149
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15150
|
+
user_identity_id?: string | undefined;
|
|
15083
15151
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15084
15152
|
connected_account_id: string;
|
|
15085
15153
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15208,6 +15276,8 @@ export interface Routes {
|
|
|
15208
15276
|
acs_credential_id: string;
|
|
15209
15277
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15210
15278
|
acs_user_id?: string | undefined;
|
|
15279
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15280
|
+
user_identity_id?: string | undefined;
|
|
15211
15281
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15212
15282
|
connected_account_id: string;
|
|
15213
15283
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15388,6 +15458,8 @@ export interface Routes {
|
|
|
15388
15458
|
acs_credential_id: string;
|
|
15389
15459
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15390
15460
|
acs_user_id?: string | undefined;
|
|
15461
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15462
|
+
user_identity_id?: string | undefined;
|
|
15391
15463
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15392
15464
|
connected_account_id: string;
|
|
15393
15465
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15516,6 +15588,8 @@ export interface Routes {
|
|
|
15516
15588
|
acs_credential_id: string;
|
|
15517
15589
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15518
15590
|
acs_user_id?: string | undefined;
|
|
15591
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15592
|
+
user_identity_id?: string | undefined;
|
|
15519
15593
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15520
15594
|
connected_account_id: string;
|
|
15521
15595
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -16524,6 +16598,8 @@ export interface Routes {
|
|
|
16524
16598
|
acs_credential_id: string;
|
|
16525
16599
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16526
16600
|
acs_user_id?: string | undefined;
|
|
16601
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16602
|
+
user_identity_id?: string | undefined;
|
|
16527
16603
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16528
16604
|
connected_account_id: string;
|
|
16529
16605
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -18610,6 +18686,8 @@ export interface Routes {
|
|
|
18610
18686
|
acs_credential_id: string;
|
|
18611
18687
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18612
18688
|
acs_user_id?: string | undefined;
|
|
18689
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18690
|
+
user_identity_id?: string | undefined;
|
|
18613
18691
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18614
18692
|
connected_account_id: string;
|
|
18615
18693
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -18738,6 +18816,8 @@ export interface Routes {
|
|
|
18738
18816
|
acs_credential_id: string;
|
|
18739
18817
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18740
18818
|
acs_user_id?: string | undefined;
|
|
18819
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18820
|
+
user_identity_id?: string | undefined;
|
|
18741
18821
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18742
18822
|
connected_account_id: string;
|
|
18743
18823
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -18918,6 +18998,8 @@ export interface Routes {
|
|
|
18918
18998
|
acs_credential_id: string;
|
|
18919
18999
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18920
19000
|
acs_user_id?: string | undefined;
|
|
19001
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19002
|
+
user_identity_id?: string | undefined;
|
|
18921
19003
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18922
19004
|
connected_account_id: string;
|
|
18923
19005
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19046,6 +19128,8 @@ export interface Routes {
|
|
|
19046
19128
|
acs_credential_id: string;
|
|
19047
19129
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19048
19130
|
acs_user_id?: string | undefined;
|
|
19131
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19132
|
+
user_identity_id?: string | undefined;
|
|
19049
19133
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19050
19134
|
connected_account_id: string;
|
|
19051
19135
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19855,6 +19939,8 @@ export interface Routes {
|
|
|
19855
19939
|
acs_credential_id: string;
|
|
19856
19940
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19857
19941
|
acs_user_id?: string | undefined;
|
|
19942
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19943
|
+
user_identity_id?: string | undefined;
|
|
19858
19944
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19859
19945
|
connected_account_id: string;
|
|
19860
19946
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19983,6 +20069,8 @@ export interface Routes {
|
|
|
19983
20069
|
acs_credential_id: string;
|
|
19984
20070
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19985
20071
|
acs_user_id?: string | undefined;
|
|
20072
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20073
|
+
user_identity_id?: string | undefined;
|
|
19986
20074
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
19987
20075
|
connected_account_id: string;
|
|
19988
20076
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20163,6 +20251,8 @@ export interface Routes {
|
|
|
20163
20251
|
acs_credential_id: string;
|
|
20164
20252
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20165
20253
|
acs_user_id?: string | undefined;
|
|
20254
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20255
|
+
user_identity_id?: string | undefined;
|
|
20166
20256
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20167
20257
|
connected_account_id: string;
|
|
20168
20258
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20291,6 +20381,8 @@ export interface Routes {
|
|
|
20291
20381
|
acs_credential_id: string;
|
|
20292
20382
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20293
20383
|
acs_user_id?: string | undefined;
|
|
20384
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20385
|
+
user_identity_id?: string | undefined;
|
|
20294
20386
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
20295
20387
|
connected_account_id: string;
|
|
20296
20388
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -23145,6 +23237,8 @@ export interface Routes {
|
|
|
23145
23237
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
23146
23238
|
/** Fan mode settings that the thermostat supports. */
|
|
23147
23239
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
23240
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
23241
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
23148
23242
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
23149
23243
|
is_heating?: boolean | undefined;
|
|
23150
23244
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -23170,6 +23264,10 @@ export interface Routes {
|
|
|
23170
23264
|
name?: ((string | null) | undefined) | undefined;
|
|
23171
23265
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
23172
23266
|
display_name?: string | undefined;
|
|
23267
|
+
/**
|
|
23268
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
23269
|
+
*/
|
|
23270
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
23173
23271
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
23174
23272
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
23175
23273
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -23201,6 +23299,10 @@ export interface Routes {
|
|
|
23201
23299
|
name?: ((string | null) | undefined) | undefined;
|
|
23202
23300
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
23203
23301
|
display_name?: string | undefined;
|
|
23302
|
+
/**
|
|
23303
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
23304
|
+
*/
|
|
23305
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
23204
23306
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
23205
23307
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
23206
23308
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -23231,6 +23333,10 @@ export interface Routes {
|
|
|
23231
23333
|
name?: (string | null) | undefined;
|
|
23232
23334
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
23233
23335
|
display_name: string;
|
|
23336
|
+
/**
|
|
23337
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
23338
|
+
*/
|
|
23339
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
23234
23340
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
23235
23341
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
23236
23342
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -24303,6 +24409,8 @@ export interface Routes {
|
|
|
24303
24409
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
24304
24410
|
/** Fan mode settings that the thermostat supports. */
|
|
24305
24411
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
24412
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
24413
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
24306
24414
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
24307
24415
|
is_heating?: boolean | undefined;
|
|
24308
24416
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -24328,6 +24436,10 @@ export interface Routes {
|
|
|
24328
24436
|
name?: ((string | null) | undefined) | undefined;
|
|
24329
24437
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
24330
24438
|
display_name?: string | undefined;
|
|
24439
|
+
/**
|
|
24440
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
24441
|
+
*/
|
|
24442
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
24331
24443
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
24332
24444
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
24333
24445
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -24359,6 +24471,10 @@ export interface Routes {
|
|
|
24359
24471
|
name?: ((string | null) | undefined) | undefined;
|
|
24360
24472
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
24361
24473
|
display_name?: string | undefined;
|
|
24474
|
+
/**
|
|
24475
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
24476
|
+
*/
|
|
24477
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
24362
24478
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
24363
24479
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
24364
24480
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -24389,6 +24505,10 @@ export interface Routes {
|
|
|
24389
24505
|
name?: (string | null) | undefined;
|
|
24390
24506
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
24391
24507
|
display_name: string;
|
|
24508
|
+
/**
|
|
24509
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
24510
|
+
*/
|
|
24511
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
24392
24512
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
24393
24513
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
24394
24514
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -29225,6 +29345,8 @@ export interface Routes {
|
|
|
29225
29345
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
29226
29346
|
/** Fan mode settings that the thermostat supports. */
|
|
29227
29347
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
29348
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
29349
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
29228
29350
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
29229
29351
|
is_heating?: boolean | undefined;
|
|
29230
29352
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -29250,6 +29372,10 @@ export interface Routes {
|
|
|
29250
29372
|
name?: ((string | null) | undefined) | undefined;
|
|
29251
29373
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
29252
29374
|
display_name?: string | undefined;
|
|
29375
|
+
/**
|
|
29376
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
29377
|
+
*/
|
|
29378
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
29253
29379
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
29254
29380
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
29255
29381
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -29281,6 +29407,10 @@ export interface Routes {
|
|
|
29281
29407
|
name?: ((string | null) | undefined) | undefined;
|
|
29282
29408
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
29283
29409
|
display_name?: string | undefined;
|
|
29410
|
+
/**
|
|
29411
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
29412
|
+
*/
|
|
29413
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
29284
29414
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
29285
29415
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
29286
29416
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -29311,6 +29441,10 @@ export interface Routes {
|
|
|
29311
29441
|
name?: (string | null) | undefined;
|
|
29312
29442
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
29313
29443
|
display_name: string;
|
|
29444
|
+
/**
|
|
29445
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
29446
|
+
*/
|
|
29447
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
29314
29448
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
29315
29449
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
29316
29450
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -30337,6 +30471,8 @@ export interface Routes {
|
|
|
30337
30471
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
30338
30472
|
/** Fan mode settings that the thermostat supports. */
|
|
30339
30473
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
30474
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
30475
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
30340
30476
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
30341
30477
|
is_heating?: boolean | undefined;
|
|
30342
30478
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -30362,6 +30498,10 @@ export interface Routes {
|
|
|
30362
30498
|
name?: ((string | null) | undefined) | undefined;
|
|
30363
30499
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
30364
30500
|
display_name?: string | undefined;
|
|
30501
|
+
/**
|
|
30502
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
30503
|
+
*/
|
|
30504
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
30365
30505
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
30366
30506
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
30367
30507
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -30393,6 +30533,10 @@ export interface Routes {
|
|
|
30393
30533
|
name?: ((string | null) | undefined) | undefined;
|
|
30394
30534
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
30395
30535
|
display_name?: string | undefined;
|
|
30536
|
+
/**
|
|
30537
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
30538
|
+
*/
|
|
30539
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
30396
30540
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
30397
30541
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
30398
30542
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -30423,6 +30567,10 @@ export interface Routes {
|
|
|
30423
30567
|
name?: (string | null) | undefined;
|
|
30424
30568
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
30425
30569
|
display_name: string;
|
|
30570
|
+
/**
|
|
30571
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
30572
|
+
*/
|
|
30573
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
30426
30574
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
30427
30575
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
30428
30576
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -31495,6 +31643,8 @@ export interface Routes {
|
|
|
31495
31643
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
31496
31644
|
/** Fan mode settings that the thermostat supports. */
|
|
31497
31645
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
31646
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
31647
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
31498
31648
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
31499
31649
|
is_heating?: boolean | undefined;
|
|
31500
31650
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -31520,6 +31670,10 @@ export interface Routes {
|
|
|
31520
31670
|
name?: ((string | null) | undefined) | undefined;
|
|
31521
31671
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
31522
31672
|
display_name?: string | undefined;
|
|
31673
|
+
/**
|
|
31674
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
31675
|
+
*/
|
|
31676
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
31523
31677
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
31524
31678
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
31525
31679
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -31551,6 +31705,10 @@ export interface Routes {
|
|
|
31551
31705
|
name?: ((string | null) | undefined) | undefined;
|
|
31552
31706
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
31553
31707
|
display_name?: string | undefined;
|
|
31708
|
+
/**
|
|
31709
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
31710
|
+
*/
|
|
31711
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
31554
31712
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
31555
31713
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
31556
31714
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -31581,6 +31739,10 @@ export interface Routes {
|
|
|
31581
31739
|
name?: (string | null) | undefined;
|
|
31582
31740
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
31583
31741
|
display_name: string;
|
|
31742
|
+
/**
|
|
31743
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
31744
|
+
*/
|
|
31745
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
31584
31746
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
31585
31747
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
31586
31748
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -32606,6 +32768,8 @@ export interface Routes {
|
|
|
32606
32768
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
32607
32769
|
/** Fan mode settings that the thermostat supports. */
|
|
32608
32770
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
32771
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
32772
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
32609
32773
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
32610
32774
|
is_heating?: boolean | undefined;
|
|
32611
32775
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -32631,6 +32795,10 @@ export interface Routes {
|
|
|
32631
32795
|
name?: ((string | null) | undefined) | undefined;
|
|
32632
32796
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32633
32797
|
display_name?: string | undefined;
|
|
32798
|
+
/**
|
|
32799
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
32800
|
+
*/
|
|
32801
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
32634
32802
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
32635
32803
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
32636
32804
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -32662,6 +32830,10 @@ export interface Routes {
|
|
|
32662
32830
|
name?: ((string | null) | undefined) | undefined;
|
|
32663
32831
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32664
32832
|
display_name?: string | undefined;
|
|
32833
|
+
/**
|
|
32834
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
32835
|
+
*/
|
|
32836
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
32665
32837
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
32666
32838
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
32667
32839
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -32692,6 +32864,10 @@ export interface Routes {
|
|
|
32692
32864
|
name?: (string | null) | undefined;
|
|
32693
32865
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32694
32866
|
display_name: string;
|
|
32867
|
+
/**
|
|
32868
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
32869
|
+
*/
|
|
32870
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
32695
32871
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
32696
32872
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
32697
32873
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -33287,6 +33463,8 @@ export interface Routes {
|
|
|
33287
33463
|
acs_credential_id: string;
|
|
33288
33464
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33289
33465
|
acs_user_id?: string | undefined;
|
|
33466
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33467
|
+
user_identity_id?: string | undefined;
|
|
33290
33468
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33291
33469
|
connected_account_id: string;
|
|
33292
33470
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33415,6 +33593,8 @@ export interface Routes {
|
|
|
33415
33593
|
acs_credential_id: string;
|
|
33416
33594
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33417
33595
|
acs_user_id?: string | undefined;
|
|
33596
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33597
|
+
user_identity_id?: string | undefined;
|
|
33418
33598
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33419
33599
|
connected_account_id: string;
|
|
33420
33600
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33595,6 +33775,8 @@ export interface Routes {
|
|
|
33595
33775
|
acs_credential_id: string;
|
|
33596
33776
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33597
33777
|
acs_user_id?: string | undefined;
|
|
33778
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33779
|
+
user_identity_id?: string | undefined;
|
|
33598
33780
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33599
33781
|
connected_account_id: string;
|
|
33600
33782
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33723,6 +33905,8 @@ export interface Routes {
|
|
|
33723
33905
|
acs_credential_id: string;
|
|
33724
33906
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33725
33907
|
acs_user_id?: string | undefined;
|
|
33908
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33909
|
+
user_identity_id?: string | undefined;
|
|
33726
33910
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
33727
33911
|
connected_account_id: string;
|
|
33728
33912
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34539,6 +34723,8 @@ export interface Routes {
|
|
|
34539
34723
|
acs_credential_id: string;
|
|
34540
34724
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34541
34725
|
acs_user_id?: string | undefined;
|
|
34726
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34727
|
+
user_identity_id?: string | undefined;
|
|
34542
34728
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34543
34729
|
connected_account_id: string;
|
|
34544
34730
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34667,6 +34853,8 @@ export interface Routes {
|
|
|
34667
34853
|
acs_credential_id: string;
|
|
34668
34854
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34669
34855
|
acs_user_id?: string | undefined;
|
|
34856
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34857
|
+
user_identity_id?: string | undefined;
|
|
34670
34858
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34671
34859
|
connected_account_id: string;
|
|
34672
34860
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34847,6 +35035,8 @@ export interface Routes {
|
|
|
34847
35035
|
acs_credential_id: string;
|
|
34848
35036
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34849
35037
|
acs_user_id?: string | undefined;
|
|
35038
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35039
|
+
user_identity_id?: string | undefined;
|
|
34850
35040
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34851
35041
|
connected_account_id: string;
|
|
34852
35042
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34975,6 +35165,8 @@ export interface Routes {
|
|
|
34975
35165
|
acs_credential_id: string;
|
|
34976
35166
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34977
35167
|
acs_user_id?: string | undefined;
|
|
35168
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35169
|
+
user_identity_id?: string | undefined;
|
|
34978
35170
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
34979
35171
|
connected_account_id: string;
|
|
34980
35172
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35789,6 +35981,8 @@ export interface Routes {
|
|
|
35789
35981
|
acs_credential_id: string;
|
|
35790
35982
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35791
35983
|
acs_user_id?: string | undefined;
|
|
35984
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35985
|
+
user_identity_id?: string | undefined;
|
|
35792
35986
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35793
35987
|
connected_account_id: string;
|
|
35794
35988
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35917,6 +36111,8 @@ export interface Routes {
|
|
|
35917
36111
|
acs_credential_id: string;
|
|
35918
36112
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35919
36113
|
acs_user_id?: string | undefined;
|
|
36114
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36115
|
+
user_identity_id?: string | undefined;
|
|
35920
36116
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
35921
36117
|
connected_account_id: string;
|
|
35922
36118
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36097,6 +36293,8 @@ export interface Routes {
|
|
|
36097
36293
|
acs_credential_id: string;
|
|
36098
36294
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36099
36295
|
acs_user_id?: string | undefined;
|
|
36296
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36297
|
+
user_identity_id?: string | undefined;
|
|
36100
36298
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36101
36299
|
connected_account_id: string;
|
|
36102
36300
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36225,6 +36423,8 @@ export interface Routes {
|
|
|
36225
36423
|
acs_credential_id: string;
|
|
36226
36424
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36227
36425
|
acs_user_id?: string | undefined;
|
|
36426
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36427
|
+
user_identity_id?: string | undefined;
|
|
36228
36428
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
36229
36429
|
connected_account_id: string;
|
|
36230
36430
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37041,6 +37241,8 @@ export interface Routes {
|
|
|
37041
37241
|
acs_credential_id: string;
|
|
37042
37242
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37043
37243
|
acs_user_id?: string | undefined;
|
|
37244
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37245
|
+
user_identity_id?: string | undefined;
|
|
37044
37246
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37045
37247
|
connected_account_id: string;
|
|
37046
37248
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37169,6 +37371,8 @@ export interface Routes {
|
|
|
37169
37371
|
acs_credential_id: string;
|
|
37170
37372
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37171
37373
|
acs_user_id?: string | undefined;
|
|
37374
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37375
|
+
user_identity_id?: string | undefined;
|
|
37172
37376
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37173
37377
|
connected_account_id: string;
|
|
37174
37378
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37349,6 +37553,8 @@ export interface Routes {
|
|
|
37349
37553
|
acs_credential_id: string;
|
|
37350
37554
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37351
37555
|
acs_user_id?: string | undefined;
|
|
37556
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37557
|
+
user_identity_id?: string | undefined;
|
|
37352
37558
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37353
37559
|
connected_account_id: string;
|
|
37354
37560
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37477,6 +37683,8 @@ export interface Routes {
|
|
|
37477
37683
|
acs_credential_id: string;
|
|
37478
37684
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37479
37685
|
acs_user_id?: string | undefined;
|
|
37686
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37687
|
+
user_identity_id?: string | undefined;
|
|
37480
37688
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
37481
37689
|
connected_account_id: string;
|
|
37482
37690
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -38805,6 +39013,8 @@ export interface Routes {
|
|
|
38805
39013
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
38806
39014
|
/** Fan mode settings that the thermostat supports. */
|
|
38807
39015
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
39016
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
39017
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
38808
39018
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
38809
39019
|
is_heating?: boolean | undefined;
|
|
38810
39020
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -38830,6 +39040,10 @@ export interface Routes {
|
|
|
38830
39040
|
name?: ((string | null) | undefined) | undefined;
|
|
38831
39041
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38832
39042
|
display_name?: string | undefined;
|
|
39043
|
+
/**
|
|
39044
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
39045
|
+
*/
|
|
39046
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
38833
39047
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
38834
39048
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
38835
39049
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -38861,6 +39075,10 @@ export interface Routes {
|
|
|
38861
39075
|
name?: ((string | null) | undefined) | undefined;
|
|
38862
39076
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38863
39077
|
display_name?: string | undefined;
|
|
39078
|
+
/**
|
|
39079
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
39080
|
+
*/
|
|
39081
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
38864
39082
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
38865
39083
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
38866
39084
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -38891,6 +39109,10 @@ export interface Routes {
|
|
|
38891
39109
|
name?: (string | null) | undefined;
|
|
38892
39110
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38893
39111
|
display_name: string;
|
|
39112
|
+
/**
|
|
39113
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
39114
|
+
*/
|
|
39115
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
38894
39116
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
38895
39117
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
38896
39118
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -39916,6 +40138,8 @@ export interface Routes {
|
|
|
39916
40138
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
39917
40139
|
/** Fan mode settings that the thermostat supports. */
|
|
39918
40140
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
40141
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
40142
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
39919
40143
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
39920
40144
|
is_heating?: boolean | undefined;
|
|
39921
40145
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -39941,6 +40165,10 @@ export interface Routes {
|
|
|
39941
40165
|
name?: ((string | null) | undefined) | undefined;
|
|
39942
40166
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
39943
40167
|
display_name?: string | undefined;
|
|
40168
|
+
/**
|
|
40169
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
40170
|
+
*/
|
|
40171
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
39944
40172
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
39945
40173
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
39946
40174
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -39972,6 +40200,10 @@ export interface Routes {
|
|
|
39972
40200
|
name?: ((string | null) | undefined) | undefined;
|
|
39973
40201
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
39974
40202
|
display_name?: string | undefined;
|
|
40203
|
+
/**
|
|
40204
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
40205
|
+
*/
|
|
40206
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
39975
40207
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
39976
40208
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
39977
40209
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -40002,6 +40234,10 @@ export interface Routes {
|
|
|
40002
40234
|
name?: (string | null) | undefined;
|
|
40003
40235
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
40004
40236
|
display_name: string;
|
|
40237
|
+
/**
|
|
40238
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
40239
|
+
*/
|
|
40240
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
40005
40241
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
40006
40242
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
40007
40243
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -40607,6 +40843,8 @@ export interface Routes {
|
|
|
40607
40843
|
acs_credential_id: string;
|
|
40608
40844
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40609
40845
|
acs_user_id?: string | undefined;
|
|
40846
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40847
|
+
user_identity_id?: string | undefined;
|
|
40610
40848
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40611
40849
|
connected_account_id: string;
|
|
40612
40850
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -40735,6 +40973,8 @@ export interface Routes {
|
|
|
40735
40973
|
acs_credential_id: string;
|
|
40736
40974
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40737
40975
|
acs_user_id?: string | undefined;
|
|
40976
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40977
|
+
user_identity_id?: string | undefined;
|
|
40738
40978
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40739
40979
|
connected_account_id: string;
|
|
40740
40980
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -40915,6 +41155,8 @@ export interface Routes {
|
|
|
40915
41155
|
acs_credential_id: string;
|
|
40916
41156
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40917
41157
|
acs_user_id?: string | undefined;
|
|
41158
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41159
|
+
user_identity_id?: string | undefined;
|
|
40918
41160
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40919
41161
|
connected_account_id: string;
|
|
40920
41162
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41043,6 +41285,8 @@ export interface Routes {
|
|
|
41043
41285
|
acs_credential_id: string;
|
|
41044
41286
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41045
41287
|
acs_user_id?: string | undefined;
|
|
41288
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41289
|
+
user_identity_id?: string | undefined;
|
|
41046
41290
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41047
41291
|
connected_account_id: string;
|
|
41048
41292
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41878,6 +42122,8 @@ export interface Routes {
|
|
|
41878
42122
|
acs_credential_id: string;
|
|
41879
42123
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41880
42124
|
acs_user_id?: string | undefined;
|
|
42125
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42126
|
+
user_identity_id?: string | undefined;
|
|
41881
42127
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41882
42128
|
connected_account_id: string;
|
|
41883
42129
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42006,6 +42252,8 @@ export interface Routes {
|
|
|
42006
42252
|
acs_credential_id: string;
|
|
42007
42253
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42008
42254
|
acs_user_id?: string | undefined;
|
|
42255
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42256
|
+
user_identity_id?: string | undefined;
|
|
42009
42257
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42010
42258
|
connected_account_id: string;
|
|
42011
42259
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42186,6 +42434,8 @@ export interface Routes {
|
|
|
42186
42434
|
acs_credential_id: string;
|
|
42187
42435
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42188
42436
|
acs_user_id?: string | undefined;
|
|
42437
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42438
|
+
user_identity_id?: string | undefined;
|
|
42189
42439
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42190
42440
|
connected_account_id: string;
|
|
42191
42441
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42314,6 +42564,8 @@ export interface Routes {
|
|
|
42314
42564
|
acs_credential_id: string;
|
|
42315
42565
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42316
42566
|
acs_user_id?: string | undefined;
|
|
42567
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42568
|
+
user_identity_id?: string | undefined;
|
|
42317
42569
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42318
42570
|
connected_account_id: string;
|
|
42319
42571
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43203,6 +43455,8 @@ export interface Routes {
|
|
|
43203
43455
|
acs_credential_id: string;
|
|
43204
43456
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43205
43457
|
acs_user_id?: string | undefined;
|
|
43458
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43459
|
+
user_identity_id?: string | undefined;
|
|
43206
43460
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43207
43461
|
connected_account_id: string;
|
|
43208
43462
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43331,6 +43585,8 @@ export interface Routes {
|
|
|
43331
43585
|
acs_credential_id: string;
|
|
43332
43586
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43333
43587
|
acs_user_id?: string | undefined;
|
|
43588
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43589
|
+
user_identity_id?: string | undefined;
|
|
43334
43590
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43335
43591
|
connected_account_id: string;
|
|
43336
43592
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43511,6 +43767,8 @@ export interface Routes {
|
|
|
43511
43767
|
acs_credential_id: string;
|
|
43512
43768
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43513
43769
|
acs_user_id?: string | undefined;
|
|
43770
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43771
|
+
user_identity_id?: string | undefined;
|
|
43514
43772
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43515
43773
|
connected_account_id: string;
|
|
43516
43774
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43639,6 +43897,8 @@ export interface Routes {
|
|
|
43639
43897
|
acs_credential_id: string;
|
|
43640
43898
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43641
43899
|
acs_user_id?: string | undefined;
|
|
43900
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43901
|
+
user_identity_id?: string | undefined;
|
|
43642
43902
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43643
43903
|
connected_account_id: string;
|
|
43644
43904
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45089,6 +45349,8 @@ export interface Routes {
|
|
|
45089
45349
|
acs_credential_id: string;
|
|
45090
45350
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45091
45351
|
acs_user_id?: string | undefined;
|
|
45352
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45353
|
+
user_identity_id?: string | undefined;
|
|
45092
45354
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45093
45355
|
connected_account_id: string;
|
|
45094
45356
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45253,6 +45515,8 @@ export interface Routes {
|
|
|
45253
45515
|
acs_credentials: Array<{
|
|
45254
45516
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45255
45517
|
acs_user_id?: string | undefined;
|
|
45518
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45519
|
+
user_identity_id?: string | undefined;
|
|
45256
45520
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45257
45521
|
connected_account_id: string;
|
|
45258
45522
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45832,6 +46096,8 @@ export interface Routes {
|
|
|
45832
46096
|
acs_credential_id: string;
|
|
45833
46097
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45834
46098
|
acs_user_id?: string | undefined;
|
|
46099
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46100
|
+
user_identity_id?: string | undefined;
|
|
45835
46101
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45836
46102
|
connected_account_id: string;
|
|
45837
46103
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45960,6 +46226,8 @@ export interface Routes {
|
|
|
45960
46226
|
acs_credential_id: string;
|
|
45961
46227
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45962
46228
|
acs_user_id?: string | undefined;
|
|
46229
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46230
|
+
user_identity_id?: string | undefined;
|
|
45963
46231
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
45964
46232
|
connected_account_id: string;
|
|
45965
46233
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46140,6 +46408,8 @@ export interface Routes {
|
|
|
46140
46408
|
acs_credential_id: string;
|
|
46141
46409
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46142
46410
|
acs_user_id?: string | undefined;
|
|
46411
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46412
|
+
user_identity_id?: string | undefined;
|
|
46143
46413
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46144
46414
|
connected_account_id: string;
|
|
46145
46415
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46268,6 +46538,8 @@ export interface Routes {
|
|
|
46268
46538
|
acs_credential_id: string;
|
|
46269
46539
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46270
46540
|
acs_user_id?: string | undefined;
|
|
46541
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46542
|
+
user_identity_id?: string | undefined;
|
|
46271
46543
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
46272
46544
|
connected_account_id: string;
|
|
46273
46545
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47088,6 +47360,8 @@ export interface Routes {
|
|
|
47088
47360
|
acs_credential_id: string;
|
|
47089
47361
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47090
47362
|
acs_user_id?: string | undefined;
|
|
47363
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47364
|
+
user_identity_id?: string | undefined;
|
|
47091
47365
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47092
47366
|
connected_account_id: string;
|
|
47093
47367
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47216,6 +47490,8 @@ export interface Routes {
|
|
|
47216
47490
|
acs_credential_id: string;
|
|
47217
47491
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47218
47492
|
acs_user_id?: string | undefined;
|
|
47493
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47494
|
+
user_identity_id?: string | undefined;
|
|
47219
47495
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47220
47496
|
connected_account_id: string;
|
|
47221
47497
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47396,6 +47672,8 @@ export interface Routes {
|
|
|
47396
47672
|
acs_credential_id: string;
|
|
47397
47673
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47398
47674
|
acs_user_id?: string | undefined;
|
|
47675
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47676
|
+
user_identity_id?: string | undefined;
|
|
47399
47677
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47400
47678
|
connected_account_id: string;
|
|
47401
47679
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47524,6 +47802,8 @@ export interface Routes {
|
|
|
47524
47802
|
acs_credential_id: string;
|
|
47525
47803
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47526
47804
|
acs_user_id?: string | undefined;
|
|
47805
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47806
|
+
user_identity_id?: string | undefined;
|
|
47527
47807
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47528
47808
|
connected_account_id: string;
|
|
47529
47809
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48201,6 +48481,10 @@ export interface Routes {
|
|
|
48201
48481
|
climate_preset_key: string;
|
|
48202
48482
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
48203
48483
|
name?: (string | null) | undefined;
|
|
48484
|
+
/**
|
|
48485
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
48486
|
+
*/
|
|
48487
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
48204
48488
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
48205
48489
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
48206
48490
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -48432,6 +48716,8 @@ export interface Routes {
|
|
|
48432
48716
|
acs_credential_id: string;
|
|
48433
48717
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48434
48718
|
acs_user_id?: string | undefined;
|
|
48719
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48720
|
+
user_identity_id?: string | undefined;
|
|
48435
48721
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48436
48722
|
connected_account_id: string;
|
|
48437
48723
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48560,6 +48846,8 @@ export interface Routes {
|
|
|
48560
48846
|
acs_credential_id: string;
|
|
48561
48847
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48562
48848
|
acs_user_id?: string | undefined;
|
|
48849
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48850
|
+
user_identity_id?: string | undefined;
|
|
48563
48851
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48564
48852
|
connected_account_id: string;
|
|
48565
48853
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48740,6 +49028,8 @@ export interface Routes {
|
|
|
48740
49028
|
acs_credential_id: string;
|
|
48741
49029
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48742
49030
|
acs_user_id?: string | undefined;
|
|
49031
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49032
|
+
user_identity_id?: string | undefined;
|
|
48743
49033
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48744
49034
|
connected_account_id: string;
|
|
48745
49035
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48868,6 +49158,8 @@ export interface Routes {
|
|
|
48868
49158
|
acs_credential_id: string;
|
|
48869
49159
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48870
49160
|
acs_user_id?: string | undefined;
|
|
49161
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49162
|
+
user_identity_id?: string | undefined;
|
|
48871
49163
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48872
49164
|
connected_account_id: string;
|
|
48873
49165
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -50144,6 +50436,8 @@ export interface Routes {
|
|
|
50144
50436
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
50145
50437
|
/** Fan mode settings that the thermostat supports. */
|
|
50146
50438
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
50439
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
50440
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
50147
50441
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
50148
50442
|
is_heating?: boolean | undefined;
|
|
50149
50443
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -50169,6 +50463,10 @@ export interface Routes {
|
|
|
50169
50463
|
name?: ((string | null) | undefined) | undefined;
|
|
50170
50464
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
50171
50465
|
display_name?: string | undefined;
|
|
50466
|
+
/**
|
|
50467
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
50468
|
+
*/
|
|
50469
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
50172
50470
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
50173
50471
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
50174
50472
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -50200,6 +50498,10 @@ export interface Routes {
|
|
|
50200
50498
|
name?: ((string | null) | undefined) | undefined;
|
|
50201
50499
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
50202
50500
|
display_name?: string | undefined;
|
|
50501
|
+
/**
|
|
50502
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
50503
|
+
*/
|
|
50504
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
50203
50505
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
50204
50506
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
50205
50507
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -50230,6 +50532,10 @@ export interface Routes {
|
|
|
50230
50532
|
name?: (string | null) | undefined;
|
|
50231
50533
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
50232
50534
|
display_name: string;
|
|
50535
|
+
/**
|
|
50536
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
50537
|
+
*/
|
|
50538
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
50233
50539
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
50234
50540
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
50235
50541
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -50829,6 +51135,8 @@ export interface Routes {
|
|
|
50829
51135
|
acs_credential_id: string;
|
|
50830
51136
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50831
51137
|
acs_user_id?: string | undefined;
|
|
51138
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51139
|
+
user_identity_id?: string | undefined;
|
|
50832
51140
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50833
51141
|
connected_account_id: string;
|
|
50834
51142
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -50957,6 +51265,8 @@ export interface Routes {
|
|
|
50957
51265
|
acs_credential_id: string;
|
|
50958
51266
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50959
51267
|
acs_user_id?: string | undefined;
|
|
51268
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51269
|
+
user_identity_id?: string | undefined;
|
|
50960
51270
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50961
51271
|
connected_account_id: string;
|
|
50962
51272
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51137,6 +51447,8 @@ export interface Routes {
|
|
|
51137
51447
|
acs_credential_id: string;
|
|
51138
51448
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51139
51449
|
acs_user_id?: string | undefined;
|
|
51450
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51451
|
+
user_identity_id?: string | undefined;
|
|
51140
51452
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51141
51453
|
connected_account_id: string;
|
|
51142
51454
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51265,6 +51577,8 @@ export interface Routes {
|
|
|
51265
51577
|
acs_credential_id: string;
|
|
51266
51578
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51267
51579
|
acs_user_id?: string | undefined;
|
|
51580
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51581
|
+
user_identity_id?: string | undefined;
|
|
51268
51582
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
51269
51583
|
connected_account_id: string;
|
|
51270
51584
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52089,6 +52403,8 @@ export interface Routes {
|
|
|
52089
52403
|
acs_credential_id: string;
|
|
52090
52404
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52091
52405
|
acs_user_id?: string | undefined;
|
|
52406
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52407
|
+
user_identity_id?: string | undefined;
|
|
52092
52408
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52093
52409
|
connected_account_id: string;
|
|
52094
52410
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52217,6 +52533,8 @@ export interface Routes {
|
|
|
52217
52533
|
acs_credential_id: string;
|
|
52218
52534
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52219
52535
|
acs_user_id?: string | undefined;
|
|
52536
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52537
|
+
user_identity_id?: string | undefined;
|
|
52220
52538
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52221
52539
|
connected_account_id: string;
|
|
52222
52540
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52397,6 +52715,8 @@ export interface Routes {
|
|
|
52397
52715
|
acs_credential_id: string;
|
|
52398
52716
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52399
52717
|
acs_user_id?: string | undefined;
|
|
52718
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52719
|
+
user_identity_id?: string | undefined;
|
|
52400
52720
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52401
52721
|
connected_account_id: string;
|
|
52402
52722
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52525,6 +52845,8 @@ export interface Routes {
|
|
|
52525
52845
|
acs_credential_id: string;
|
|
52526
52846
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52527
52847
|
acs_user_id?: string | undefined;
|
|
52848
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52849
|
+
user_identity_id?: string | undefined;
|
|
52528
52850
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52529
52851
|
connected_account_id: string;
|
|
52530
52852
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -53818,6 +54140,8 @@ export interface Routes {
|
|
|
53818
54140
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
53819
54141
|
/** Fan mode settings that the thermostat supports. */
|
|
53820
54142
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
54143
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
54144
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
53821
54145
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
53822
54146
|
is_heating?: boolean | undefined;
|
|
53823
54147
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -53843,6 +54167,10 @@ export interface Routes {
|
|
|
53843
54167
|
name?: ((string | null) | undefined) | undefined;
|
|
53844
54168
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
53845
54169
|
display_name?: string | undefined;
|
|
54170
|
+
/**
|
|
54171
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
54172
|
+
*/
|
|
54173
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
53846
54174
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
53847
54175
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
53848
54176
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -53874,6 +54202,10 @@ export interface Routes {
|
|
|
53874
54202
|
name?: ((string | null) | undefined) | undefined;
|
|
53875
54203
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
53876
54204
|
display_name?: string | undefined;
|
|
54205
|
+
/**
|
|
54206
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
54207
|
+
*/
|
|
54208
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
53877
54209
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
53878
54210
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
53879
54211
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -53904,6 +54236,10 @@ export interface Routes {
|
|
|
53904
54236
|
name?: (string | null) | undefined;
|
|
53905
54237
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
53906
54238
|
display_name: string;
|
|
54239
|
+
/**
|
|
54240
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
54241
|
+
*/
|
|
54242
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
53907
54243
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
53908
54244
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
53909
54245
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -54929,6 +55265,8 @@ export interface Routes {
|
|
|
54929
55265
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
54930
55266
|
/** Fan mode settings that the thermostat supports. */
|
|
54931
55267
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
55268
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
55269
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
54932
55270
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
54933
55271
|
is_heating?: boolean | undefined;
|
|
54934
55272
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -54954,6 +55292,10 @@ export interface Routes {
|
|
|
54954
55292
|
name?: ((string | null) | undefined) | undefined;
|
|
54955
55293
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
54956
55294
|
display_name?: string | undefined;
|
|
55295
|
+
/**
|
|
55296
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
55297
|
+
*/
|
|
55298
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
54957
55299
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
54958
55300
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
54959
55301
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -54985,6 +55327,10 @@ export interface Routes {
|
|
|
54985
55327
|
name?: ((string | null) | undefined) | undefined;
|
|
54986
55328
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
54987
55329
|
display_name?: string | undefined;
|
|
55330
|
+
/**
|
|
55331
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
55332
|
+
*/
|
|
55333
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
54988
55334
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
54989
55335
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
54990
55336
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -55015,6 +55361,10 @@ export interface Routes {
|
|
|
55015
55361
|
name?: (string | null) | undefined;
|
|
55016
55362
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
55017
55363
|
display_name: string;
|
|
55364
|
+
/**
|
|
55365
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
55366
|
+
*/
|
|
55367
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
55018
55368
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
55019
55369
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
55020
55370
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -55610,6 +55960,8 @@ export interface Routes {
|
|
|
55610
55960
|
acs_credential_id: string;
|
|
55611
55961
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55612
55962
|
acs_user_id?: string | undefined;
|
|
55963
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55964
|
+
user_identity_id?: string | undefined;
|
|
55613
55965
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55614
55966
|
connected_account_id: string;
|
|
55615
55967
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55738,6 +56090,8 @@ export interface Routes {
|
|
|
55738
56090
|
acs_credential_id: string;
|
|
55739
56091
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55740
56092
|
acs_user_id?: string | undefined;
|
|
56093
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56094
|
+
user_identity_id?: string | undefined;
|
|
55741
56095
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55742
56096
|
connected_account_id: string;
|
|
55743
56097
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55918,6 +56272,8 @@ export interface Routes {
|
|
|
55918
56272
|
acs_credential_id: string;
|
|
55919
56273
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55920
56274
|
acs_user_id?: string | undefined;
|
|
56275
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56276
|
+
user_identity_id?: string | undefined;
|
|
55921
56277
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55922
56278
|
connected_account_id: string;
|
|
55923
56279
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56046,6 +56402,8 @@ export interface Routes {
|
|
|
56046
56402
|
acs_credential_id: string;
|
|
56047
56403
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56048
56404
|
acs_user_id?: string | undefined;
|
|
56405
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56406
|
+
user_identity_id?: string | undefined;
|
|
56049
56407
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56050
56408
|
connected_account_id: string;
|
|
56051
56409
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57059,6 +57417,8 @@ export interface Routes {
|
|
|
57059
57417
|
acs_credential_id: string;
|
|
57060
57418
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57061
57419
|
acs_user_id?: string | undefined;
|
|
57420
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57421
|
+
user_identity_id?: string | undefined;
|
|
57062
57422
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57063
57423
|
connected_account_id: string;
|
|
57064
57424
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57187,6 +57547,8 @@ export interface Routes {
|
|
|
57187
57547
|
acs_credential_id: string;
|
|
57188
57548
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57189
57549
|
acs_user_id?: string | undefined;
|
|
57550
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57551
|
+
user_identity_id?: string | undefined;
|
|
57190
57552
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57191
57553
|
connected_account_id: string;
|
|
57192
57554
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57367,6 +57729,8 @@ export interface Routes {
|
|
|
57367
57729
|
acs_credential_id: string;
|
|
57368
57730
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57369
57731
|
acs_user_id?: string | undefined;
|
|
57732
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57733
|
+
user_identity_id?: string | undefined;
|
|
57370
57734
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57371
57735
|
connected_account_id: string;
|
|
57372
57736
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57495,6 +57859,8 @@ export interface Routes {
|
|
|
57495
57859
|
acs_credential_id: string;
|
|
57496
57860
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57497
57861
|
acs_user_id?: string | undefined;
|
|
57862
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57863
|
+
user_identity_id?: string | undefined;
|
|
57498
57864
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
57499
57865
|
connected_account_id: string;
|
|
57500
57866
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58338,6 +58704,8 @@ export interface Routes {
|
|
|
58338
58704
|
acs_credential_id: string;
|
|
58339
58705
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58340
58706
|
acs_user_id?: string | undefined;
|
|
58707
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58708
|
+
user_identity_id?: string | undefined;
|
|
58341
58709
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58342
58710
|
connected_account_id: string;
|
|
58343
58711
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58466,6 +58834,8 @@ export interface Routes {
|
|
|
58466
58834
|
acs_credential_id: string;
|
|
58467
58835
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58468
58836
|
acs_user_id?: string | undefined;
|
|
58837
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58838
|
+
user_identity_id?: string | undefined;
|
|
58469
58839
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58470
58840
|
connected_account_id: string;
|
|
58471
58841
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58646,6 +59016,8 @@ export interface Routes {
|
|
|
58646
59016
|
acs_credential_id: string;
|
|
58647
59017
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58648
59018
|
acs_user_id?: string | undefined;
|
|
59019
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59020
|
+
user_identity_id?: string | undefined;
|
|
58649
59021
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58650
59022
|
connected_account_id: string;
|
|
58651
59023
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58774,6 +59146,8 @@ export interface Routes {
|
|
|
58774
59146
|
acs_credential_id: string;
|
|
58775
59147
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58776
59148
|
acs_user_id?: string | undefined;
|
|
59149
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59150
|
+
user_identity_id?: string | undefined;
|
|
58777
59151
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
58778
59152
|
connected_account_id: string;
|
|
58779
59153
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59529,6 +59903,10 @@ export interface Routes {
|
|
|
59529
59903
|
climate_preset_key: string;
|
|
59530
59904
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
59531
59905
|
name?: (string | null) | undefined;
|
|
59906
|
+
/**
|
|
59907
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
59908
|
+
*/
|
|
59909
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
59532
59910
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
59533
59911
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
59534
59912
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -59714,6 +60092,8 @@ export interface Routes {
|
|
|
59714
60092
|
acs_credential_id: string;
|
|
59715
60093
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59716
60094
|
acs_user_id?: string | undefined;
|
|
60095
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60096
|
+
user_identity_id?: string | undefined;
|
|
59717
60097
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59718
60098
|
connected_account_id: string;
|
|
59719
60099
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59842,6 +60222,8 @@ export interface Routes {
|
|
|
59842
60222
|
acs_credential_id: string;
|
|
59843
60223
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59844
60224
|
acs_user_id?: string | undefined;
|
|
60225
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60226
|
+
user_identity_id?: string | undefined;
|
|
59845
60227
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59846
60228
|
connected_account_id: string;
|
|
59847
60229
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60022,6 +60404,8 @@ export interface Routes {
|
|
|
60022
60404
|
acs_credential_id: string;
|
|
60023
60405
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60024
60406
|
acs_user_id?: string | undefined;
|
|
60407
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60408
|
+
user_identity_id?: string | undefined;
|
|
60025
60409
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60026
60410
|
connected_account_id: string;
|
|
60027
60411
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60150,6 +60534,8 @@ export interface Routes {
|
|
|
60150
60534
|
acs_credential_id: string;
|
|
60151
60535
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60152
60536
|
acs_user_id?: string | undefined;
|
|
60537
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60538
|
+
user_identity_id?: string | undefined;
|
|
60153
60539
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60154
60540
|
connected_account_id: string;
|
|
60155
60541
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -62374,6 +62760,8 @@ export interface Routes {
|
|
|
62374
62760
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
62375
62761
|
/** Fan mode settings that the thermostat supports. */
|
|
62376
62762
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
62763
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
62764
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
62377
62765
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
62378
62766
|
is_heating?: boolean | undefined;
|
|
62379
62767
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -62399,6 +62787,10 @@ export interface Routes {
|
|
|
62399
62787
|
name?: ((string | null) | undefined) | undefined;
|
|
62400
62788
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62401
62789
|
display_name?: string | undefined;
|
|
62790
|
+
/**
|
|
62791
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
62792
|
+
*/
|
|
62793
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
62402
62794
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
62403
62795
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
62404
62796
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -62430,6 +62822,10 @@ export interface Routes {
|
|
|
62430
62822
|
name?: ((string | null) | undefined) | undefined;
|
|
62431
62823
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62432
62824
|
display_name?: string | undefined;
|
|
62825
|
+
/**
|
|
62826
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
62827
|
+
*/
|
|
62828
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
62433
62829
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
62434
62830
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
62435
62831
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -62460,6 +62856,10 @@ export interface Routes {
|
|
|
62460
62856
|
name?: (string | null) | undefined;
|
|
62461
62857
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62462
62858
|
display_name: string;
|
|
62859
|
+
/**
|
|
62860
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
62861
|
+
*/
|
|
62862
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
62463
62863
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
62464
62864
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
62465
62865
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -63487,6 +63887,8 @@ export interface Routes {
|
|
|
63487
63887
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
63488
63888
|
/** Fan mode settings that the thermostat supports. */
|
|
63489
63889
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
63890
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
63891
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
63490
63892
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
63491
63893
|
is_heating?: boolean | undefined;
|
|
63492
63894
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -63512,6 +63914,10 @@ export interface Routes {
|
|
|
63512
63914
|
name?: ((string | null) | undefined) | undefined;
|
|
63513
63915
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
63514
63916
|
display_name?: string | undefined;
|
|
63917
|
+
/**
|
|
63918
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63919
|
+
*/
|
|
63920
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
63515
63921
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
63516
63922
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
63517
63923
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -63543,6 +63949,10 @@ export interface Routes {
|
|
|
63543
63949
|
name?: ((string | null) | undefined) | undefined;
|
|
63544
63950
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
63545
63951
|
display_name?: string | undefined;
|
|
63952
|
+
/**
|
|
63953
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63954
|
+
*/
|
|
63955
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
63546
63956
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
63547
63957
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
63548
63958
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -63573,6 +63983,10 @@ export interface Routes {
|
|
|
63573
63983
|
name?: (string | null) | undefined;
|
|
63574
63984
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
63575
63985
|
display_name: string;
|
|
63986
|
+
/**
|
|
63987
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63988
|
+
*/
|
|
63989
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
63576
63990
|
/** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
|
|
63577
63991
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
63578
63992
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
@@ -64804,6 +65218,8 @@ export interface Routes {
|
|
|
64804
65218
|
acs_credential_id: string;
|
|
64805
65219
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64806
65220
|
acs_user_id?: string | undefined;
|
|
65221
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65222
|
+
user_identity_id?: string | undefined;
|
|
64807
65223
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64808
65224
|
connected_account_id: string;
|
|
64809
65225
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -64932,6 +65348,8 @@ export interface Routes {
|
|
|
64932
65348
|
acs_credential_id: string;
|
|
64933
65349
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64934
65350
|
acs_user_id?: string | undefined;
|
|
65351
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65352
|
+
user_identity_id?: string | undefined;
|
|
64935
65353
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64936
65354
|
connected_account_id: string;
|
|
64937
65355
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65112,6 +65530,8 @@ export interface Routes {
|
|
|
65112
65530
|
acs_credential_id: string;
|
|
65113
65531
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65114
65532
|
acs_user_id?: string | undefined;
|
|
65533
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65534
|
+
user_identity_id?: string | undefined;
|
|
65115
65535
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65116
65536
|
connected_account_id: string;
|
|
65117
65537
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65240,6 +65660,8 @@ export interface Routes {
|
|
|
65240
65660
|
acs_credential_id: string;
|
|
65241
65661
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65242
65662
|
acs_user_id?: string | undefined;
|
|
65663
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65664
|
+
user_identity_id?: string | undefined;
|
|
65243
65665
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65244
65666
|
connected_account_id: string;
|
|
65245
65667
|
acs_credential_pool_id?: string | undefined;
|