@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
|
@@ -200,6 +200,8 @@ export interface Routes {
|
|
|
200
200
|
acs_credential_id: string
|
|
201
201
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
202
202
|
acs_user_id?: string | undefined
|
|
203
|
+
/** 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. */
|
|
204
|
+
user_identity_id?: string | undefined
|
|
203
205
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
204
206
|
connected_account_id: string
|
|
205
207
|
acs_credential_pool_id?: string | undefined
|
|
@@ -357,6 +359,8 @@ export interface Routes {
|
|
|
357
359
|
acs_credential_id: string
|
|
358
360
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
359
361
|
acs_user_id?: string | undefined
|
|
362
|
+
/** 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. */
|
|
363
|
+
user_identity_id?: string | undefined
|
|
360
364
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
361
365
|
connected_account_id: string
|
|
362
366
|
acs_credential_pool_id?: string | undefined
|
|
@@ -576,6 +580,8 @@ export interface Routes {
|
|
|
576
580
|
acs_credential_id: string
|
|
577
581
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
578
582
|
acs_user_id?: string | undefined
|
|
583
|
+
/** 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. */
|
|
584
|
+
user_identity_id?: string | undefined
|
|
579
585
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
580
586
|
connected_account_id: string
|
|
581
587
|
acs_credential_pool_id?: string | undefined
|
|
@@ -731,6 +737,8 @@ export interface Routes {
|
|
|
731
737
|
acs_credential_id: string
|
|
732
738
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
733
739
|
acs_user_id?: string | undefined
|
|
740
|
+
/** 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. */
|
|
741
|
+
user_identity_id?: string | undefined
|
|
734
742
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
735
743
|
connected_account_id: string
|
|
736
744
|
acs_credential_pool_id?: string | undefined
|
|
@@ -2811,6 +2819,8 @@ export interface Routes {
|
|
|
2811
2819
|
acs_credential_id: string
|
|
2812
2820
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2813
2821
|
acs_user_id?: string | undefined
|
|
2822
|
+
/** 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. */
|
|
2823
|
+
user_identity_id?: string | undefined
|
|
2814
2824
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2815
2825
|
connected_account_id: string
|
|
2816
2826
|
acs_credential_pool_id?: string | undefined
|
|
@@ -2968,6 +2978,8 @@ export interface Routes {
|
|
|
2968
2978
|
acs_credential_id: string
|
|
2969
2979
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2970
2980
|
acs_user_id?: string | undefined
|
|
2981
|
+
/** 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. */
|
|
2982
|
+
user_identity_id?: string | undefined
|
|
2971
2983
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
2972
2984
|
connected_account_id: string
|
|
2973
2985
|
acs_credential_pool_id?: string | undefined
|
|
@@ -3187,6 +3199,8 @@ export interface Routes {
|
|
|
3187
3199
|
acs_credential_id: string
|
|
3188
3200
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3189
3201
|
acs_user_id?: string | undefined
|
|
3202
|
+
/** 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. */
|
|
3203
|
+
user_identity_id?: string | undefined
|
|
3190
3204
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3191
3205
|
connected_account_id: string
|
|
3192
3206
|
acs_credential_pool_id?: string | undefined
|
|
@@ -3342,6 +3356,8 @@ export interface Routes {
|
|
|
3342
3356
|
acs_credential_id: string
|
|
3343
3357
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3344
3358
|
acs_user_id?: string | undefined
|
|
3359
|
+
/** 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. */
|
|
3360
|
+
user_identity_id?: string | undefined
|
|
3345
3361
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
3346
3362
|
connected_account_id: string
|
|
3347
3363
|
acs_credential_pool_id?: string | undefined
|
|
@@ -7191,6 +7207,8 @@ export interface Routes {
|
|
|
7191
7207
|
acs_credential_id: string
|
|
7192
7208
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7193
7209
|
acs_user_id?: string | undefined
|
|
7210
|
+
/** 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. */
|
|
7211
|
+
user_identity_id?: string | undefined
|
|
7194
7212
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7195
7213
|
connected_account_id: string
|
|
7196
7214
|
acs_credential_pool_id?: string | undefined
|
|
@@ -7348,6 +7366,8 @@ export interface Routes {
|
|
|
7348
7366
|
acs_credential_id: string
|
|
7349
7367
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7350
7368
|
acs_user_id?: string | undefined
|
|
7369
|
+
/** 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. */
|
|
7370
|
+
user_identity_id?: string | undefined
|
|
7351
7371
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7352
7372
|
connected_account_id: string
|
|
7353
7373
|
acs_credential_pool_id?: string | undefined
|
|
@@ -7567,6 +7587,8 @@ export interface Routes {
|
|
|
7567
7587
|
acs_credential_id: string
|
|
7568
7588
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7569
7589
|
acs_user_id?: string | undefined
|
|
7590
|
+
/** 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. */
|
|
7591
|
+
user_identity_id?: string | undefined
|
|
7570
7592
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7571
7593
|
connected_account_id: string
|
|
7572
7594
|
acs_credential_pool_id?: string | undefined
|
|
@@ -7722,6 +7744,8 @@ export interface Routes {
|
|
|
7722
7744
|
acs_credential_id: string
|
|
7723
7745
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7724
7746
|
acs_user_id?: string | undefined
|
|
7747
|
+
/** 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. */
|
|
7748
|
+
user_identity_id?: string | undefined
|
|
7725
7749
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
7726
7750
|
connected_account_id: string
|
|
7727
7751
|
acs_credential_pool_id?: string | undefined
|
|
@@ -9810,6 +9834,8 @@ export interface Routes {
|
|
|
9810
9834
|
acs_credential_id: string
|
|
9811
9835
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9812
9836
|
acs_user_id?: string | undefined
|
|
9837
|
+
/** 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. */
|
|
9838
|
+
user_identity_id?: string | undefined
|
|
9813
9839
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9814
9840
|
connected_account_id: string
|
|
9815
9841
|
acs_credential_pool_id?: string | undefined
|
|
@@ -9967,6 +9993,8 @@ export interface Routes {
|
|
|
9967
9993
|
acs_credential_id: string
|
|
9968
9994
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9969
9995
|
acs_user_id?: string | undefined
|
|
9996
|
+
/** 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. */
|
|
9997
|
+
user_identity_id?: string | undefined
|
|
9970
9998
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
9971
9999
|
connected_account_id: string
|
|
9972
10000
|
acs_credential_pool_id?: string | undefined
|
|
@@ -10186,6 +10214,8 @@ export interface Routes {
|
|
|
10186
10214
|
acs_credential_id: string
|
|
10187
10215
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10188
10216
|
acs_user_id?: string | undefined
|
|
10217
|
+
/** 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. */
|
|
10218
|
+
user_identity_id?: string | undefined
|
|
10189
10219
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10190
10220
|
connected_account_id: string
|
|
10191
10221
|
acs_credential_pool_id?: string | undefined
|
|
@@ -10341,6 +10371,8 @@ export interface Routes {
|
|
|
10341
10371
|
acs_credential_id: string
|
|
10342
10372
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10343
10373
|
acs_user_id?: string | undefined
|
|
10374
|
+
/** 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. */
|
|
10375
|
+
user_identity_id?: string | undefined
|
|
10344
10376
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
10345
10377
|
connected_account_id: string
|
|
10346
10378
|
acs_credential_pool_id?: string | undefined
|
|
@@ -11508,6 +11540,8 @@ export interface Routes {
|
|
|
11508
11540
|
acs_credential_id: string
|
|
11509
11541
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11510
11542
|
acs_user_id?: string | undefined
|
|
11543
|
+
/** 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. */
|
|
11544
|
+
user_identity_id?: string | undefined
|
|
11511
11545
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11512
11546
|
connected_account_id: string
|
|
11513
11547
|
acs_credential_pool_id?: string | undefined
|
|
@@ -11665,6 +11699,8 @@ export interface Routes {
|
|
|
11665
11699
|
acs_credential_id: string
|
|
11666
11700
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11667
11701
|
acs_user_id?: string | undefined
|
|
11702
|
+
/** 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. */
|
|
11703
|
+
user_identity_id?: string | undefined
|
|
11668
11704
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11669
11705
|
connected_account_id: string
|
|
11670
11706
|
acs_credential_pool_id?: string | undefined
|
|
@@ -11884,6 +11920,8 @@ export interface Routes {
|
|
|
11884
11920
|
acs_credential_id: string
|
|
11885
11921
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11886
11922
|
acs_user_id?: string | undefined
|
|
11923
|
+
/** 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. */
|
|
11924
|
+
user_identity_id?: string | undefined
|
|
11887
11925
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
11888
11926
|
connected_account_id: string
|
|
11889
11927
|
acs_credential_pool_id?: string | undefined
|
|
@@ -12039,6 +12077,8 @@ export interface Routes {
|
|
|
12039
12077
|
acs_credential_id: string
|
|
12040
12078
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12041
12079
|
acs_user_id?: string | undefined
|
|
12080
|
+
/** 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. */
|
|
12081
|
+
user_identity_id?: string | undefined
|
|
12042
12082
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
12043
12083
|
connected_account_id: string
|
|
12044
12084
|
acs_credential_pool_id?: string | undefined
|
|
@@ -13586,6 +13626,8 @@ export interface Routes {
|
|
|
13586
13626
|
acs_credential_id: string
|
|
13587
13627
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13588
13628
|
acs_user_id?: string | undefined
|
|
13629
|
+
/** 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. */
|
|
13630
|
+
user_identity_id?: string | undefined
|
|
13589
13631
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13590
13632
|
connected_account_id: string
|
|
13591
13633
|
acs_credential_pool_id?: string | undefined
|
|
@@ -13813,6 +13855,8 @@ export interface Routes {
|
|
|
13813
13855
|
acs_credential_id: string
|
|
13814
13856
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13815
13857
|
acs_user_id?: string | undefined
|
|
13858
|
+
/** 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. */
|
|
13859
|
+
user_identity_id?: string | undefined
|
|
13816
13860
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13817
13861
|
connected_account_id: string
|
|
13818
13862
|
acs_credential_pool_id?: string | undefined
|
|
@@ -13994,6 +14038,8 @@ export interface Routes {
|
|
|
13994
14038
|
acs_credential_id: string
|
|
13995
14039
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13996
14040
|
acs_user_id?: string | undefined
|
|
14041
|
+
/** 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. */
|
|
14042
|
+
user_identity_id?: string | undefined
|
|
13997
14043
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
13998
14044
|
connected_account_id: string
|
|
13999
14045
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14179,6 +14225,8 @@ export interface Routes {
|
|
|
14179
14225
|
acs_credential_id: string
|
|
14180
14226
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14181
14227
|
acs_user_id?: string | undefined
|
|
14228
|
+
/** 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. */
|
|
14229
|
+
user_identity_id?: string | undefined
|
|
14182
14230
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14183
14231
|
connected_account_id: string
|
|
14184
14232
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14371,6 +14419,8 @@ export interface Routes {
|
|
|
14371
14419
|
acs_credential_id: string
|
|
14372
14420
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14373
14421
|
acs_user_id?: string | undefined
|
|
14422
|
+
/** 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. */
|
|
14423
|
+
user_identity_id?: string | undefined
|
|
14374
14424
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14375
14425
|
connected_account_id: string
|
|
14376
14426
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14680,6 +14730,8 @@ export interface Routes {
|
|
|
14680
14730
|
acs_credential_id: string
|
|
14681
14731
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14682
14732
|
acs_user_id?: string | undefined
|
|
14733
|
+
/** 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. */
|
|
14734
|
+
user_identity_id?: string | undefined
|
|
14683
14735
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14684
14736
|
connected_account_id: string
|
|
14685
14737
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14849,6 +14901,8 @@ export interface Routes {
|
|
|
14849
14901
|
acs_credential_id: string
|
|
14850
14902
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14851
14903
|
acs_user_id?: string | undefined
|
|
14904
|
+
/** 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. */
|
|
14905
|
+
user_identity_id?: string | undefined
|
|
14852
14906
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
14853
14907
|
connected_account_id: string
|
|
14854
14908
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15032,6 +15086,8 @@ export interface Routes {
|
|
|
15032
15086
|
acs_credential_id: string
|
|
15033
15087
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15034
15088
|
acs_user_id?: string | undefined
|
|
15089
|
+
/** 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. */
|
|
15090
|
+
user_identity_id?: string | undefined
|
|
15035
15091
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15036
15092
|
connected_account_id: string
|
|
15037
15093
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15209,6 +15265,8 @@ export interface Routes {
|
|
|
15209
15265
|
acs_credential_id: string
|
|
15210
15266
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15211
15267
|
acs_user_id?: string | undefined
|
|
15268
|
+
/** 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. */
|
|
15269
|
+
user_identity_id?: string | undefined
|
|
15212
15270
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15213
15271
|
connected_account_id: string
|
|
15214
15272
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15528,6 +15586,8 @@ export interface Routes {
|
|
|
15528
15586
|
acs_credential_id: string
|
|
15529
15587
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15530
15588
|
acs_user_id?: string | undefined
|
|
15589
|
+
/** 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. */
|
|
15590
|
+
user_identity_id?: string | undefined
|
|
15531
15591
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15532
15592
|
connected_account_id: string
|
|
15533
15593
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15685,6 +15745,8 @@ export interface Routes {
|
|
|
15685
15745
|
acs_credential_id: string
|
|
15686
15746
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15687
15747
|
acs_user_id?: string | undefined
|
|
15748
|
+
/** 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. */
|
|
15749
|
+
user_identity_id?: string | undefined
|
|
15688
15750
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15689
15751
|
connected_account_id: string
|
|
15690
15752
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15904,6 +15966,8 @@ export interface Routes {
|
|
|
15904
15966
|
acs_credential_id: string
|
|
15905
15967
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15906
15968
|
acs_user_id?: string | undefined
|
|
15969
|
+
/** 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. */
|
|
15970
|
+
user_identity_id?: string | undefined
|
|
15907
15971
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
15908
15972
|
connected_account_id: string
|
|
15909
15973
|
acs_credential_pool_id?: string | undefined
|
|
@@ -16059,6 +16123,8 @@ export interface Routes {
|
|
|
16059
16123
|
acs_credential_id: string
|
|
16060
16124
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16061
16125
|
acs_user_id?: string | undefined
|
|
16126
|
+
/** 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. */
|
|
16127
|
+
user_identity_id?: string | undefined
|
|
16062
16128
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
16063
16129
|
connected_account_id: string
|
|
16064
16130
|
acs_credential_pool_id?: string | undefined
|
|
@@ -17060,6 +17126,8 @@ export interface Routes {
|
|
|
17060
17126
|
acs_credential_id: string
|
|
17061
17127
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17062
17128
|
acs_user_id?: string | undefined
|
|
17129
|
+
/** 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. */
|
|
17130
|
+
user_identity_id?: string | undefined
|
|
17063
17131
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17064
17132
|
connected_account_id: string
|
|
17065
17133
|
acs_credential_pool_id?: string | undefined
|
|
@@ -17217,6 +17285,8 @@ export interface Routes {
|
|
|
17217
17285
|
acs_credential_id: string
|
|
17218
17286
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17219
17287
|
acs_user_id?: string | undefined
|
|
17288
|
+
/** 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. */
|
|
17289
|
+
user_identity_id?: string | undefined
|
|
17220
17290
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17221
17291
|
connected_account_id: string
|
|
17222
17292
|
acs_credential_pool_id?: string | undefined
|
|
@@ -17436,6 +17506,8 @@ export interface Routes {
|
|
|
17436
17506
|
acs_credential_id: string
|
|
17437
17507
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17438
17508
|
acs_user_id?: string | undefined
|
|
17509
|
+
/** 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. */
|
|
17510
|
+
user_identity_id?: string | undefined
|
|
17439
17511
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17440
17512
|
connected_account_id: string
|
|
17441
17513
|
acs_credential_pool_id?: string | undefined
|
|
@@ -17591,6 +17663,8 @@ export interface Routes {
|
|
|
17591
17663
|
acs_credential_id: string
|
|
17592
17664
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17593
17665
|
acs_user_id?: string | undefined
|
|
17666
|
+
/** 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. */
|
|
17667
|
+
user_identity_id?: string | undefined
|
|
17594
17668
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
17595
17669
|
connected_account_id: string
|
|
17596
17670
|
acs_credential_pool_id?: string | undefined
|
|
@@ -18728,6 +18802,8 @@ export interface Routes {
|
|
|
18728
18802
|
acs_credential_id: string
|
|
18729
18803
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18730
18804
|
acs_user_id?: string | undefined
|
|
18805
|
+
/** 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. */
|
|
18806
|
+
user_identity_id?: string | undefined
|
|
18731
18807
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
18732
18808
|
connected_account_id: string
|
|
18733
18809
|
acs_credential_pool_id?: string | undefined
|
|
@@ -21179,6 +21255,8 @@ export interface Routes {
|
|
|
21179
21255
|
acs_credential_id: string
|
|
21180
21256
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21181
21257
|
acs_user_id?: string | undefined
|
|
21258
|
+
/** 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. */
|
|
21259
|
+
user_identity_id?: string | undefined
|
|
21182
21260
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21183
21261
|
connected_account_id: string
|
|
21184
21262
|
acs_credential_pool_id?: string | undefined
|
|
@@ -21336,6 +21414,8 @@ export interface Routes {
|
|
|
21336
21414
|
acs_credential_id: string
|
|
21337
21415
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21338
21416
|
acs_user_id?: string | undefined
|
|
21417
|
+
/** 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. */
|
|
21418
|
+
user_identity_id?: string | undefined
|
|
21339
21419
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21340
21420
|
connected_account_id: string
|
|
21341
21421
|
acs_credential_pool_id?: string | undefined
|
|
@@ -21555,6 +21635,8 @@ export interface Routes {
|
|
|
21555
21635
|
acs_credential_id: string
|
|
21556
21636
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21557
21637
|
acs_user_id?: string | undefined
|
|
21638
|
+
/** 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. */
|
|
21639
|
+
user_identity_id?: string | undefined
|
|
21558
21640
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21559
21641
|
connected_account_id: string
|
|
21560
21642
|
acs_credential_pool_id?: string | undefined
|
|
@@ -21710,6 +21792,8 @@ export interface Routes {
|
|
|
21710
21792
|
acs_credential_id: string
|
|
21711
21793
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21712
21794
|
acs_user_id?: string | undefined
|
|
21795
|
+
/** 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. */
|
|
21796
|
+
user_identity_id?: string | undefined
|
|
21713
21797
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
21714
21798
|
connected_account_id: string
|
|
21715
21799
|
acs_credential_pool_id?: string | undefined
|
|
@@ -22605,6 +22689,8 @@ export interface Routes {
|
|
|
22605
22689
|
acs_credential_id: string
|
|
22606
22690
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22607
22691
|
acs_user_id?: string | undefined
|
|
22692
|
+
/** 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. */
|
|
22693
|
+
user_identity_id?: string | undefined
|
|
22608
22694
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22609
22695
|
connected_account_id: string
|
|
22610
22696
|
acs_credential_pool_id?: string | undefined
|
|
@@ -22762,6 +22848,8 @@ export interface Routes {
|
|
|
22762
22848
|
acs_credential_id: string
|
|
22763
22849
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22764
22850
|
acs_user_id?: string | undefined
|
|
22851
|
+
/** 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. */
|
|
22852
|
+
user_identity_id?: string | undefined
|
|
22765
22853
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22766
22854
|
connected_account_id: string
|
|
22767
22855
|
acs_credential_pool_id?: string | undefined
|
|
@@ -22981,6 +23069,8 @@ export interface Routes {
|
|
|
22981
23069
|
acs_credential_id: string
|
|
22982
23070
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22983
23071
|
acs_user_id?: string | undefined
|
|
23072
|
+
/** 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. */
|
|
23073
|
+
user_identity_id?: string | undefined
|
|
22984
23074
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
22985
23075
|
connected_account_id: string
|
|
22986
23076
|
acs_credential_pool_id?: string | undefined
|
|
@@ -23136,6 +23226,8 @@ export interface Routes {
|
|
|
23136
23226
|
acs_credential_id: string
|
|
23137
23227
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23138
23228
|
acs_user_id?: string | undefined
|
|
23229
|
+
/** 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. */
|
|
23230
|
+
user_identity_id?: string | undefined
|
|
23139
23231
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
23140
23232
|
connected_account_id: string
|
|
23141
23233
|
acs_credential_pool_id?: string | undefined
|
|
@@ -26406,6 +26498,12 @@ export interface Routes {
|
|
|
26406
26498
|
available_fan_mode_settings?:
|
|
26407
26499
|
| Array<'auto' | 'on' | 'circulate'>
|
|
26408
26500
|
| undefined
|
|
26501
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
26502
|
+
available_climate_preset_modes?:
|
|
26503
|
+
| Array<
|
|
26504
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
26505
|
+
>
|
|
26506
|
+
| undefined
|
|
26409
26507
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
26410
26508
|
is_heating?: boolean | undefined
|
|
26411
26509
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -26432,6 +26530,22 @@ export interface Routes {
|
|
|
26432
26530
|
name?: ((string | null) | undefined) | undefined
|
|
26433
26531
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
26434
26532
|
display_name?: string | undefined
|
|
26533
|
+
/**
|
|
26534
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
26535
|
+
*/
|
|
26536
|
+
climate_preset_mode?:
|
|
26537
|
+
| (
|
|
26538
|
+
| (
|
|
26539
|
+
| 'home'
|
|
26540
|
+
| 'away'
|
|
26541
|
+
| 'wake'
|
|
26542
|
+
| 'sleep'
|
|
26543
|
+
| 'occupied'
|
|
26544
|
+
| 'unoccupied'
|
|
26545
|
+
)
|
|
26546
|
+
| undefined
|
|
26547
|
+
)
|
|
26548
|
+
| undefined
|
|
26435
26549
|
/** 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`. */
|
|
26436
26550
|
fan_mode_setting?:
|
|
26437
26551
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -26473,6 +26587,22 @@ export interface Routes {
|
|
|
26473
26587
|
name?: ((string | null) | undefined) | undefined
|
|
26474
26588
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
26475
26589
|
display_name?: string | undefined
|
|
26590
|
+
/**
|
|
26591
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
26592
|
+
*/
|
|
26593
|
+
climate_preset_mode?:
|
|
26594
|
+
| (
|
|
26595
|
+
| (
|
|
26596
|
+
| 'home'
|
|
26597
|
+
| 'away'
|
|
26598
|
+
| 'wake'
|
|
26599
|
+
| 'sleep'
|
|
26600
|
+
| 'occupied'
|
|
26601
|
+
| 'unoccupied'
|
|
26602
|
+
)
|
|
26603
|
+
| undefined
|
|
26604
|
+
)
|
|
26605
|
+
| undefined
|
|
26476
26606
|
/** 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`. */
|
|
26477
26607
|
fan_mode_setting?:
|
|
26478
26608
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -26513,6 +26643,19 @@ export interface Routes {
|
|
|
26513
26643
|
name?: (string | null) | undefined
|
|
26514
26644
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
26515
26645
|
display_name: string
|
|
26646
|
+
/**
|
|
26647
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
26648
|
+
*/
|
|
26649
|
+
climate_preset_mode?:
|
|
26650
|
+
| (
|
|
26651
|
+
| 'home'
|
|
26652
|
+
| 'away'
|
|
26653
|
+
| 'wake'
|
|
26654
|
+
| 'sleep'
|
|
26655
|
+
| 'occupied'
|
|
26656
|
+
| 'unoccupied'
|
|
26657
|
+
)
|
|
26658
|
+
| undefined
|
|
26516
26659
|
/** 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`. */
|
|
26517
26660
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
26518
26661
|
/** 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`. */
|
|
@@ -27957,6 +28100,12 @@ export interface Routes {
|
|
|
27957
28100
|
available_fan_mode_settings?:
|
|
27958
28101
|
| Array<'auto' | 'on' | 'circulate'>
|
|
27959
28102
|
| undefined
|
|
28103
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
28104
|
+
available_climate_preset_modes?:
|
|
28105
|
+
| Array<
|
|
28106
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
28107
|
+
>
|
|
28108
|
+
| undefined
|
|
27960
28109
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
27961
28110
|
is_heating?: boolean | undefined
|
|
27962
28111
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -27983,6 +28132,22 @@ export interface Routes {
|
|
|
27983
28132
|
name?: ((string | null) | undefined) | undefined
|
|
27984
28133
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
27985
28134
|
display_name?: string | undefined
|
|
28135
|
+
/**
|
|
28136
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
28137
|
+
*/
|
|
28138
|
+
climate_preset_mode?:
|
|
28139
|
+
| (
|
|
28140
|
+
| (
|
|
28141
|
+
| 'home'
|
|
28142
|
+
| 'away'
|
|
28143
|
+
| 'wake'
|
|
28144
|
+
| 'sleep'
|
|
28145
|
+
| 'occupied'
|
|
28146
|
+
| 'unoccupied'
|
|
28147
|
+
)
|
|
28148
|
+
| undefined
|
|
28149
|
+
)
|
|
28150
|
+
| undefined
|
|
27986
28151
|
/** 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`. */
|
|
27987
28152
|
fan_mode_setting?:
|
|
27988
28153
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -28024,6 +28189,22 @@ export interface Routes {
|
|
|
28024
28189
|
name?: ((string | null) | undefined) | undefined
|
|
28025
28190
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
28026
28191
|
display_name?: string | undefined
|
|
28192
|
+
/**
|
|
28193
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
28194
|
+
*/
|
|
28195
|
+
climate_preset_mode?:
|
|
28196
|
+
| (
|
|
28197
|
+
| (
|
|
28198
|
+
| 'home'
|
|
28199
|
+
| 'away'
|
|
28200
|
+
| 'wake'
|
|
28201
|
+
| 'sleep'
|
|
28202
|
+
| 'occupied'
|
|
28203
|
+
| 'unoccupied'
|
|
28204
|
+
)
|
|
28205
|
+
| undefined
|
|
28206
|
+
)
|
|
28207
|
+
| undefined
|
|
28027
28208
|
/** 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`. */
|
|
28028
28209
|
fan_mode_setting?:
|
|
28029
28210
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -28064,6 +28245,19 @@ export interface Routes {
|
|
|
28064
28245
|
name?: (string | null) | undefined
|
|
28065
28246
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
28066
28247
|
display_name: string
|
|
28248
|
+
/**
|
|
28249
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
28250
|
+
*/
|
|
28251
|
+
climate_preset_mode?:
|
|
28252
|
+
| (
|
|
28253
|
+
| 'home'
|
|
28254
|
+
| 'away'
|
|
28255
|
+
| 'wake'
|
|
28256
|
+
| 'sleep'
|
|
28257
|
+
| 'occupied'
|
|
28258
|
+
| 'unoccupied'
|
|
28259
|
+
)
|
|
28260
|
+
| undefined
|
|
28067
28261
|
/** 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`. */
|
|
28068
28262
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
28069
28263
|
/** 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`. */
|
|
@@ -33911,6 +34105,12 @@ export interface Routes {
|
|
|
33911
34105
|
available_fan_mode_settings?:
|
|
33912
34106
|
| Array<'auto' | 'on' | 'circulate'>
|
|
33913
34107
|
| undefined
|
|
34108
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
34109
|
+
available_climate_preset_modes?:
|
|
34110
|
+
| Array<
|
|
34111
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
34112
|
+
>
|
|
34113
|
+
| undefined
|
|
33914
34114
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
33915
34115
|
is_heating?: boolean | undefined
|
|
33916
34116
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -33937,6 +34137,22 @@ export interface Routes {
|
|
|
33937
34137
|
name?: ((string | null) | undefined) | undefined
|
|
33938
34138
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
33939
34139
|
display_name?: string | undefined
|
|
34140
|
+
/**
|
|
34141
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
34142
|
+
*/
|
|
34143
|
+
climate_preset_mode?:
|
|
34144
|
+
| (
|
|
34145
|
+
| (
|
|
34146
|
+
| 'home'
|
|
34147
|
+
| 'away'
|
|
34148
|
+
| 'wake'
|
|
34149
|
+
| 'sleep'
|
|
34150
|
+
| 'occupied'
|
|
34151
|
+
| 'unoccupied'
|
|
34152
|
+
)
|
|
34153
|
+
| undefined
|
|
34154
|
+
)
|
|
34155
|
+
| undefined
|
|
33940
34156
|
/** 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`. */
|
|
33941
34157
|
fan_mode_setting?:
|
|
33942
34158
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -33978,6 +34194,22 @@ export interface Routes {
|
|
|
33978
34194
|
name?: ((string | null) | undefined) | undefined
|
|
33979
34195
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
33980
34196
|
display_name?: string | undefined
|
|
34197
|
+
/**
|
|
34198
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
34199
|
+
*/
|
|
34200
|
+
climate_preset_mode?:
|
|
34201
|
+
| (
|
|
34202
|
+
| (
|
|
34203
|
+
| 'home'
|
|
34204
|
+
| 'away'
|
|
34205
|
+
| 'wake'
|
|
34206
|
+
| 'sleep'
|
|
34207
|
+
| 'occupied'
|
|
34208
|
+
| 'unoccupied'
|
|
34209
|
+
)
|
|
34210
|
+
| undefined
|
|
34211
|
+
)
|
|
34212
|
+
| undefined
|
|
33981
34213
|
/** 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`. */
|
|
33982
34214
|
fan_mode_setting?:
|
|
33983
34215
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -34018,6 +34250,19 @@ export interface Routes {
|
|
|
34018
34250
|
name?: (string | null) | undefined
|
|
34019
34251
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
34020
34252
|
display_name: string
|
|
34253
|
+
/**
|
|
34254
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
34255
|
+
*/
|
|
34256
|
+
climate_preset_mode?:
|
|
34257
|
+
| (
|
|
34258
|
+
| 'home'
|
|
34259
|
+
| 'away'
|
|
34260
|
+
| 'wake'
|
|
34261
|
+
| 'sleep'
|
|
34262
|
+
| 'occupied'
|
|
34263
|
+
| 'unoccupied'
|
|
34264
|
+
)
|
|
34265
|
+
| undefined
|
|
34021
34266
|
/** 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`. */
|
|
34022
34267
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
34023
34268
|
/** 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`. */
|
|
@@ -35260,6 +35505,12 @@ export interface Routes {
|
|
|
35260
35505
|
available_fan_mode_settings?:
|
|
35261
35506
|
| Array<'auto' | 'on' | 'circulate'>
|
|
35262
35507
|
| undefined
|
|
35508
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
35509
|
+
available_climate_preset_modes?:
|
|
35510
|
+
| Array<
|
|
35511
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
35512
|
+
>
|
|
35513
|
+
| undefined
|
|
35263
35514
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
35264
35515
|
is_heating?: boolean | undefined
|
|
35265
35516
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -35286,6 +35537,22 @@ export interface Routes {
|
|
|
35286
35537
|
name?: ((string | null) | undefined) | undefined
|
|
35287
35538
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
35288
35539
|
display_name?: string | undefined
|
|
35540
|
+
/**
|
|
35541
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
35542
|
+
*/
|
|
35543
|
+
climate_preset_mode?:
|
|
35544
|
+
| (
|
|
35545
|
+
| (
|
|
35546
|
+
| 'home'
|
|
35547
|
+
| 'away'
|
|
35548
|
+
| 'wake'
|
|
35549
|
+
| 'sleep'
|
|
35550
|
+
| 'occupied'
|
|
35551
|
+
| 'unoccupied'
|
|
35552
|
+
)
|
|
35553
|
+
| undefined
|
|
35554
|
+
)
|
|
35555
|
+
| undefined
|
|
35289
35556
|
/** 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`. */
|
|
35290
35557
|
fan_mode_setting?:
|
|
35291
35558
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -35327,6 +35594,22 @@ export interface Routes {
|
|
|
35327
35594
|
name?: ((string | null) | undefined) | undefined
|
|
35328
35595
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
35329
35596
|
display_name?: string | undefined
|
|
35597
|
+
/**
|
|
35598
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
35599
|
+
*/
|
|
35600
|
+
climate_preset_mode?:
|
|
35601
|
+
| (
|
|
35602
|
+
| (
|
|
35603
|
+
| 'home'
|
|
35604
|
+
| 'away'
|
|
35605
|
+
| 'wake'
|
|
35606
|
+
| 'sleep'
|
|
35607
|
+
| 'occupied'
|
|
35608
|
+
| 'unoccupied'
|
|
35609
|
+
)
|
|
35610
|
+
| undefined
|
|
35611
|
+
)
|
|
35612
|
+
| undefined
|
|
35330
35613
|
/** 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`. */
|
|
35331
35614
|
fan_mode_setting?:
|
|
35332
35615
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -35367,6 +35650,19 @@ export interface Routes {
|
|
|
35367
35650
|
name?: (string | null) | undefined
|
|
35368
35651
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
35369
35652
|
display_name: string
|
|
35653
|
+
/**
|
|
35654
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
35655
|
+
*/
|
|
35656
|
+
climate_preset_mode?:
|
|
35657
|
+
| (
|
|
35658
|
+
| 'home'
|
|
35659
|
+
| 'away'
|
|
35660
|
+
| 'wake'
|
|
35661
|
+
| 'sleep'
|
|
35662
|
+
| 'occupied'
|
|
35663
|
+
| 'unoccupied'
|
|
35664
|
+
)
|
|
35665
|
+
| undefined
|
|
35370
35666
|
/** 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`. */
|
|
35371
35667
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
35372
35668
|
/** 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`. */
|
|
@@ -36776,6 +37072,12 @@ export interface Routes {
|
|
|
36776
37072
|
available_fan_mode_settings?:
|
|
36777
37073
|
| Array<'auto' | 'on' | 'circulate'>
|
|
36778
37074
|
| undefined
|
|
37075
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
37076
|
+
available_climate_preset_modes?:
|
|
37077
|
+
| Array<
|
|
37078
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
37079
|
+
>
|
|
37080
|
+
| undefined
|
|
36779
37081
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
36780
37082
|
is_heating?: boolean | undefined
|
|
36781
37083
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -36802,6 +37104,22 @@ export interface Routes {
|
|
|
36802
37104
|
name?: ((string | null) | undefined) | undefined
|
|
36803
37105
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
36804
37106
|
display_name?: string | undefined
|
|
37107
|
+
/**
|
|
37108
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
37109
|
+
*/
|
|
37110
|
+
climate_preset_mode?:
|
|
37111
|
+
| (
|
|
37112
|
+
| (
|
|
37113
|
+
| 'home'
|
|
37114
|
+
| 'away'
|
|
37115
|
+
| 'wake'
|
|
37116
|
+
| 'sleep'
|
|
37117
|
+
| 'occupied'
|
|
37118
|
+
| 'unoccupied'
|
|
37119
|
+
)
|
|
37120
|
+
| undefined
|
|
37121
|
+
)
|
|
37122
|
+
| undefined
|
|
36805
37123
|
/** 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`. */
|
|
36806
37124
|
fan_mode_setting?:
|
|
36807
37125
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -36843,6 +37161,22 @@ export interface Routes {
|
|
|
36843
37161
|
name?: ((string | null) | undefined) | undefined
|
|
36844
37162
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
36845
37163
|
display_name?: string | undefined
|
|
37164
|
+
/**
|
|
37165
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
37166
|
+
*/
|
|
37167
|
+
climate_preset_mode?:
|
|
37168
|
+
| (
|
|
37169
|
+
| (
|
|
37170
|
+
| 'home'
|
|
37171
|
+
| 'away'
|
|
37172
|
+
| 'wake'
|
|
37173
|
+
| 'sleep'
|
|
37174
|
+
| 'occupied'
|
|
37175
|
+
| 'unoccupied'
|
|
37176
|
+
)
|
|
37177
|
+
| undefined
|
|
37178
|
+
)
|
|
37179
|
+
| undefined
|
|
36846
37180
|
/** 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`. */
|
|
36847
37181
|
fan_mode_setting?:
|
|
36848
37182
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -36883,6 +37217,19 @@ export interface Routes {
|
|
|
36883
37217
|
name?: (string | null) | undefined
|
|
36884
37218
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
36885
37219
|
display_name: string
|
|
37220
|
+
/**
|
|
37221
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
37222
|
+
*/
|
|
37223
|
+
climate_preset_mode?:
|
|
37224
|
+
| (
|
|
37225
|
+
| 'home'
|
|
37226
|
+
| 'away'
|
|
37227
|
+
| 'wake'
|
|
37228
|
+
| 'sleep'
|
|
37229
|
+
| 'occupied'
|
|
37230
|
+
| 'unoccupied'
|
|
37231
|
+
)
|
|
37232
|
+
| undefined
|
|
36886
37233
|
/** 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`. */
|
|
36887
37234
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
36888
37235
|
/** 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`. */
|
|
@@ -38124,6 +38471,12 @@ export interface Routes {
|
|
|
38124
38471
|
available_fan_mode_settings?:
|
|
38125
38472
|
| Array<'auto' | 'on' | 'circulate'>
|
|
38126
38473
|
| undefined
|
|
38474
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
38475
|
+
available_climate_preset_modes?:
|
|
38476
|
+
| Array<
|
|
38477
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
38478
|
+
>
|
|
38479
|
+
| undefined
|
|
38127
38480
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
38128
38481
|
is_heating?: boolean | undefined
|
|
38129
38482
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -38150,6 +38503,22 @@ export interface Routes {
|
|
|
38150
38503
|
name?: ((string | null) | undefined) | undefined
|
|
38151
38504
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38152
38505
|
display_name?: string | undefined
|
|
38506
|
+
/**
|
|
38507
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
38508
|
+
*/
|
|
38509
|
+
climate_preset_mode?:
|
|
38510
|
+
| (
|
|
38511
|
+
| (
|
|
38512
|
+
| 'home'
|
|
38513
|
+
| 'away'
|
|
38514
|
+
| 'wake'
|
|
38515
|
+
| 'sleep'
|
|
38516
|
+
| 'occupied'
|
|
38517
|
+
| 'unoccupied'
|
|
38518
|
+
)
|
|
38519
|
+
| undefined
|
|
38520
|
+
)
|
|
38521
|
+
| undefined
|
|
38153
38522
|
/** 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`. */
|
|
38154
38523
|
fan_mode_setting?:
|
|
38155
38524
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -38191,6 +38560,22 @@ export interface Routes {
|
|
|
38191
38560
|
name?: ((string | null) | undefined) | undefined
|
|
38192
38561
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38193
38562
|
display_name?: string | undefined
|
|
38563
|
+
/**
|
|
38564
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
38565
|
+
*/
|
|
38566
|
+
climate_preset_mode?:
|
|
38567
|
+
| (
|
|
38568
|
+
| (
|
|
38569
|
+
| 'home'
|
|
38570
|
+
| 'away'
|
|
38571
|
+
| 'wake'
|
|
38572
|
+
| 'sleep'
|
|
38573
|
+
| 'occupied'
|
|
38574
|
+
| 'unoccupied'
|
|
38575
|
+
)
|
|
38576
|
+
| undefined
|
|
38577
|
+
)
|
|
38578
|
+
| undefined
|
|
38194
38579
|
/** 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`. */
|
|
38195
38580
|
fan_mode_setting?:
|
|
38196
38581
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -38231,6 +38616,19 @@ export interface Routes {
|
|
|
38231
38616
|
name?: (string | null) | undefined
|
|
38232
38617
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38233
38618
|
display_name: string
|
|
38619
|
+
/**
|
|
38620
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
38621
|
+
*/
|
|
38622
|
+
climate_preset_mode?:
|
|
38623
|
+
| (
|
|
38624
|
+
| 'home'
|
|
38625
|
+
| 'away'
|
|
38626
|
+
| 'wake'
|
|
38627
|
+
| 'sleep'
|
|
38628
|
+
| 'occupied'
|
|
38629
|
+
| 'unoccupied'
|
|
38630
|
+
)
|
|
38631
|
+
| undefined
|
|
38234
38632
|
/** 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`. */
|
|
38235
38633
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
38236
38634
|
/** 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`. */
|
|
@@ -38894,6 +39292,8 @@ export interface Routes {
|
|
|
38894
39292
|
acs_credential_id: string
|
|
38895
39293
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
38896
39294
|
acs_user_id?: string | undefined
|
|
39295
|
+
/** 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. */
|
|
39296
|
+
user_identity_id?: string | undefined
|
|
38897
39297
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
38898
39298
|
connected_account_id: string
|
|
38899
39299
|
acs_credential_pool_id?: string | undefined
|
|
@@ -39051,6 +39451,8 @@ export interface Routes {
|
|
|
39051
39451
|
acs_credential_id: string
|
|
39052
39452
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39053
39453
|
acs_user_id?: string | undefined
|
|
39454
|
+
/** 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. */
|
|
39455
|
+
user_identity_id?: string | undefined
|
|
39054
39456
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39055
39457
|
connected_account_id: string
|
|
39056
39458
|
acs_credential_pool_id?: string | undefined
|
|
@@ -39270,6 +39672,8 @@ export interface Routes {
|
|
|
39270
39672
|
acs_credential_id: string
|
|
39271
39673
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39272
39674
|
acs_user_id?: string | undefined
|
|
39675
|
+
/** 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. */
|
|
39676
|
+
user_identity_id?: string | undefined
|
|
39273
39677
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39274
39678
|
connected_account_id: string
|
|
39275
39679
|
acs_credential_pool_id?: string | undefined
|
|
@@ -39425,6 +39829,8 @@ export interface Routes {
|
|
|
39425
39829
|
acs_credential_id: string
|
|
39426
39830
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39427
39831
|
acs_user_id?: string | undefined
|
|
39832
|
+
/** 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. */
|
|
39833
|
+
user_identity_id?: string | undefined
|
|
39428
39834
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
39429
39835
|
connected_account_id: string
|
|
39430
39836
|
acs_credential_pool_id?: string | undefined
|
|
@@ -40327,6 +40733,8 @@ export interface Routes {
|
|
|
40327
40733
|
acs_credential_id: string
|
|
40328
40734
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40329
40735
|
acs_user_id?: string | undefined
|
|
40736
|
+
/** 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. */
|
|
40737
|
+
user_identity_id?: string | undefined
|
|
40330
40738
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40331
40739
|
connected_account_id: string
|
|
40332
40740
|
acs_credential_pool_id?: string | undefined
|
|
@@ -40484,6 +40892,8 @@ export interface Routes {
|
|
|
40484
40892
|
acs_credential_id: string
|
|
40485
40893
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40486
40894
|
acs_user_id?: string | undefined
|
|
40895
|
+
/** 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. */
|
|
40896
|
+
user_identity_id?: string | undefined
|
|
40487
40897
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40488
40898
|
connected_account_id: string
|
|
40489
40899
|
acs_credential_pool_id?: string | undefined
|
|
@@ -40703,6 +41113,8 @@ export interface Routes {
|
|
|
40703
41113
|
acs_credential_id: string
|
|
40704
41114
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40705
41115
|
acs_user_id?: string | undefined
|
|
41116
|
+
/** 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. */
|
|
41117
|
+
user_identity_id?: string | undefined
|
|
40706
41118
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40707
41119
|
connected_account_id: string
|
|
40708
41120
|
acs_credential_pool_id?: string | undefined
|
|
@@ -40858,6 +41270,8 @@ export interface Routes {
|
|
|
40858
41270
|
acs_credential_id: string
|
|
40859
41271
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40860
41272
|
acs_user_id?: string | undefined
|
|
41273
|
+
/** 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. */
|
|
41274
|
+
user_identity_id?: string | undefined
|
|
40861
41275
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
40862
41276
|
connected_account_id: string
|
|
40863
41277
|
acs_credential_pool_id?: string | undefined
|
|
@@ -41758,6 +42172,8 @@ export interface Routes {
|
|
|
41758
42172
|
acs_credential_id: string
|
|
41759
42173
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41760
42174
|
acs_user_id?: string | undefined
|
|
42175
|
+
/** 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. */
|
|
42176
|
+
user_identity_id?: string | undefined
|
|
41761
42177
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41762
42178
|
connected_account_id: string
|
|
41763
42179
|
acs_credential_pool_id?: string | undefined
|
|
@@ -41915,6 +42331,8 @@ export interface Routes {
|
|
|
41915
42331
|
acs_credential_id: string
|
|
41916
42332
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41917
42333
|
acs_user_id?: string | undefined
|
|
42334
|
+
/** 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. */
|
|
42335
|
+
user_identity_id?: string | undefined
|
|
41918
42336
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
41919
42337
|
connected_account_id: string
|
|
41920
42338
|
acs_credential_pool_id?: string | undefined
|
|
@@ -42134,6 +42552,8 @@ export interface Routes {
|
|
|
42134
42552
|
acs_credential_id: string
|
|
42135
42553
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42136
42554
|
acs_user_id?: string | undefined
|
|
42555
|
+
/** 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. */
|
|
42556
|
+
user_identity_id?: string | undefined
|
|
42137
42557
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42138
42558
|
connected_account_id: string
|
|
42139
42559
|
acs_credential_pool_id?: string | undefined
|
|
@@ -42289,6 +42709,8 @@ export interface Routes {
|
|
|
42289
42709
|
acs_credential_id: string
|
|
42290
42710
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42291
42711
|
acs_user_id?: string | undefined
|
|
42712
|
+
/** 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. */
|
|
42713
|
+
user_identity_id?: string | undefined
|
|
42292
42714
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
42293
42715
|
connected_account_id: string
|
|
42294
42716
|
acs_credential_pool_id?: string | undefined
|
|
@@ -43191,6 +43613,8 @@ export interface Routes {
|
|
|
43191
43613
|
acs_credential_id: string
|
|
43192
43614
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43193
43615
|
acs_user_id?: string | undefined
|
|
43616
|
+
/** 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. */
|
|
43617
|
+
user_identity_id?: string | undefined
|
|
43194
43618
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43195
43619
|
connected_account_id: string
|
|
43196
43620
|
acs_credential_pool_id?: string | undefined
|
|
@@ -43348,6 +43772,8 @@ export interface Routes {
|
|
|
43348
43772
|
acs_credential_id: string
|
|
43349
43773
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43350
43774
|
acs_user_id?: string | undefined
|
|
43775
|
+
/** 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. */
|
|
43776
|
+
user_identity_id?: string | undefined
|
|
43351
43777
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43352
43778
|
connected_account_id: string
|
|
43353
43779
|
acs_credential_pool_id?: string | undefined
|
|
@@ -43567,6 +43993,8 @@ export interface Routes {
|
|
|
43567
43993
|
acs_credential_id: string
|
|
43568
43994
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43569
43995
|
acs_user_id?: string | undefined
|
|
43996
|
+
/** 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. */
|
|
43997
|
+
user_identity_id?: string | undefined
|
|
43570
43998
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43571
43999
|
connected_account_id: string
|
|
43572
44000
|
acs_credential_pool_id?: string | undefined
|
|
@@ -43722,6 +44150,8 @@ export interface Routes {
|
|
|
43722
44150
|
acs_credential_id: string
|
|
43723
44151
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43724
44152
|
acs_user_id?: string | undefined
|
|
44153
|
+
/** 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. */
|
|
44154
|
+
user_identity_id?: string | undefined
|
|
43725
44155
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
43726
44156
|
connected_account_id: string
|
|
43727
44157
|
acs_credential_pool_id?: string | undefined
|
|
@@ -45316,6 +45746,12 @@ export interface Routes {
|
|
|
45316
45746
|
available_fan_mode_settings?:
|
|
45317
45747
|
| Array<'auto' | 'on' | 'circulate'>
|
|
45318
45748
|
| undefined
|
|
45749
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
45750
|
+
available_climate_preset_modes?:
|
|
45751
|
+
| Array<
|
|
45752
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
45753
|
+
>
|
|
45754
|
+
| undefined
|
|
45319
45755
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
45320
45756
|
is_heating?: boolean | undefined
|
|
45321
45757
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -45342,6 +45778,22 @@ export interface Routes {
|
|
|
45342
45778
|
name?: ((string | null) | undefined) | undefined
|
|
45343
45779
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
45344
45780
|
display_name?: string | undefined
|
|
45781
|
+
/**
|
|
45782
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
45783
|
+
*/
|
|
45784
|
+
climate_preset_mode?:
|
|
45785
|
+
| (
|
|
45786
|
+
| (
|
|
45787
|
+
| 'home'
|
|
45788
|
+
| 'away'
|
|
45789
|
+
| 'wake'
|
|
45790
|
+
| 'sleep'
|
|
45791
|
+
| 'occupied'
|
|
45792
|
+
| 'unoccupied'
|
|
45793
|
+
)
|
|
45794
|
+
| undefined
|
|
45795
|
+
)
|
|
45796
|
+
| undefined
|
|
45345
45797
|
/** 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`. */
|
|
45346
45798
|
fan_mode_setting?:
|
|
45347
45799
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -45383,6 +45835,22 @@ export interface Routes {
|
|
|
45383
45835
|
name?: ((string | null) | undefined) | undefined
|
|
45384
45836
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
45385
45837
|
display_name?: string | undefined
|
|
45838
|
+
/**
|
|
45839
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
45840
|
+
*/
|
|
45841
|
+
climate_preset_mode?:
|
|
45842
|
+
| (
|
|
45843
|
+
| (
|
|
45844
|
+
| 'home'
|
|
45845
|
+
| 'away'
|
|
45846
|
+
| 'wake'
|
|
45847
|
+
| 'sleep'
|
|
45848
|
+
| 'occupied'
|
|
45849
|
+
| 'unoccupied'
|
|
45850
|
+
)
|
|
45851
|
+
| undefined
|
|
45852
|
+
)
|
|
45853
|
+
| undefined
|
|
45386
45854
|
/** 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`. */
|
|
45387
45855
|
fan_mode_setting?:
|
|
45388
45856
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -45423,6 +45891,19 @@ export interface Routes {
|
|
|
45423
45891
|
name?: (string | null) | undefined
|
|
45424
45892
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
45425
45893
|
display_name: string
|
|
45894
|
+
/**
|
|
45895
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
45896
|
+
*/
|
|
45897
|
+
climate_preset_mode?:
|
|
45898
|
+
| (
|
|
45899
|
+
| 'home'
|
|
45900
|
+
| 'away'
|
|
45901
|
+
| 'wake'
|
|
45902
|
+
| 'sleep'
|
|
45903
|
+
| 'occupied'
|
|
45904
|
+
| 'unoccupied'
|
|
45905
|
+
)
|
|
45906
|
+
| undefined
|
|
45426
45907
|
/** 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`. */
|
|
45427
45908
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
45428
45909
|
/** 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`. */
|
|
@@ -46664,6 +47145,12 @@ export interface Routes {
|
|
|
46664
47145
|
available_fan_mode_settings?:
|
|
46665
47146
|
| Array<'auto' | 'on' | 'circulate'>
|
|
46666
47147
|
| undefined
|
|
47148
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
47149
|
+
available_climate_preset_modes?:
|
|
47150
|
+
| Array<
|
|
47151
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
47152
|
+
>
|
|
47153
|
+
| undefined
|
|
46667
47154
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
46668
47155
|
is_heating?: boolean | undefined
|
|
46669
47156
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -46690,6 +47177,22 @@ export interface Routes {
|
|
|
46690
47177
|
name?: ((string | null) | undefined) | undefined
|
|
46691
47178
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
46692
47179
|
display_name?: string | undefined
|
|
47180
|
+
/**
|
|
47181
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
47182
|
+
*/
|
|
47183
|
+
climate_preset_mode?:
|
|
47184
|
+
| (
|
|
47185
|
+
| (
|
|
47186
|
+
| 'home'
|
|
47187
|
+
| 'away'
|
|
47188
|
+
| 'wake'
|
|
47189
|
+
| 'sleep'
|
|
47190
|
+
| 'occupied'
|
|
47191
|
+
| 'unoccupied'
|
|
47192
|
+
)
|
|
47193
|
+
| undefined
|
|
47194
|
+
)
|
|
47195
|
+
| undefined
|
|
46693
47196
|
/** 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`. */
|
|
46694
47197
|
fan_mode_setting?:
|
|
46695
47198
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -46731,6 +47234,22 @@ export interface Routes {
|
|
|
46731
47234
|
name?: ((string | null) | undefined) | undefined
|
|
46732
47235
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
46733
47236
|
display_name?: string | undefined
|
|
47237
|
+
/**
|
|
47238
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
47239
|
+
*/
|
|
47240
|
+
climate_preset_mode?:
|
|
47241
|
+
| (
|
|
47242
|
+
| (
|
|
47243
|
+
| 'home'
|
|
47244
|
+
| 'away'
|
|
47245
|
+
| 'wake'
|
|
47246
|
+
| 'sleep'
|
|
47247
|
+
| 'occupied'
|
|
47248
|
+
| 'unoccupied'
|
|
47249
|
+
)
|
|
47250
|
+
| undefined
|
|
47251
|
+
)
|
|
47252
|
+
| undefined
|
|
46734
47253
|
/** 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`. */
|
|
46735
47254
|
fan_mode_setting?:
|
|
46736
47255
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -46771,6 +47290,19 @@ export interface Routes {
|
|
|
46771
47290
|
name?: (string | null) | undefined
|
|
46772
47291
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
46773
47292
|
display_name: string
|
|
47293
|
+
/**
|
|
47294
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
47295
|
+
*/
|
|
47296
|
+
climate_preset_mode?:
|
|
47297
|
+
| (
|
|
47298
|
+
| 'home'
|
|
47299
|
+
| 'away'
|
|
47300
|
+
| 'wake'
|
|
47301
|
+
| 'sleep'
|
|
47302
|
+
| 'occupied'
|
|
47303
|
+
| 'unoccupied'
|
|
47304
|
+
)
|
|
47305
|
+
| undefined
|
|
46774
47306
|
/** 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`. */
|
|
46775
47307
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
46776
47308
|
/** 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`. */
|
|
@@ -47444,6 +47976,8 @@ export interface Routes {
|
|
|
47444
47976
|
acs_credential_id: string
|
|
47445
47977
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47446
47978
|
acs_user_id?: string | undefined
|
|
47979
|
+
/** 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. */
|
|
47980
|
+
user_identity_id?: string | undefined
|
|
47447
47981
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47448
47982
|
connected_account_id: string
|
|
47449
47983
|
acs_credential_pool_id?: string | undefined
|
|
@@ -47601,6 +48135,8 @@ export interface Routes {
|
|
|
47601
48135
|
acs_credential_id: string
|
|
47602
48136
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47603
48137
|
acs_user_id?: string | undefined
|
|
48138
|
+
/** 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. */
|
|
48139
|
+
user_identity_id?: string | undefined
|
|
47604
48140
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47605
48141
|
connected_account_id: string
|
|
47606
48142
|
acs_credential_pool_id?: string | undefined
|
|
@@ -47820,6 +48356,8 @@ export interface Routes {
|
|
|
47820
48356
|
acs_credential_id: string
|
|
47821
48357
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47822
48358
|
acs_user_id?: string | undefined
|
|
48359
|
+
/** 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. */
|
|
48360
|
+
user_identity_id?: string | undefined
|
|
47823
48361
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47824
48362
|
connected_account_id: string
|
|
47825
48363
|
acs_credential_pool_id?: string | undefined
|
|
@@ -47975,6 +48513,8 @@ export interface Routes {
|
|
|
47975
48513
|
acs_credential_id: string
|
|
47976
48514
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47977
48515
|
acs_user_id?: string | undefined
|
|
48516
|
+
/** 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. */
|
|
48517
|
+
user_identity_id?: string | undefined
|
|
47978
48518
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
47979
48519
|
connected_account_id: string
|
|
47980
48520
|
acs_credential_pool_id?: string | undefined
|
|
@@ -48896,6 +49436,8 @@ export interface Routes {
|
|
|
48896
49436
|
acs_credential_id: string
|
|
48897
49437
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48898
49438
|
acs_user_id?: string | undefined
|
|
49439
|
+
/** 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. */
|
|
49440
|
+
user_identity_id?: string | undefined
|
|
48899
49441
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
48900
49442
|
connected_account_id: string
|
|
48901
49443
|
acs_credential_pool_id?: string | undefined
|
|
@@ -49053,6 +49595,8 @@ export interface Routes {
|
|
|
49053
49595
|
acs_credential_id: string
|
|
49054
49596
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49055
49597
|
acs_user_id?: string | undefined
|
|
49598
|
+
/** 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. */
|
|
49599
|
+
user_identity_id?: string | undefined
|
|
49056
49600
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49057
49601
|
connected_account_id: string
|
|
49058
49602
|
acs_credential_pool_id?: string | undefined
|
|
@@ -49272,6 +49816,8 @@ export interface Routes {
|
|
|
49272
49816
|
acs_credential_id: string
|
|
49273
49817
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49274
49818
|
acs_user_id?: string | undefined
|
|
49819
|
+
/** 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. */
|
|
49820
|
+
user_identity_id?: string | undefined
|
|
49275
49821
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49276
49822
|
connected_account_id: string
|
|
49277
49823
|
acs_credential_pool_id?: string | undefined
|
|
@@ -49427,6 +49973,8 @@ export interface Routes {
|
|
|
49427
49973
|
acs_credential_id: string
|
|
49428
49974
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49429
49975
|
acs_user_id?: string | undefined
|
|
49976
|
+
/** 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. */
|
|
49977
|
+
user_identity_id?: string | undefined
|
|
49430
49978
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
49431
49979
|
connected_account_id: string
|
|
49432
49980
|
acs_credential_pool_id?: string | undefined
|
|
@@ -50402,6 +50950,8 @@ export interface Routes {
|
|
|
50402
50950
|
acs_credential_id: string
|
|
50403
50951
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50404
50952
|
acs_user_id?: string | undefined
|
|
50953
|
+
/** 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. */
|
|
50954
|
+
user_identity_id?: string | undefined
|
|
50405
50955
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50406
50956
|
connected_account_id: string
|
|
50407
50957
|
acs_credential_pool_id?: string | undefined
|
|
@@ -50559,6 +51109,8 @@ export interface Routes {
|
|
|
50559
51109
|
acs_credential_id: string
|
|
50560
51110
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50561
51111
|
acs_user_id?: string | undefined
|
|
51112
|
+
/** 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. */
|
|
51113
|
+
user_identity_id?: string | undefined
|
|
50562
51114
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50563
51115
|
connected_account_id: string
|
|
50564
51116
|
acs_credential_pool_id?: string | undefined
|
|
@@ -50778,6 +51330,8 @@ export interface Routes {
|
|
|
50778
51330
|
acs_credential_id: string
|
|
50779
51331
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50780
51332
|
acs_user_id?: string | undefined
|
|
51333
|
+
/** 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. */
|
|
51334
|
+
user_identity_id?: string | undefined
|
|
50781
51335
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50782
51336
|
connected_account_id: string
|
|
50783
51337
|
acs_credential_pool_id?: string | undefined
|
|
@@ -50933,6 +51487,8 @@ export interface Routes {
|
|
|
50933
51487
|
acs_credential_id: string
|
|
50934
51488
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50935
51489
|
acs_user_id?: string | undefined
|
|
51490
|
+
/** 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. */
|
|
51491
|
+
user_identity_id?: string | undefined
|
|
50936
51492
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
50937
51493
|
connected_account_id: string
|
|
50938
51494
|
acs_credential_pool_id?: string | undefined
|
|
@@ -52538,6 +53094,8 @@ export interface Routes {
|
|
|
52538
53094
|
acs_credential_id: string
|
|
52539
53095
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52540
53096
|
acs_user_id?: string | undefined
|
|
53097
|
+
/** 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. */
|
|
53098
|
+
user_identity_id?: string | undefined
|
|
52541
53099
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52542
53100
|
connected_account_id: string
|
|
52543
53101
|
acs_credential_pool_id?: string | undefined
|
|
@@ -52730,6 +53288,8 @@ export interface Routes {
|
|
|
52730
53288
|
acs_credentials: Array<{
|
|
52731
53289
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52732
53290
|
acs_user_id?: string | undefined
|
|
53291
|
+
/** 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. */
|
|
53292
|
+
user_identity_id?: string | undefined
|
|
52733
53293
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
52734
53294
|
connected_account_id: string
|
|
52735
53295
|
acs_credential_pool_id?: string | undefined
|
|
@@ -53373,6 +53933,8 @@ export interface Routes {
|
|
|
53373
53933
|
acs_credential_id: string
|
|
53374
53934
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53375
53935
|
acs_user_id?: string | undefined
|
|
53936
|
+
/** 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. */
|
|
53937
|
+
user_identity_id?: string | undefined
|
|
53376
53938
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53377
53939
|
connected_account_id: string
|
|
53378
53940
|
acs_credential_pool_id?: string | undefined
|
|
@@ -53530,6 +54092,8 @@ export interface Routes {
|
|
|
53530
54092
|
acs_credential_id: string
|
|
53531
54093
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53532
54094
|
acs_user_id?: string | undefined
|
|
54095
|
+
/** 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. */
|
|
54096
|
+
user_identity_id?: string | undefined
|
|
53533
54097
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53534
54098
|
connected_account_id: string
|
|
53535
54099
|
acs_credential_pool_id?: string | undefined
|
|
@@ -53749,6 +54313,8 @@ export interface Routes {
|
|
|
53749
54313
|
acs_credential_id: string
|
|
53750
54314
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53751
54315
|
acs_user_id?: string | undefined
|
|
54316
|
+
/** 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. */
|
|
54317
|
+
user_identity_id?: string | undefined
|
|
53752
54318
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53753
54319
|
connected_account_id: string
|
|
53754
54320
|
acs_credential_pool_id?: string | undefined
|
|
@@ -53904,6 +54470,8 @@ export interface Routes {
|
|
|
53904
54470
|
acs_credential_id: string
|
|
53905
54471
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53906
54472
|
acs_user_id?: string | undefined
|
|
54473
|
+
/** 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. */
|
|
54474
|
+
user_identity_id?: string | undefined
|
|
53907
54475
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
53908
54476
|
connected_account_id: string
|
|
53909
54477
|
acs_credential_pool_id?: string | undefined
|
|
@@ -54810,6 +55378,8 @@ export interface Routes {
|
|
|
54810
55378
|
acs_credential_id: string
|
|
54811
55379
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54812
55380
|
acs_user_id?: string | undefined
|
|
55381
|
+
/** 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. */
|
|
55382
|
+
user_identity_id?: string | undefined
|
|
54813
55383
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54814
55384
|
connected_account_id: string
|
|
54815
55385
|
acs_credential_pool_id?: string | undefined
|
|
@@ -54967,6 +55537,8 @@ export interface Routes {
|
|
|
54967
55537
|
acs_credential_id: string
|
|
54968
55538
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54969
55539
|
acs_user_id?: string | undefined
|
|
55540
|
+
/** 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. */
|
|
55541
|
+
user_identity_id?: string | undefined
|
|
54970
55542
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
54971
55543
|
connected_account_id: string
|
|
54972
55544
|
acs_credential_pool_id?: string | undefined
|
|
@@ -55186,6 +55758,8 @@ export interface Routes {
|
|
|
55186
55758
|
acs_credential_id: string
|
|
55187
55759
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55188
55760
|
acs_user_id?: string | undefined
|
|
55761
|
+
/** 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. */
|
|
55762
|
+
user_identity_id?: string | undefined
|
|
55189
55763
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55190
55764
|
connected_account_id: string
|
|
55191
55765
|
acs_credential_pool_id?: string | undefined
|
|
@@ -55341,6 +55915,8 @@ export interface Routes {
|
|
|
55341
55915
|
acs_credential_id: string
|
|
55342
55916
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55343
55917
|
acs_user_id?: string | undefined
|
|
55918
|
+
/** 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. */
|
|
55919
|
+
user_identity_id?: string | undefined
|
|
55344
55920
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
55345
55921
|
connected_account_id: string
|
|
55346
55922
|
acs_credential_pool_id?: string | undefined
|
|
@@ -56092,6 +56668,12 @@ export interface Routes {
|
|
|
56092
56668
|
climate_preset_key: string
|
|
56093
56669
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
56094
56670
|
name?: (string | null) | undefined
|
|
56671
|
+
/**
|
|
56672
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
56673
|
+
*/
|
|
56674
|
+
climate_preset_mode?:
|
|
56675
|
+
| ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied')
|
|
56676
|
+
| undefined
|
|
56095
56677
|
/** 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`. */
|
|
56096
56678
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
56097
56679
|
/** 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`. */
|
|
@@ -56335,6 +56917,8 @@ export interface Routes {
|
|
|
56335
56917
|
acs_credential_id: string
|
|
56336
56918
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56337
56919
|
acs_user_id?: string | undefined
|
|
56920
|
+
/** 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. */
|
|
56921
|
+
user_identity_id?: string | undefined
|
|
56338
56922
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56339
56923
|
connected_account_id: string
|
|
56340
56924
|
acs_credential_pool_id?: string | undefined
|
|
@@ -56492,6 +57076,8 @@ export interface Routes {
|
|
|
56492
57076
|
acs_credential_id: string
|
|
56493
57077
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56494
57078
|
acs_user_id?: string | undefined
|
|
57079
|
+
/** 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. */
|
|
57080
|
+
user_identity_id?: string | undefined
|
|
56495
57081
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56496
57082
|
connected_account_id: string
|
|
56497
57083
|
acs_credential_pool_id?: string | undefined
|
|
@@ -56711,6 +57297,8 @@ export interface Routes {
|
|
|
56711
57297
|
acs_credential_id: string
|
|
56712
57298
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56713
57299
|
acs_user_id?: string | undefined
|
|
57300
|
+
/** 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. */
|
|
57301
|
+
user_identity_id?: string | undefined
|
|
56714
57302
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56715
57303
|
connected_account_id: string
|
|
56716
57304
|
acs_credential_pool_id?: string | undefined
|
|
@@ -56866,6 +57454,8 @@ export interface Routes {
|
|
|
56866
57454
|
acs_credential_id: string
|
|
56867
57455
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56868
57456
|
acs_user_id?: string | undefined
|
|
57457
|
+
/** 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. */
|
|
57458
|
+
user_identity_id?: string | undefined
|
|
56869
57459
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
56870
57460
|
connected_account_id: string
|
|
56871
57461
|
acs_credential_pool_id?: string | undefined
|
|
@@ -58376,6 +58966,12 @@ export interface Routes {
|
|
|
58376
58966
|
available_fan_mode_settings?:
|
|
58377
58967
|
| Array<'auto' | 'on' | 'circulate'>
|
|
58378
58968
|
| undefined
|
|
58969
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
58970
|
+
available_climate_preset_modes?:
|
|
58971
|
+
| Array<
|
|
58972
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
58973
|
+
>
|
|
58974
|
+
| undefined
|
|
58379
58975
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
58380
58976
|
is_heating?: boolean | undefined
|
|
58381
58977
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -58402,6 +58998,22 @@ export interface Routes {
|
|
|
58402
58998
|
name?: ((string | null) | undefined) | undefined
|
|
58403
58999
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
58404
59000
|
display_name?: string | undefined
|
|
59001
|
+
/**
|
|
59002
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
59003
|
+
*/
|
|
59004
|
+
climate_preset_mode?:
|
|
59005
|
+
| (
|
|
59006
|
+
| (
|
|
59007
|
+
| 'home'
|
|
59008
|
+
| 'away'
|
|
59009
|
+
| 'wake'
|
|
59010
|
+
| 'sleep'
|
|
59011
|
+
| 'occupied'
|
|
59012
|
+
| 'unoccupied'
|
|
59013
|
+
)
|
|
59014
|
+
| undefined
|
|
59015
|
+
)
|
|
59016
|
+
| undefined
|
|
58405
59017
|
/** 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`. */
|
|
58406
59018
|
fan_mode_setting?:
|
|
58407
59019
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -58443,6 +59055,22 @@ export interface Routes {
|
|
|
58443
59055
|
name?: ((string | null) | undefined) | undefined
|
|
58444
59056
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
58445
59057
|
display_name?: string | undefined
|
|
59058
|
+
/**
|
|
59059
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
59060
|
+
*/
|
|
59061
|
+
climate_preset_mode?:
|
|
59062
|
+
| (
|
|
59063
|
+
| (
|
|
59064
|
+
| 'home'
|
|
59065
|
+
| 'away'
|
|
59066
|
+
| 'wake'
|
|
59067
|
+
| 'sleep'
|
|
59068
|
+
| 'occupied'
|
|
59069
|
+
| 'unoccupied'
|
|
59070
|
+
)
|
|
59071
|
+
| undefined
|
|
59072
|
+
)
|
|
59073
|
+
| undefined
|
|
58446
59074
|
/** 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`. */
|
|
58447
59075
|
fan_mode_setting?:
|
|
58448
59076
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -58483,6 +59111,19 @@ export interface Routes {
|
|
|
58483
59111
|
name?: (string | null) | undefined
|
|
58484
59112
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
58485
59113
|
display_name: string
|
|
59114
|
+
/**
|
|
59115
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
59116
|
+
*/
|
|
59117
|
+
climate_preset_mode?:
|
|
59118
|
+
| (
|
|
59119
|
+
| 'home'
|
|
59120
|
+
| 'away'
|
|
59121
|
+
| 'wake'
|
|
59122
|
+
| 'sleep'
|
|
59123
|
+
| 'occupied'
|
|
59124
|
+
| 'unoccupied'
|
|
59125
|
+
)
|
|
59126
|
+
| undefined
|
|
58486
59127
|
/** 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`. */
|
|
58487
59128
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
58488
59129
|
/** 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`. */
|
|
@@ -59150,6 +59791,8 @@ export interface Routes {
|
|
|
59150
59791
|
acs_credential_id: string
|
|
59151
59792
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59152
59793
|
acs_user_id?: string | undefined
|
|
59794
|
+
/** 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. */
|
|
59795
|
+
user_identity_id?: string | undefined
|
|
59153
59796
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59154
59797
|
connected_account_id: string
|
|
59155
59798
|
acs_credential_pool_id?: string | undefined
|
|
@@ -59307,6 +59950,8 @@ export interface Routes {
|
|
|
59307
59950
|
acs_credential_id: string
|
|
59308
59951
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59309
59952
|
acs_user_id?: string | undefined
|
|
59953
|
+
/** 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. */
|
|
59954
|
+
user_identity_id?: string | undefined
|
|
59310
59955
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59311
59956
|
connected_account_id: string
|
|
59312
59957
|
acs_credential_pool_id?: string | undefined
|
|
@@ -59526,6 +60171,8 @@ export interface Routes {
|
|
|
59526
60171
|
acs_credential_id: string
|
|
59527
60172
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59528
60173
|
acs_user_id?: string | undefined
|
|
60174
|
+
/** 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. */
|
|
60175
|
+
user_identity_id?: string | undefined
|
|
59529
60176
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59530
60177
|
connected_account_id: string
|
|
59531
60178
|
acs_credential_pool_id?: string | undefined
|
|
@@ -59681,6 +60328,8 @@ export interface Routes {
|
|
|
59681
60328
|
acs_credential_id: string
|
|
59682
60329
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59683
60330
|
acs_user_id?: string | undefined
|
|
60331
|
+
/** 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. */
|
|
60332
|
+
user_identity_id?: string | undefined
|
|
59684
60333
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
59685
60334
|
connected_account_id: string
|
|
59686
60335
|
acs_credential_pool_id?: string | undefined
|
|
@@ -60591,6 +61240,8 @@ export interface Routes {
|
|
|
60591
61240
|
acs_credential_id: string
|
|
60592
61241
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60593
61242
|
acs_user_id?: string | undefined
|
|
61243
|
+
/** 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. */
|
|
61244
|
+
user_identity_id?: string | undefined
|
|
60594
61245
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60595
61246
|
connected_account_id: string
|
|
60596
61247
|
acs_credential_pool_id?: string | undefined
|
|
@@ -60748,6 +61399,8 @@ export interface Routes {
|
|
|
60748
61399
|
acs_credential_id: string
|
|
60749
61400
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60750
61401
|
acs_user_id?: string | undefined
|
|
61402
|
+
/** 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. */
|
|
61403
|
+
user_identity_id?: string | undefined
|
|
60751
61404
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60752
61405
|
connected_account_id: string
|
|
60753
61406
|
acs_credential_pool_id?: string | undefined
|
|
@@ -60967,6 +61620,8 @@ export interface Routes {
|
|
|
60967
61620
|
acs_credential_id: string
|
|
60968
61621
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60969
61622
|
acs_user_id?: string | undefined
|
|
61623
|
+
/** 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. */
|
|
61624
|
+
user_identity_id?: string | undefined
|
|
60970
61625
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
60971
61626
|
connected_account_id: string
|
|
60972
61627
|
acs_credential_pool_id?: string | undefined
|
|
@@ -61122,6 +61777,8 @@ export interface Routes {
|
|
|
61122
61777
|
acs_credential_id: string
|
|
61123
61778
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61124
61779
|
acs_user_id?: string | undefined
|
|
61780
|
+
/** 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. */
|
|
61781
|
+
user_identity_id?: string | undefined
|
|
61125
61782
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
61126
61783
|
connected_account_id: string
|
|
61127
61784
|
acs_credential_pool_id?: string | undefined
|
|
@@ -62706,6 +63363,12 @@ export interface Routes {
|
|
|
62706
63363
|
available_fan_mode_settings?:
|
|
62707
63364
|
| Array<'auto' | 'on' | 'circulate'>
|
|
62708
63365
|
| undefined
|
|
63366
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
63367
|
+
available_climate_preset_modes?:
|
|
63368
|
+
| Array<
|
|
63369
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
63370
|
+
>
|
|
63371
|
+
| undefined
|
|
62709
63372
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
62710
63373
|
is_heating?: boolean | undefined
|
|
62711
63374
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -62732,6 +63395,22 @@ export interface Routes {
|
|
|
62732
63395
|
name?: ((string | null) | undefined) | undefined
|
|
62733
63396
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62734
63397
|
display_name?: string | undefined
|
|
63398
|
+
/**
|
|
63399
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63400
|
+
*/
|
|
63401
|
+
climate_preset_mode?:
|
|
63402
|
+
| (
|
|
63403
|
+
| (
|
|
63404
|
+
| 'home'
|
|
63405
|
+
| 'away'
|
|
63406
|
+
| 'wake'
|
|
63407
|
+
| 'sleep'
|
|
63408
|
+
| 'occupied'
|
|
63409
|
+
| 'unoccupied'
|
|
63410
|
+
)
|
|
63411
|
+
| undefined
|
|
63412
|
+
)
|
|
63413
|
+
| undefined
|
|
62735
63414
|
/** 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`. */
|
|
62736
63415
|
fan_mode_setting?:
|
|
62737
63416
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -62773,6 +63452,22 @@ export interface Routes {
|
|
|
62773
63452
|
name?: ((string | null) | undefined) | undefined
|
|
62774
63453
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62775
63454
|
display_name?: string | undefined
|
|
63455
|
+
/**
|
|
63456
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63457
|
+
*/
|
|
63458
|
+
climate_preset_mode?:
|
|
63459
|
+
| (
|
|
63460
|
+
| (
|
|
63461
|
+
| 'home'
|
|
63462
|
+
| 'away'
|
|
63463
|
+
| 'wake'
|
|
63464
|
+
| 'sleep'
|
|
63465
|
+
| 'occupied'
|
|
63466
|
+
| 'unoccupied'
|
|
63467
|
+
)
|
|
63468
|
+
| undefined
|
|
63469
|
+
)
|
|
63470
|
+
| undefined
|
|
62776
63471
|
/** 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`. */
|
|
62777
63472
|
fan_mode_setting?:
|
|
62778
63473
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -62813,6 +63508,19 @@ export interface Routes {
|
|
|
62813
63508
|
name?: (string | null) | undefined
|
|
62814
63509
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62815
63510
|
display_name: string
|
|
63511
|
+
/**
|
|
63512
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63513
|
+
*/
|
|
63514
|
+
climate_preset_mode?:
|
|
63515
|
+
| (
|
|
63516
|
+
| 'home'
|
|
63517
|
+
| 'away'
|
|
63518
|
+
| 'wake'
|
|
63519
|
+
| 'sleep'
|
|
63520
|
+
| 'occupied'
|
|
63521
|
+
| 'unoccupied'
|
|
63522
|
+
)
|
|
63523
|
+
| undefined
|
|
62816
63524
|
/** 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`. */
|
|
62817
63525
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
62818
63526
|
/** 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`. */
|
|
@@ -64054,6 +64762,12 @@ export interface Routes {
|
|
|
64054
64762
|
available_fan_mode_settings?:
|
|
64055
64763
|
| Array<'auto' | 'on' | 'circulate'>
|
|
64056
64764
|
| undefined
|
|
64765
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
64766
|
+
available_climate_preset_modes?:
|
|
64767
|
+
| Array<
|
|
64768
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
64769
|
+
>
|
|
64770
|
+
| undefined
|
|
64057
64771
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
64058
64772
|
is_heating?: boolean | undefined
|
|
64059
64773
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -64080,6 +64794,22 @@ export interface Routes {
|
|
|
64080
64794
|
name?: ((string | null) | undefined) | undefined
|
|
64081
64795
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
64082
64796
|
display_name?: string | undefined
|
|
64797
|
+
/**
|
|
64798
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
64799
|
+
*/
|
|
64800
|
+
climate_preset_mode?:
|
|
64801
|
+
| (
|
|
64802
|
+
| (
|
|
64803
|
+
| 'home'
|
|
64804
|
+
| 'away'
|
|
64805
|
+
| 'wake'
|
|
64806
|
+
| 'sleep'
|
|
64807
|
+
| 'occupied'
|
|
64808
|
+
| 'unoccupied'
|
|
64809
|
+
)
|
|
64810
|
+
| undefined
|
|
64811
|
+
)
|
|
64812
|
+
| undefined
|
|
64083
64813
|
/** 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`. */
|
|
64084
64814
|
fan_mode_setting?:
|
|
64085
64815
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -64121,6 +64851,22 @@ export interface Routes {
|
|
|
64121
64851
|
name?: ((string | null) | undefined) | undefined
|
|
64122
64852
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
64123
64853
|
display_name?: string | undefined
|
|
64854
|
+
/**
|
|
64855
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
64856
|
+
*/
|
|
64857
|
+
climate_preset_mode?:
|
|
64858
|
+
| (
|
|
64859
|
+
| (
|
|
64860
|
+
| 'home'
|
|
64861
|
+
| 'away'
|
|
64862
|
+
| 'wake'
|
|
64863
|
+
| 'sleep'
|
|
64864
|
+
| 'occupied'
|
|
64865
|
+
| 'unoccupied'
|
|
64866
|
+
)
|
|
64867
|
+
| undefined
|
|
64868
|
+
)
|
|
64869
|
+
| undefined
|
|
64124
64870
|
/** 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`. */
|
|
64125
64871
|
fan_mode_setting?:
|
|
64126
64872
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -64161,6 +64907,19 @@ export interface Routes {
|
|
|
64161
64907
|
name?: (string | null) | undefined
|
|
64162
64908
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
64163
64909
|
display_name: string
|
|
64910
|
+
/**
|
|
64911
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
64912
|
+
*/
|
|
64913
|
+
climate_preset_mode?:
|
|
64914
|
+
| (
|
|
64915
|
+
| 'home'
|
|
64916
|
+
| 'away'
|
|
64917
|
+
| 'wake'
|
|
64918
|
+
| 'sleep'
|
|
64919
|
+
| 'occupied'
|
|
64920
|
+
| 'unoccupied'
|
|
64921
|
+
)
|
|
64922
|
+
| undefined
|
|
64164
64923
|
/** 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`. */
|
|
64165
64924
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
64166
64925
|
/** 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`. */
|
|
@@ -64824,6 +65583,8 @@ export interface Routes {
|
|
|
64824
65583
|
acs_credential_id: string
|
|
64825
65584
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64826
65585
|
acs_user_id?: string | undefined
|
|
65586
|
+
/** 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. */
|
|
65587
|
+
user_identity_id?: string | undefined
|
|
64827
65588
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64828
65589
|
connected_account_id: string
|
|
64829
65590
|
acs_credential_pool_id?: string | undefined
|
|
@@ -64981,6 +65742,8 @@ export interface Routes {
|
|
|
64981
65742
|
acs_credential_id: string
|
|
64982
65743
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64983
65744
|
acs_user_id?: string | undefined
|
|
65745
|
+
/** 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. */
|
|
65746
|
+
user_identity_id?: string | undefined
|
|
64984
65747
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
64985
65748
|
connected_account_id: string
|
|
64986
65749
|
acs_credential_pool_id?: string | undefined
|
|
@@ -65200,6 +65963,8 @@ export interface Routes {
|
|
|
65200
65963
|
acs_credential_id: string
|
|
65201
65964
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65202
65965
|
acs_user_id?: string | undefined
|
|
65966
|
+
/** 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. */
|
|
65967
|
+
user_identity_id?: string | undefined
|
|
65203
65968
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65204
65969
|
connected_account_id: string
|
|
65205
65970
|
acs_credential_pool_id?: string | undefined
|
|
@@ -65355,6 +66120,8 @@ export interface Routes {
|
|
|
65355
66120
|
acs_credential_id: string
|
|
65356
66121
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65357
66122
|
acs_user_id?: string | undefined
|
|
66123
|
+
/** 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. */
|
|
66124
|
+
user_identity_id?: string | undefined
|
|
65358
66125
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
65359
66126
|
connected_account_id: string
|
|
65360
66127
|
acs_credential_pool_id?: string | undefined
|
|
@@ -66454,6 +67221,8 @@ export interface Routes {
|
|
|
66454
67221
|
acs_credential_id: string
|
|
66455
67222
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66456
67223
|
acs_user_id?: string | undefined
|
|
67224
|
+
/** 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. */
|
|
67225
|
+
user_identity_id?: string | undefined
|
|
66457
67226
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66458
67227
|
connected_account_id: string
|
|
66459
67228
|
acs_credential_pool_id?: string | undefined
|
|
@@ -66611,6 +67380,8 @@ export interface Routes {
|
|
|
66611
67380
|
acs_credential_id: string
|
|
66612
67381
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66613
67382
|
acs_user_id?: string | undefined
|
|
67383
|
+
/** 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. */
|
|
67384
|
+
user_identity_id?: string | undefined
|
|
66614
67385
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66615
67386
|
connected_account_id: string
|
|
66616
67387
|
acs_credential_pool_id?: string | undefined
|
|
@@ -66830,6 +67601,8 @@ export interface Routes {
|
|
|
66830
67601
|
acs_credential_id: string
|
|
66831
67602
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66832
67603
|
acs_user_id?: string | undefined
|
|
67604
|
+
/** 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. */
|
|
67605
|
+
user_identity_id?: string | undefined
|
|
66833
67606
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66834
67607
|
connected_account_id: string
|
|
66835
67608
|
acs_credential_pool_id?: string | undefined
|
|
@@ -66985,6 +67758,8 @@ export interface Routes {
|
|
|
66985
67758
|
acs_credential_id: string
|
|
66986
67759
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66987
67760
|
acs_user_id?: string | undefined
|
|
67761
|
+
/** 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. */
|
|
67762
|
+
user_identity_id?: string | undefined
|
|
66988
67763
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
66989
67764
|
connected_account_id: string
|
|
66990
67765
|
acs_credential_pool_id?: string | undefined
|
|
@@ -67918,6 +68693,8 @@ export interface Routes {
|
|
|
67918
68693
|
acs_credential_id: string
|
|
67919
68694
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
67920
68695
|
acs_user_id?: string | undefined
|
|
68696
|
+
/** 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. */
|
|
68697
|
+
user_identity_id?: string | undefined
|
|
67921
68698
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
67922
68699
|
connected_account_id: string
|
|
67923
68700
|
acs_credential_pool_id?: string | undefined
|
|
@@ -68075,6 +68852,8 @@ export interface Routes {
|
|
|
68075
68852
|
acs_credential_id: string
|
|
68076
68853
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68077
68854
|
acs_user_id?: string | undefined
|
|
68855
|
+
/** 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. */
|
|
68856
|
+
user_identity_id?: string | undefined
|
|
68078
68857
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68079
68858
|
connected_account_id: string
|
|
68080
68859
|
acs_credential_pool_id?: string | undefined
|
|
@@ -68294,6 +69073,8 @@ export interface Routes {
|
|
|
68294
69073
|
acs_credential_id: string
|
|
68295
69074
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68296
69075
|
acs_user_id?: string | undefined
|
|
69076
|
+
/** 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. */
|
|
69077
|
+
user_identity_id?: string | undefined
|
|
68297
69078
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68298
69079
|
connected_account_id: string
|
|
68299
69080
|
acs_credential_pool_id?: string | undefined
|
|
@@ -68449,6 +69230,8 @@ export interface Routes {
|
|
|
68449
69230
|
acs_credential_id: string
|
|
68450
69231
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68451
69232
|
acs_user_id?: string | undefined
|
|
69233
|
+
/** 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. */
|
|
69234
|
+
user_identity_id?: string | undefined
|
|
68452
69235
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68453
69236
|
connected_account_id: string
|
|
68454
69237
|
acs_credential_pool_id?: string | undefined
|
|
@@ -69282,6 +70065,12 @@ export interface Routes {
|
|
|
69282
70065
|
climate_preset_key: string
|
|
69283
70066
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
69284
70067
|
name?: (string | null) | undefined
|
|
70068
|
+
/**
|
|
70069
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
70070
|
+
*/
|
|
70071
|
+
climate_preset_mode?:
|
|
70072
|
+
| ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied')
|
|
70073
|
+
| undefined
|
|
69285
70074
|
/** 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`. */
|
|
69286
70075
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
69287
70076
|
/** 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`. */
|
|
@@ -69479,6 +70268,8 @@ export interface Routes {
|
|
|
69479
70268
|
acs_credential_id: string
|
|
69480
70269
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69481
70270
|
acs_user_id?: string | undefined
|
|
70271
|
+
/** 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. */
|
|
70272
|
+
user_identity_id?: string | undefined
|
|
69482
70273
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69483
70274
|
connected_account_id: string
|
|
69484
70275
|
acs_credential_pool_id?: string | undefined
|
|
@@ -69636,6 +70427,8 @@ export interface Routes {
|
|
|
69636
70427
|
acs_credential_id: string
|
|
69637
70428
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69638
70429
|
acs_user_id?: string | undefined
|
|
70430
|
+
/** 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. */
|
|
70431
|
+
user_identity_id?: string | undefined
|
|
69639
70432
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69640
70433
|
connected_account_id: string
|
|
69641
70434
|
acs_credential_pool_id?: string | undefined
|
|
@@ -69855,6 +70648,8 @@ export interface Routes {
|
|
|
69855
70648
|
acs_credential_id: string
|
|
69856
70649
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69857
70650
|
acs_user_id?: string | undefined
|
|
70651
|
+
/** 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. */
|
|
70652
|
+
user_identity_id?: string | undefined
|
|
69858
70653
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69859
70654
|
connected_account_id: string
|
|
69860
70655
|
acs_credential_pool_id?: string | undefined
|
|
@@ -70010,6 +70805,8 @@ export interface Routes {
|
|
|
70010
70805
|
acs_credential_id: string
|
|
70011
70806
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70012
70807
|
acs_user_id?: string | undefined
|
|
70808
|
+
/** 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. */
|
|
70809
|
+
user_identity_id?: string | undefined
|
|
70013
70810
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70014
70811
|
connected_account_id: string
|
|
70015
70812
|
acs_credential_pool_id?: string | undefined
|
|
@@ -72511,6 +73308,12 @@ export interface Routes {
|
|
|
72511
73308
|
available_fan_mode_settings?:
|
|
72512
73309
|
| Array<'auto' | 'on' | 'circulate'>
|
|
72513
73310
|
| undefined
|
|
73311
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
73312
|
+
available_climate_preset_modes?:
|
|
73313
|
+
| Array<
|
|
73314
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
73315
|
+
>
|
|
73316
|
+
| undefined
|
|
72514
73317
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
72515
73318
|
is_heating?: boolean | undefined
|
|
72516
73319
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -72537,6 +73340,22 @@ export interface Routes {
|
|
|
72537
73340
|
name?: ((string | null) | undefined) | undefined
|
|
72538
73341
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
72539
73342
|
display_name?: string | undefined
|
|
73343
|
+
/**
|
|
73344
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
73345
|
+
*/
|
|
73346
|
+
climate_preset_mode?:
|
|
73347
|
+
| (
|
|
73348
|
+
| (
|
|
73349
|
+
| 'home'
|
|
73350
|
+
| 'away'
|
|
73351
|
+
| 'wake'
|
|
73352
|
+
| 'sleep'
|
|
73353
|
+
| 'occupied'
|
|
73354
|
+
| 'unoccupied'
|
|
73355
|
+
)
|
|
73356
|
+
| undefined
|
|
73357
|
+
)
|
|
73358
|
+
| undefined
|
|
72540
73359
|
/** 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`. */
|
|
72541
73360
|
fan_mode_setting?:
|
|
72542
73361
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -72578,6 +73397,22 @@ export interface Routes {
|
|
|
72578
73397
|
name?: ((string | null) | undefined) | undefined
|
|
72579
73398
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
72580
73399
|
display_name?: string | undefined
|
|
73400
|
+
/**
|
|
73401
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
73402
|
+
*/
|
|
73403
|
+
climate_preset_mode?:
|
|
73404
|
+
| (
|
|
73405
|
+
| (
|
|
73406
|
+
| 'home'
|
|
73407
|
+
| 'away'
|
|
73408
|
+
| 'wake'
|
|
73409
|
+
| 'sleep'
|
|
73410
|
+
| 'occupied'
|
|
73411
|
+
| 'unoccupied'
|
|
73412
|
+
)
|
|
73413
|
+
| undefined
|
|
73414
|
+
)
|
|
73415
|
+
| undefined
|
|
72581
73416
|
/** 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`. */
|
|
72582
73417
|
fan_mode_setting?:
|
|
72583
73418
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -72618,6 +73453,19 @@ export interface Routes {
|
|
|
72618
73453
|
name?: (string | null) | undefined
|
|
72619
73454
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
72620
73455
|
display_name: string
|
|
73456
|
+
/**
|
|
73457
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
73458
|
+
*/
|
|
73459
|
+
climate_preset_mode?:
|
|
73460
|
+
| (
|
|
73461
|
+
| 'home'
|
|
73462
|
+
| 'away'
|
|
73463
|
+
| 'wake'
|
|
73464
|
+
| 'sleep'
|
|
73465
|
+
| 'occupied'
|
|
73466
|
+
| 'unoccupied'
|
|
73467
|
+
)
|
|
73468
|
+
| undefined
|
|
72621
73469
|
/** 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`. */
|
|
72622
73470
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
72623
73471
|
/** 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`. */
|
|
@@ -73861,6 +74709,12 @@ export interface Routes {
|
|
|
73861
74709
|
available_fan_mode_settings?:
|
|
73862
74710
|
| Array<'auto' | 'on' | 'circulate'>
|
|
73863
74711
|
| undefined
|
|
74712
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
74713
|
+
available_climate_preset_modes?:
|
|
74714
|
+
| Array<
|
|
74715
|
+
'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
|
|
74716
|
+
>
|
|
74717
|
+
| undefined
|
|
73864
74718
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
73865
74719
|
is_heating?: boolean | undefined
|
|
73866
74720
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -73887,6 +74741,22 @@ export interface Routes {
|
|
|
73887
74741
|
name?: ((string | null) | undefined) | undefined
|
|
73888
74742
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
73889
74743
|
display_name?: string | undefined
|
|
74744
|
+
/**
|
|
74745
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
74746
|
+
*/
|
|
74747
|
+
climate_preset_mode?:
|
|
74748
|
+
| (
|
|
74749
|
+
| (
|
|
74750
|
+
| 'home'
|
|
74751
|
+
| 'away'
|
|
74752
|
+
| 'wake'
|
|
74753
|
+
| 'sleep'
|
|
74754
|
+
| 'occupied'
|
|
74755
|
+
| 'unoccupied'
|
|
74756
|
+
)
|
|
74757
|
+
| undefined
|
|
74758
|
+
)
|
|
74759
|
+
| undefined
|
|
73890
74760
|
/** 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`. */
|
|
73891
74761
|
fan_mode_setting?:
|
|
73892
74762
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -73928,6 +74798,22 @@ export interface Routes {
|
|
|
73928
74798
|
name?: ((string | null) | undefined) | undefined
|
|
73929
74799
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
73930
74800
|
display_name?: string | undefined
|
|
74801
|
+
/**
|
|
74802
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
74803
|
+
*/
|
|
74804
|
+
climate_preset_mode?:
|
|
74805
|
+
| (
|
|
74806
|
+
| (
|
|
74807
|
+
| 'home'
|
|
74808
|
+
| 'away'
|
|
74809
|
+
| 'wake'
|
|
74810
|
+
| 'sleep'
|
|
74811
|
+
| 'occupied'
|
|
74812
|
+
| 'unoccupied'
|
|
74813
|
+
)
|
|
74814
|
+
| undefined
|
|
74815
|
+
)
|
|
74816
|
+
| undefined
|
|
73931
74817
|
/** 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`. */
|
|
73932
74818
|
fan_mode_setting?:
|
|
73933
74819
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -73968,6 +74854,19 @@ export interface Routes {
|
|
|
73968
74854
|
name?: (string | null) | undefined
|
|
73969
74855
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
73970
74856
|
display_name: string
|
|
74857
|
+
/**
|
|
74858
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
74859
|
+
*/
|
|
74860
|
+
climate_preset_mode?:
|
|
74861
|
+
| (
|
|
74862
|
+
| 'home'
|
|
74863
|
+
| 'away'
|
|
74864
|
+
| 'wake'
|
|
74865
|
+
| 'sleep'
|
|
74866
|
+
| 'occupied'
|
|
74867
|
+
| 'unoccupied'
|
|
74868
|
+
)
|
|
74869
|
+
| undefined
|
|
73971
74870
|
/** 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`. */
|
|
73972
74871
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
73973
74872
|
/** 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`. */
|
|
@@ -75347,6 +76246,8 @@ export interface Routes {
|
|
|
75347
76246
|
acs_credential_id: string
|
|
75348
76247
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75349
76248
|
acs_user_id?: string | undefined
|
|
76249
|
+
/** 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. */
|
|
76250
|
+
user_identity_id?: string | undefined
|
|
75350
76251
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75351
76252
|
connected_account_id: string
|
|
75352
76253
|
acs_credential_pool_id?: string | undefined
|
|
@@ -75504,6 +76405,8 @@ export interface Routes {
|
|
|
75504
76405
|
acs_credential_id: string
|
|
75505
76406
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75506
76407
|
acs_user_id?: string | undefined
|
|
76408
|
+
/** 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. */
|
|
76409
|
+
user_identity_id?: string | undefined
|
|
75507
76410
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75508
76411
|
connected_account_id: string
|
|
75509
76412
|
acs_credential_pool_id?: string | undefined
|
|
@@ -75723,6 +76626,8 @@ export interface Routes {
|
|
|
75723
76626
|
acs_credential_id: string
|
|
75724
76627
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75725
76628
|
acs_user_id?: string | undefined
|
|
76629
|
+
/** 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. */
|
|
76630
|
+
user_identity_id?: string | undefined
|
|
75726
76631
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75727
76632
|
connected_account_id: string
|
|
75728
76633
|
acs_credential_pool_id?: string | undefined
|
|
@@ -75878,6 +76783,8 @@ export interface Routes {
|
|
|
75878
76783
|
acs_credential_id: string
|
|
75879
76784
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75880
76785
|
acs_user_id?: string | undefined
|
|
76786
|
+
/** 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. */
|
|
76787
|
+
user_identity_id?: string | undefined
|
|
75881
76788
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75882
76789
|
connected_account_id: string
|
|
75883
76790
|
acs_credential_pool_id?: string | undefined
|