@seamapi/types 1.445.1 → 1.447.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 +100 -49
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +277 -182
- package/dist/devicedb.d.cts +24 -24
- package/dist/index.cjs +100 -49
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batches/batch.d.ts +39 -34
- package/lib/seam/connect/models/batches/spaces.d.ts +39 -34
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -18
- package/lib/seam/connect/models/devices/device.d.ts +26 -26
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -18
- package/lib/seam/connect/models/events/devices.d.ts +6 -6
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -3
- package/lib/seam/connect/models/spaces/space.d.ts +3 -0
- package/lib/seam/connect/models/spaces/space.js +4 -0
- package/lib/seam/connect/models/spaces/space.js.map +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/modes.d.ts +1 -1
- package/lib/seam/connect/models/thermostats/modes.js +7 -1
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +86 -38
- package/lib/seam/connect/openapi.js +92 -48
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +96 -60
- package/lib/seam/devicedb/models/device-model.d.ts +12 -12
- package/lib/seam/devicedb/route-specs.d.ts +12 -12
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +4 -0
- package/src/lib/seam/connect/models/spaces/space.ts +4 -0
- package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +96 -48
- package/src/lib/seam/connect/route-types.ts +193 -68
package/dist/connect.d.cts
CHANGED
|
@@ -3603,6 +3603,7 @@ type UnmanagedAccessCode = z.infer<typeof unmanaged_access_code>;
|
|
|
3603
3603
|
declare const access_grant: z.ZodObject<{
|
|
3604
3604
|
workspace_id: z.ZodString;
|
|
3605
3605
|
access_grant_id: z.ZodString;
|
|
3606
|
+
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
3606
3607
|
user_identity_id: z.ZodString;
|
|
3607
3608
|
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
3608
3609
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3645,6 +3646,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3645
3646
|
access_method_ids: string[];
|
|
3646
3647
|
starts_at?: string | undefined;
|
|
3647
3648
|
ends_at?: string | undefined;
|
|
3649
|
+
access_grant_key?: string | undefined;
|
|
3648
3650
|
instant_key_url?: string | undefined;
|
|
3649
3651
|
}, {
|
|
3650
3652
|
display_name: string;
|
|
@@ -3663,6 +3665,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3663
3665
|
access_method_ids: string[];
|
|
3664
3666
|
starts_at?: string | undefined;
|
|
3665
3667
|
ends_at?: string | undefined;
|
|
3668
|
+
access_grant_key?: string | undefined;
|
|
3666
3669
|
instant_key_url?: string | undefined;
|
|
3667
3670
|
}>;
|
|
3668
3671
|
type AccessGrant = z.infer<typeof access_grant>;
|
|
@@ -10124,6 +10127,7 @@ declare const batch: z.ZodObject<{
|
|
|
10124
10127
|
spaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10125
10128
|
space_id: z.ZodString;
|
|
10126
10129
|
workspace_id: z.ZodString;
|
|
10130
|
+
space_key: z.ZodOptional<z.ZodString>;
|
|
10127
10131
|
name: z.ZodString;
|
|
10128
10132
|
display_name: z.ZodString;
|
|
10129
10133
|
created_at: z.ZodString;
|
|
@@ -10137,6 +10141,7 @@ declare const batch: z.ZodObject<{
|
|
|
10137
10141
|
space_id: string;
|
|
10138
10142
|
device_count: number;
|
|
10139
10143
|
acs_entrance_count: number;
|
|
10144
|
+
space_key?: string | undefined;
|
|
10140
10145
|
}, {
|
|
10141
10146
|
name: string;
|
|
10142
10147
|
display_name: string;
|
|
@@ -10145,6 +10150,7 @@ declare const batch: z.ZodObject<{
|
|
|
10145
10150
|
space_id: string;
|
|
10146
10151
|
device_count: number;
|
|
10147
10152
|
acs_entrance_count: number;
|
|
10153
|
+
space_key?: string | undefined;
|
|
10148
10154
|
}>, "many">>;
|
|
10149
10155
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10150
10156
|
device_id: z.ZodString;
|
|
@@ -11646,7 +11652,7 @@ declare const batch: z.ZodObject<{
|
|
|
11646
11652
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
11647
11653
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
11648
11654
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
11649
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
11655
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>, "many">>;
|
|
11650
11656
|
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
11651
11657
|
available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
|
|
11652
11658
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11663,7 +11669,7 @@ declare const batch: z.ZodObject<{
|
|
|
11663
11669
|
display_name: z.ZodOptional<z.ZodString>;
|
|
11664
11670
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
11665
11671
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
11666
|
-
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
11672
|
+
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
|
|
11667
11673
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
11668
11674
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
11669
11675
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -11691,7 +11697,7 @@ declare const batch: z.ZodObject<{
|
|
|
11691
11697
|
display_name?: string | undefined;
|
|
11692
11698
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
11693
11699
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
11694
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
11700
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
11695
11701
|
cooling_set_point_celsius?: number | undefined;
|
|
11696
11702
|
heating_set_point_celsius?: number | undefined;
|
|
11697
11703
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -11711,7 +11717,7 @@ declare const batch: z.ZodObject<{
|
|
|
11711
11717
|
display_name?: string | undefined;
|
|
11712
11718
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
11713
11719
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
11714
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
11720
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
11715
11721
|
cooling_set_point_celsius?: number | undefined;
|
|
11716
11722
|
heating_set_point_celsius?: number | undefined;
|
|
11717
11723
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -11732,7 +11738,7 @@ declare const batch: z.ZodObject<{
|
|
|
11732
11738
|
display_name: z.ZodOptional<z.ZodString>;
|
|
11733
11739
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
11734
11740
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
11735
|
-
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
11741
|
+
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
|
|
11736
11742
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
11737
11743
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
11738
11744
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -11760,7 +11766,7 @@ declare const batch: z.ZodObject<{
|
|
|
11760
11766
|
display_name?: string | undefined;
|
|
11761
11767
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
11762
11768
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
11763
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
11769
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
11764
11770
|
cooling_set_point_celsius?: number | undefined;
|
|
11765
11771
|
heating_set_point_celsius?: number | undefined;
|
|
11766
11772
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -11780,7 +11786,7 @@ declare const batch: z.ZodObject<{
|
|
|
11780
11786
|
display_name?: string | undefined;
|
|
11781
11787
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
11782
11788
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
11783
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
11789
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
11784
11790
|
cooling_set_point_celsius?: number | undefined;
|
|
11785
11791
|
heating_set_point_celsius?: number | undefined;
|
|
11786
11792
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -11801,7 +11807,7 @@ declare const batch: z.ZodObject<{
|
|
|
11801
11807
|
display_name: z.ZodString;
|
|
11802
11808
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
11803
11809
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
11804
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
11810
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>;
|
|
11805
11811
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
11806
11812
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
11807
11813
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11830,7 +11836,7 @@ declare const batch: z.ZodObject<{
|
|
|
11830
11836
|
name?: string | null | undefined;
|
|
11831
11837
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
11832
11838
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
11833
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
11839
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
11834
11840
|
cooling_set_point_celsius?: number | undefined;
|
|
11835
11841
|
heating_set_point_celsius?: number | undefined;
|
|
11836
11842
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -11850,7 +11856,7 @@ declare const batch: z.ZodObject<{
|
|
|
11850
11856
|
name?: string | null | undefined;
|
|
11851
11857
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
11852
11858
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
11853
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
11859
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
11854
11860
|
cooling_set_point_celsius?: number | undefined;
|
|
11855
11861
|
heating_set_point_celsius?: number | undefined;
|
|
11856
11862
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -12011,7 +12017,7 @@ declare const batch: z.ZodObject<{
|
|
|
12011
12017
|
temperature_fahrenheit?: number | undefined;
|
|
12012
12018
|
temperature_celsius?: number | undefined;
|
|
12013
12019
|
relative_humidity?: number | undefined;
|
|
12014
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
12020
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
12015
12021
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
12016
12022
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
12017
12023
|
is_heating?: boolean | undefined;
|
|
@@ -12027,7 +12033,7 @@ declare const batch: z.ZodObject<{
|
|
|
12027
12033
|
display_name?: string | undefined;
|
|
12028
12034
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
12029
12035
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
12030
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
12036
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
12031
12037
|
cooling_set_point_celsius?: number | undefined;
|
|
12032
12038
|
heating_set_point_celsius?: number | undefined;
|
|
12033
12039
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -12048,7 +12054,7 @@ declare const batch: z.ZodObject<{
|
|
|
12048
12054
|
display_name?: string | undefined;
|
|
12049
12055
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
12050
12056
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
12051
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
12057
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
12052
12058
|
cooling_set_point_celsius?: number | undefined;
|
|
12053
12059
|
heating_set_point_celsius?: number | undefined;
|
|
12054
12060
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -12070,7 +12076,7 @@ declare const batch: z.ZodObject<{
|
|
|
12070
12076
|
name?: string | null | undefined;
|
|
12071
12077
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
12072
12078
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
12073
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
12079
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
12074
12080
|
cooling_set_point_celsius?: number | undefined;
|
|
12075
12081
|
heating_set_point_celsius?: number | undefined;
|
|
12076
12082
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -12141,7 +12147,7 @@ declare const batch: z.ZodObject<{
|
|
|
12141
12147
|
temperature_fahrenheit?: number | undefined;
|
|
12142
12148
|
temperature_celsius?: number | undefined;
|
|
12143
12149
|
relative_humidity?: number | undefined;
|
|
12144
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
12150
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
12145
12151
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
12146
12152
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
12147
12153
|
is_heating?: boolean | undefined;
|
|
@@ -12157,7 +12163,7 @@ declare const batch: z.ZodObject<{
|
|
|
12157
12163
|
display_name?: string | undefined;
|
|
12158
12164
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
12159
12165
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
12160
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
12166
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
12161
12167
|
cooling_set_point_celsius?: number | undefined;
|
|
12162
12168
|
heating_set_point_celsius?: number | undefined;
|
|
12163
12169
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -12178,7 +12184,7 @@ declare const batch: z.ZodObject<{
|
|
|
12178
12184
|
display_name?: string | undefined;
|
|
12179
12185
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
12180
12186
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
12181
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
12187
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
12182
12188
|
cooling_set_point_celsius?: number | undefined;
|
|
12183
12189
|
heating_set_point_celsius?: number | undefined;
|
|
12184
12190
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -12200,7 +12206,7 @@ declare const batch: z.ZodObject<{
|
|
|
12200
12206
|
name?: string | null | undefined;
|
|
12201
12207
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
12202
12208
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
12203
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
12209
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
12204
12210
|
cooling_set_point_celsius?: number | undefined;
|
|
12205
12211
|
heating_set_point_celsius?: number | undefined;
|
|
12206
12212
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -13377,7 +13383,7 @@ declare const batch: z.ZodObject<{
|
|
|
13377
13383
|
temperature_fahrenheit?: number | undefined;
|
|
13378
13384
|
temperature_celsius?: number | undefined;
|
|
13379
13385
|
relative_humidity?: number | undefined;
|
|
13380
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
13386
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
13381
13387
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
13382
13388
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
13383
13389
|
is_heating?: boolean | undefined;
|
|
@@ -13393,7 +13399,7 @@ declare const batch: z.ZodObject<{
|
|
|
13393
13399
|
display_name?: string | undefined;
|
|
13394
13400
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
13395
13401
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
13396
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
13402
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
13397
13403
|
cooling_set_point_celsius?: number | undefined;
|
|
13398
13404
|
heating_set_point_celsius?: number | undefined;
|
|
13399
13405
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -13414,7 +13420,7 @@ declare const batch: z.ZodObject<{
|
|
|
13414
13420
|
display_name?: string | undefined;
|
|
13415
13421
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
13416
13422
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
13417
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
13423
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
13418
13424
|
cooling_set_point_celsius?: number | undefined;
|
|
13419
13425
|
heating_set_point_celsius?: number | undefined;
|
|
13420
13426
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -13436,7 +13442,7 @@ declare const batch: z.ZodObject<{
|
|
|
13436
13442
|
name?: string | null | undefined;
|
|
13437
13443
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
13438
13444
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
13439
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
13445
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
13440
13446
|
cooling_set_point_celsius?: number | undefined;
|
|
13441
13447
|
heating_set_point_celsius?: number | undefined;
|
|
13442
13448
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -14012,7 +14018,7 @@ declare const batch: z.ZodObject<{
|
|
|
14012
14018
|
temperature_fahrenheit?: number | undefined;
|
|
14013
14019
|
temperature_celsius?: number | undefined;
|
|
14014
14020
|
relative_humidity?: number | undefined;
|
|
14015
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
14021
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
14016
14022
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
14017
14023
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
14018
14024
|
is_heating?: boolean | undefined;
|
|
@@ -14028,7 +14034,7 @@ declare const batch: z.ZodObject<{
|
|
|
14028
14034
|
display_name?: string | undefined;
|
|
14029
14035
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
14030
14036
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
14031
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
14037
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
14032
14038
|
cooling_set_point_celsius?: number | undefined;
|
|
14033
14039
|
heating_set_point_celsius?: number | undefined;
|
|
14034
14040
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -14049,7 +14055,7 @@ declare const batch: z.ZodObject<{
|
|
|
14049
14055
|
display_name?: string | undefined;
|
|
14050
14056
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
14051
14057
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
14052
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
14058
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
14053
14059
|
cooling_set_point_celsius?: number | undefined;
|
|
14054
14060
|
heating_set_point_celsius?: number | undefined;
|
|
14055
14061
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -14071,7 +14077,7 @@ declare const batch: z.ZodObject<{
|
|
|
14071
14077
|
name?: string | null | undefined;
|
|
14072
14078
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
14073
14079
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
14074
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
14080
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
14075
14081
|
cooling_set_point_celsius?: number | undefined;
|
|
14076
14082
|
heating_set_point_celsius?: number | undefined;
|
|
14077
14083
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -14403,6 +14409,7 @@ declare const batch: z.ZodObject<{
|
|
|
14403
14409
|
space_id: string;
|
|
14404
14410
|
device_count: number;
|
|
14405
14411
|
acs_entrance_count: number;
|
|
14412
|
+
space_key?: string | undefined;
|
|
14406
14413
|
}[] | undefined;
|
|
14407
14414
|
devices?: {
|
|
14408
14415
|
display_name: string;
|
|
@@ -14895,7 +14902,7 @@ declare const batch: z.ZodObject<{
|
|
|
14895
14902
|
temperature_fahrenheit?: number | undefined;
|
|
14896
14903
|
temperature_celsius?: number | undefined;
|
|
14897
14904
|
relative_humidity?: number | undefined;
|
|
14898
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
14905
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
14899
14906
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
14900
14907
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
14901
14908
|
is_heating?: boolean | undefined;
|
|
@@ -14911,7 +14918,7 @@ declare const batch: z.ZodObject<{
|
|
|
14911
14918
|
display_name?: string | undefined;
|
|
14912
14919
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
14913
14920
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
14914
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
14921
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
14915
14922
|
cooling_set_point_celsius?: number | undefined;
|
|
14916
14923
|
heating_set_point_celsius?: number | undefined;
|
|
14917
14924
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -14932,7 +14939,7 @@ declare const batch: z.ZodObject<{
|
|
|
14932
14939
|
display_name?: string | undefined;
|
|
14933
14940
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
14934
14941
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
14935
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
14942
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
14936
14943
|
cooling_set_point_celsius?: number | undefined;
|
|
14937
14944
|
heating_set_point_celsius?: number | undefined;
|
|
14938
14945
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -14954,7 +14961,7 @@ declare const batch: z.ZodObject<{
|
|
|
14954
14961
|
name?: string | null | undefined;
|
|
14955
14962
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
14956
14963
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
14957
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
14964
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
14958
14965
|
cooling_set_point_celsius?: number | undefined;
|
|
14959
14966
|
heating_set_point_celsius?: number | undefined;
|
|
14960
14967
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -15103,6 +15110,7 @@ declare const batch: z.ZodObject<{
|
|
|
15103
15110
|
space_id: string;
|
|
15104
15111
|
device_count: number;
|
|
15105
15112
|
acs_entrance_count: number;
|
|
15113
|
+
space_key?: string | undefined;
|
|
15106
15114
|
}[] | undefined;
|
|
15107
15115
|
devices?: {
|
|
15108
15116
|
display_name: string;
|
|
@@ -15595,7 +15603,7 @@ declare const batch: z.ZodObject<{
|
|
|
15595
15603
|
temperature_fahrenheit?: number | undefined;
|
|
15596
15604
|
temperature_celsius?: number | undefined;
|
|
15597
15605
|
relative_humidity?: number | undefined;
|
|
15598
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
15606
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
15599
15607
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
15600
15608
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
15601
15609
|
is_heating?: boolean | undefined;
|
|
@@ -15611,7 +15619,7 @@ declare const batch: z.ZodObject<{
|
|
|
15611
15619
|
display_name?: string | undefined;
|
|
15612
15620
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
15613
15621
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
15614
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
15622
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
15615
15623
|
cooling_set_point_celsius?: number | undefined;
|
|
15616
15624
|
heating_set_point_celsius?: number | undefined;
|
|
15617
15625
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -15632,7 +15640,7 @@ declare const batch: z.ZodObject<{
|
|
|
15632
15640
|
display_name?: string | undefined;
|
|
15633
15641
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
15634
15642
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
15635
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
15643
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
15636
15644
|
cooling_set_point_celsius?: number | undefined;
|
|
15637
15645
|
heating_set_point_celsius?: number | undefined;
|
|
15638
15646
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -15654,7 +15662,7 @@ declare const batch: z.ZodObject<{
|
|
|
15654
15662
|
name?: string | null | undefined;
|
|
15655
15663
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
15656
15664
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
15657
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
15665
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
15658
15666
|
cooling_set_point_celsius?: number | undefined;
|
|
15659
15667
|
heating_set_point_celsius?: number | undefined;
|
|
15660
15668
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -18606,7 +18614,7 @@ declare const device: z.ZodObject<{
|
|
|
18606
18614
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
18607
18615
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
18608
18616
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
18609
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
18617
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>, "many">>;
|
|
18610
18618
|
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
18611
18619
|
available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
|
|
18612
18620
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18623,7 +18631,7 @@ declare const device: z.ZodObject<{
|
|
|
18623
18631
|
display_name: z.ZodOptional<z.ZodString>;
|
|
18624
18632
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
18625
18633
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
18626
|
-
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
18634
|
+
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
|
|
18627
18635
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
18628
18636
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
18629
18637
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -18651,7 +18659,7 @@ declare const device: z.ZodObject<{
|
|
|
18651
18659
|
display_name?: string | undefined;
|
|
18652
18660
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
18653
18661
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
18654
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
18662
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
18655
18663
|
cooling_set_point_celsius?: number | undefined;
|
|
18656
18664
|
heating_set_point_celsius?: number | undefined;
|
|
18657
18665
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -18671,7 +18679,7 @@ declare const device: z.ZodObject<{
|
|
|
18671
18679
|
display_name?: string | undefined;
|
|
18672
18680
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
18673
18681
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
18674
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
18682
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
18675
18683
|
cooling_set_point_celsius?: number | undefined;
|
|
18676
18684
|
heating_set_point_celsius?: number | undefined;
|
|
18677
18685
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -18692,7 +18700,7 @@ declare const device: z.ZodObject<{
|
|
|
18692
18700
|
display_name: z.ZodOptional<z.ZodString>;
|
|
18693
18701
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
18694
18702
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
18695
|
-
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
18703
|
+
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
|
|
18696
18704
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
18697
18705
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
18698
18706
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -18720,7 +18728,7 @@ declare const device: z.ZodObject<{
|
|
|
18720
18728
|
display_name?: string | undefined;
|
|
18721
18729
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
18722
18730
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
18723
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
18731
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
18724
18732
|
cooling_set_point_celsius?: number | undefined;
|
|
18725
18733
|
heating_set_point_celsius?: number | undefined;
|
|
18726
18734
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -18740,7 +18748,7 @@ declare const device: z.ZodObject<{
|
|
|
18740
18748
|
display_name?: string | undefined;
|
|
18741
18749
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
18742
18750
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
18743
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
18751
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
18744
18752
|
cooling_set_point_celsius?: number | undefined;
|
|
18745
18753
|
heating_set_point_celsius?: number | undefined;
|
|
18746
18754
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -18761,7 +18769,7 @@ declare const device: z.ZodObject<{
|
|
|
18761
18769
|
display_name: z.ZodString;
|
|
18762
18770
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
18763
18771
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
18764
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
18772
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>;
|
|
18765
18773
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
18766
18774
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
18767
18775
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -18790,7 +18798,7 @@ declare const device: z.ZodObject<{
|
|
|
18790
18798
|
name?: string | null | undefined;
|
|
18791
18799
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
18792
18800
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
18793
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
18801
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
18794
18802
|
cooling_set_point_celsius?: number | undefined;
|
|
18795
18803
|
heating_set_point_celsius?: number | undefined;
|
|
18796
18804
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -18810,7 +18818,7 @@ declare const device: z.ZodObject<{
|
|
|
18810
18818
|
name?: string | null | undefined;
|
|
18811
18819
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
18812
18820
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
18813
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
18821
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
18814
18822
|
cooling_set_point_celsius?: number | undefined;
|
|
18815
18823
|
heating_set_point_celsius?: number | undefined;
|
|
18816
18824
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -18971,7 +18979,7 @@ declare const device: z.ZodObject<{
|
|
|
18971
18979
|
temperature_fahrenheit?: number | undefined;
|
|
18972
18980
|
temperature_celsius?: number | undefined;
|
|
18973
18981
|
relative_humidity?: number | undefined;
|
|
18974
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
18982
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
18975
18983
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
18976
18984
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
18977
18985
|
is_heating?: boolean | undefined;
|
|
@@ -18987,7 +18995,7 @@ declare const device: z.ZodObject<{
|
|
|
18987
18995
|
display_name?: string | undefined;
|
|
18988
18996
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
18989
18997
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
18990
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
18998
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
18991
18999
|
cooling_set_point_celsius?: number | undefined;
|
|
18992
19000
|
heating_set_point_celsius?: number | undefined;
|
|
18993
19001
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -19008,7 +19016,7 @@ declare const device: z.ZodObject<{
|
|
|
19008
19016
|
display_name?: string | undefined;
|
|
19009
19017
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
19010
19018
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
19011
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
19019
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
19012
19020
|
cooling_set_point_celsius?: number | undefined;
|
|
19013
19021
|
heating_set_point_celsius?: number | undefined;
|
|
19014
19022
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -19030,7 +19038,7 @@ declare const device: z.ZodObject<{
|
|
|
19030
19038
|
name?: string | null | undefined;
|
|
19031
19039
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
19032
19040
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
19033
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
19041
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
19034
19042
|
cooling_set_point_celsius?: number | undefined;
|
|
19035
19043
|
heating_set_point_celsius?: number | undefined;
|
|
19036
19044
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -19101,7 +19109,7 @@ declare const device: z.ZodObject<{
|
|
|
19101
19109
|
temperature_fahrenheit?: number | undefined;
|
|
19102
19110
|
temperature_celsius?: number | undefined;
|
|
19103
19111
|
relative_humidity?: number | undefined;
|
|
19104
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
19112
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
19105
19113
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
19106
19114
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
19107
19115
|
is_heating?: boolean | undefined;
|
|
@@ -19117,7 +19125,7 @@ declare const device: z.ZodObject<{
|
|
|
19117
19125
|
display_name?: string | undefined;
|
|
19118
19126
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
19119
19127
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
19120
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
19128
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
19121
19129
|
cooling_set_point_celsius?: number | undefined;
|
|
19122
19130
|
heating_set_point_celsius?: number | undefined;
|
|
19123
19131
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -19138,7 +19146,7 @@ declare const device: z.ZodObject<{
|
|
|
19138
19146
|
display_name?: string | undefined;
|
|
19139
19147
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
19140
19148
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
19141
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
19149
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
19142
19150
|
cooling_set_point_celsius?: number | undefined;
|
|
19143
19151
|
heating_set_point_celsius?: number | undefined;
|
|
19144
19152
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -19160,7 +19168,7 @@ declare const device: z.ZodObject<{
|
|
|
19160
19168
|
name?: string | null | undefined;
|
|
19161
19169
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
19162
19170
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
19163
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
19171
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
19164
19172
|
cooling_set_point_celsius?: number | undefined;
|
|
19165
19173
|
heating_set_point_celsius?: number | undefined;
|
|
19166
19174
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -20337,7 +20345,7 @@ declare const device: z.ZodObject<{
|
|
|
20337
20345
|
temperature_fahrenheit?: number | undefined;
|
|
20338
20346
|
temperature_celsius?: number | undefined;
|
|
20339
20347
|
relative_humidity?: number | undefined;
|
|
20340
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
20348
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
20341
20349
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
20342
20350
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
20343
20351
|
is_heating?: boolean | undefined;
|
|
@@ -20353,7 +20361,7 @@ declare const device: z.ZodObject<{
|
|
|
20353
20361
|
display_name?: string | undefined;
|
|
20354
20362
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
20355
20363
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
20356
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
20364
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
20357
20365
|
cooling_set_point_celsius?: number | undefined;
|
|
20358
20366
|
heating_set_point_celsius?: number | undefined;
|
|
20359
20367
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -20374,7 +20382,7 @@ declare const device: z.ZodObject<{
|
|
|
20374
20382
|
display_name?: string | undefined;
|
|
20375
20383
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
20376
20384
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
20377
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
20385
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
20378
20386
|
cooling_set_point_celsius?: number | undefined;
|
|
20379
20387
|
heating_set_point_celsius?: number | undefined;
|
|
20380
20388
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -20396,7 +20404,7 @@ declare const device: z.ZodObject<{
|
|
|
20396
20404
|
name?: string | null | undefined;
|
|
20397
20405
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
20398
20406
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
20399
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
20407
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
20400
20408
|
cooling_set_point_celsius?: number | undefined;
|
|
20401
20409
|
heating_set_point_celsius?: number | undefined;
|
|
20402
20410
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -20972,7 +20980,7 @@ declare const device: z.ZodObject<{
|
|
|
20972
20980
|
temperature_fahrenheit?: number | undefined;
|
|
20973
20981
|
temperature_celsius?: number | undefined;
|
|
20974
20982
|
relative_humidity?: number | undefined;
|
|
20975
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
20983
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
20976
20984
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
20977
20985
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
20978
20986
|
is_heating?: boolean | undefined;
|
|
@@ -20988,7 +20996,7 @@ declare const device: z.ZodObject<{
|
|
|
20988
20996
|
display_name?: string | undefined;
|
|
20989
20997
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
20990
20998
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
20991
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
20999
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
20992
21000
|
cooling_set_point_celsius?: number | undefined;
|
|
20993
21001
|
heating_set_point_celsius?: number | undefined;
|
|
20994
21002
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -21009,7 +21017,7 @@ declare const device: z.ZodObject<{
|
|
|
21009
21017
|
display_name?: string | undefined;
|
|
21010
21018
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
21011
21019
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
21012
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
21020
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
21013
21021
|
cooling_set_point_celsius?: number | undefined;
|
|
21014
21022
|
heating_set_point_celsius?: number | undefined;
|
|
21015
21023
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -21031,7 +21039,7 @@ declare const device: z.ZodObject<{
|
|
|
21031
21039
|
name?: string | null | undefined;
|
|
21032
21040
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
21033
21041
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
21034
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
21042
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
21035
21043
|
cooling_set_point_celsius?: number | undefined;
|
|
21036
21044
|
heating_set_point_celsius?: number | undefined;
|
|
21037
21045
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -22725,7 +22733,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22725
22733
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
22726
22734
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
22727
22735
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
22728
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
22736
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>, "many">>;
|
|
22729
22737
|
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
22730
22738
|
available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
|
|
22731
22739
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22742,7 +22750,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22742
22750
|
display_name: z.ZodOptional<z.ZodString>;
|
|
22743
22751
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
22744
22752
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
22745
|
-
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
22753
|
+
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
|
|
22746
22754
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22747
22755
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22748
22756
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -22770,7 +22778,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22770
22778
|
display_name?: string | undefined;
|
|
22771
22779
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
22772
22780
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
22773
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
22781
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
22774
22782
|
cooling_set_point_celsius?: number | undefined;
|
|
22775
22783
|
heating_set_point_celsius?: number | undefined;
|
|
22776
22784
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -22790,7 +22798,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22790
22798
|
display_name?: string | undefined;
|
|
22791
22799
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
22792
22800
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
22793
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
22801
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
22794
22802
|
cooling_set_point_celsius?: number | undefined;
|
|
22795
22803
|
heating_set_point_celsius?: number | undefined;
|
|
22796
22804
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -22811,7 +22819,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22811
22819
|
display_name: z.ZodOptional<z.ZodString>;
|
|
22812
22820
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
22813
22821
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
22814
|
-
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
22822
|
+
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
|
|
22815
22823
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22816
22824
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22817
22825
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -22839,7 +22847,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22839
22847
|
display_name?: string | undefined;
|
|
22840
22848
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
22841
22849
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
22842
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
22850
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
22843
22851
|
cooling_set_point_celsius?: number | undefined;
|
|
22844
22852
|
heating_set_point_celsius?: number | undefined;
|
|
22845
22853
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -22859,7 +22867,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22859
22867
|
display_name?: string | undefined;
|
|
22860
22868
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
22861
22869
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
22862
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
22870
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
22863
22871
|
cooling_set_point_celsius?: number | undefined;
|
|
22864
22872
|
heating_set_point_celsius?: number | undefined;
|
|
22865
22873
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -22880,7 +22888,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22880
22888
|
display_name: z.ZodString;
|
|
22881
22889
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
22882
22890
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
22883
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
22891
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>;
|
|
22884
22892
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
22885
22893
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
22886
22894
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22909,7 +22917,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22909
22917
|
name?: string | null | undefined;
|
|
22910
22918
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
22911
22919
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
22912
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
22920
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
22913
22921
|
cooling_set_point_celsius?: number | undefined;
|
|
22914
22922
|
heating_set_point_celsius?: number | undefined;
|
|
22915
22923
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -22929,7 +22937,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22929
22937
|
name?: string | null | undefined;
|
|
22930
22938
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
22931
22939
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
22932
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
22940
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
22933
22941
|
cooling_set_point_celsius?: number | undefined;
|
|
22934
22942
|
heating_set_point_celsius?: number | undefined;
|
|
22935
22943
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -23090,7 +23098,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23090
23098
|
temperature_fahrenheit?: number | undefined;
|
|
23091
23099
|
temperature_celsius?: number | undefined;
|
|
23092
23100
|
relative_humidity?: number | undefined;
|
|
23093
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
23101
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
23094
23102
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
23095
23103
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
23096
23104
|
is_heating?: boolean | undefined;
|
|
@@ -23106,7 +23114,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23106
23114
|
display_name?: string | undefined;
|
|
23107
23115
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
23108
23116
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
23109
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
23117
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
23110
23118
|
cooling_set_point_celsius?: number | undefined;
|
|
23111
23119
|
heating_set_point_celsius?: number | undefined;
|
|
23112
23120
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -23127,7 +23135,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23127
23135
|
display_name?: string | undefined;
|
|
23128
23136
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
23129
23137
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
23130
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
23138
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
23131
23139
|
cooling_set_point_celsius?: number | undefined;
|
|
23132
23140
|
heating_set_point_celsius?: number | undefined;
|
|
23133
23141
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -23149,7 +23157,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23149
23157
|
name?: string | null | undefined;
|
|
23150
23158
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
23151
23159
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
23152
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
23160
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
23153
23161
|
cooling_set_point_celsius?: number | undefined;
|
|
23154
23162
|
heating_set_point_celsius?: number | undefined;
|
|
23155
23163
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -23220,7 +23228,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23220
23228
|
temperature_fahrenheit?: number | undefined;
|
|
23221
23229
|
temperature_celsius?: number | undefined;
|
|
23222
23230
|
relative_humidity?: number | undefined;
|
|
23223
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
23231
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
|
|
23224
23232
|
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
23225
23233
|
available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
|
|
23226
23234
|
is_heating?: boolean | undefined;
|
|
@@ -23236,7 +23244,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23236
23244
|
display_name?: string | undefined;
|
|
23237
23245
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
23238
23246
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
23239
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
23247
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
23240
23248
|
cooling_set_point_celsius?: number | undefined;
|
|
23241
23249
|
heating_set_point_celsius?: number | undefined;
|
|
23242
23250
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -23257,7 +23265,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23257
23265
|
display_name?: string | undefined;
|
|
23258
23266
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
23259
23267
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
23260
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
23268
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
23261
23269
|
cooling_set_point_celsius?: number | undefined;
|
|
23262
23270
|
heating_set_point_celsius?: number | undefined;
|
|
23263
23271
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -23279,7 +23287,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23279
23287
|
name?: string | null | undefined;
|
|
23280
23288
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
23281
23289
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
23282
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
23290
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
23283
23291
|
cooling_set_point_celsius?: number | undefined;
|
|
23284
23292
|
heating_set_point_celsius?: number | undefined;
|
|
23285
23293
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -27162,7 +27170,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
27162
27170
|
display_name: z.ZodOptional<z.ZodString>;
|
|
27163
27171
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
27164
27172
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
27165
|
-
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
27173
|
+
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
|
|
27166
27174
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
27167
27175
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
27168
27176
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -27191,7 +27199,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
27191
27199
|
occurred_at: string;
|
|
27192
27200
|
event_type: "thermostat.manually_adjusted";
|
|
27193
27201
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
27194
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
27202
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
27195
27203
|
cooling_set_point_celsius?: number | undefined;
|
|
27196
27204
|
heating_set_point_celsius?: number | undefined;
|
|
27197
27205
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -27208,7 +27216,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
27208
27216
|
occurred_at: string;
|
|
27209
27217
|
event_type: "thermostat.manually_adjusted";
|
|
27210
27218
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
27211
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
27219
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
27212
27220
|
cooling_set_point_celsius?: number | undefined;
|
|
27213
27221
|
heating_set_point_celsius?: number | undefined;
|
|
27214
27222
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -27583,6 +27591,7 @@ type MagicLink = z.infer<typeof magic_link>;
|
|
|
27583
27591
|
declare const space: z.ZodObject<{
|
|
27584
27592
|
space_id: z.ZodString;
|
|
27585
27593
|
workspace_id: z.ZodString;
|
|
27594
|
+
space_key: z.ZodOptional<z.ZodString>;
|
|
27586
27595
|
name: z.ZodString;
|
|
27587
27596
|
display_name: z.ZodString;
|
|
27588
27597
|
created_at: z.ZodString;
|
|
@@ -27596,6 +27605,7 @@ declare const space: z.ZodObject<{
|
|
|
27596
27605
|
space_id: string;
|
|
27597
27606
|
device_count: number;
|
|
27598
27607
|
acs_entrance_count: number;
|
|
27608
|
+
space_key?: string | undefined;
|
|
27599
27609
|
}, {
|
|
27600
27610
|
name: string;
|
|
27601
27611
|
display_name: string;
|
|
@@ -27604,6 +27614,7 @@ declare const space: z.ZodObject<{
|
|
|
27604
27614
|
space_id: string;
|
|
27605
27615
|
device_count: number;
|
|
27606
27616
|
acs_entrance_count: number;
|
|
27617
|
+
space_key?: string | undefined;
|
|
27607
27618
|
}>;
|
|
27608
27619
|
type Space = z.infer<typeof space>;
|
|
27609
27620
|
|
|
@@ -27616,7 +27627,7 @@ declare const climate_preset: z.ZodObject<{
|
|
|
27616
27627
|
display_name: z.ZodString;
|
|
27617
27628
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
27618
27629
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
27619
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
27630
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>;
|
|
27620
27631
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
27621
27632
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
27622
27633
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -27645,7 +27656,7 @@ declare const climate_preset: z.ZodObject<{
|
|
|
27645
27656
|
name?: string | null | undefined;
|
|
27646
27657
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
27647
27658
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
27648
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
27659
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
27649
27660
|
cooling_set_point_celsius?: number | undefined;
|
|
27650
27661
|
heating_set_point_celsius?: number | undefined;
|
|
27651
27662
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -27665,7 +27676,7 @@ declare const climate_preset: z.ZodObject<{
|
|
|
27665
27676
|
name?: string | null | undefined;
|
|
27666
27677
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
27667
27678
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
27668
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
27679
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
27669
27680
|
cooling_set_point_celsius?: number | undefined;
|
|
27670
27681
|
heating_set_point_celsius?: number | undefined;
|
|
27671
27682
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -28410,6 +28421,10 @@ declare const _default: {
|
|
|
28410
28421
|
format: string;
|
|
28411
28422
|
type: string;
|
|
28412
28423
|
};
|
|
28424
|
+
access_grant_key: {
|
|
28425
|
+
description: string;
|
|
28426
|
+
type: string;
|
|
28427
|
+
};
|
|
28413
28428
|
access_method_ids: {
|
|
28414
28429
|
description: string;
|
|
28415
28430
|
items: {
|
|
@@ -39107,6 +39122,10 @@ declare const _default: {
|
|
|
39107
39122
|
format: string;
|
|
39108
39123
|
type: string;
|
|
39109
39124
|
};
|
|
39125
|
+
space_key: {
|
|
39126
|
+
description: string;
|
|
39127
|
+
type: string;
|
|
39128
|
+
};
|
|
39110
39129
|
workspace_id: {
|
|
39111
39130
|
description: string;
|
|
39112
39131
|
format: string;
|
|
@@ -44333,6 +44352,10 @@ declare const _default: {
|
|
|
44333
44352
|
type?: never;
|
|
44334
44353
|
} | {
|
|
44335
44354
|
properties: {
|
|
44355
|
+
access_grant_key: {
|
|
44356
|
+
description: string;
|
|
44357
|
+
type: string;
|
|
44358
|
+
};
|
|
44336
44359
|
acs_entrance_ids: {
|
|
44337
44360
|
default: never[];
|
|
44338
44361
|
description: string;
|
|
@@ -44632,16 +44655,6 @@ declare const _default: {
|
|
|
44632
44655
|
get: {
|
|
44633
44656
|
description: string;
|
|
44634
44657
|
operationId: string;
|
|
44635
|
-
parameters: {
|
|
44636
|
-
in: string;
|
|
44637
|
-
name: string;
|
|
44638
|
-
required: boolean;
|
|
44639
|
-
schema: {
|
|
44640
|
-
description: string;
|
|
44641
|
-
format: string;
|
|
44642
|
-
type: string;
|
|
44643
|
-
};
|
|
44644
|
-
}[];
|
|
44645
44658
|
responses: {
|
|
44646
44659
|
200: {
|
|
44647
44660
|
content: {
|
|
@@ -44706,15 +44719,28 @@ declare const _default: {
|
|
|
44706
44719
|
content: {
|
|
44707
44720
|
'application/json': {
|
|
44708
44721
|
schema: {
|
|
44709
|
-
|
|
44710
|
-
|
|
44711
|
-
|
|
44712
|
-
|
|
44713
|
-
|
|
44722
|
+
oneOf: ({
|
|
44723
|
+
properties: {
|
|
44724
|
+
access_grant_id: {
|
|
44725
|
+
description: string;
|
|
44726
|
+
format: string;
|
|
44727
|
+
type: string;
|
|
44728
|
+
};
|
|
44729
|
+
access_grant_key?: never;
|
|
44714
44730
|
};
|
|
44715
|
-
|
|
44716
|
-
|
|
44717
|
-
|
|
44731
|
+
required: string[];
|
|
44732
|
+
type: string;
|
|
44733
|
+
} | {
|
|
44734
|
+
properties: {
|
|
44735
|
+
access_grant_key: {
|
|
44736
|
+
description: string;
|
|
44737
|
+
type: string;
|
|
44738
|
+
};
|
|
44739
|
+
access_grant_id?: never;
|
|
44740
|
+
};
|
|
44741
|
+
required: string[];
|
|
44742
|
+
type: string;
|
|
44743
|
+
})[];
|
|
44718
44744
|
};
|
|
44719
44745
|
};
|
|
44720
44746
|
};
|
|
@@ -44801,6 +44827,16 @@ declare const _default: {
|
|
|
44801
44827
|
'x-deprecated': string;
|
|
44802
44828
|
description?: never;
|
|
44803
44829
|
};
|
|
44830
|
+
} | {
|
|
44831
|
+
in: string;
|
|
44832
|
+
name: string;
|
|
44833
|
+
schema: {
|
|
44834
|
+
description: string;
|
|
44835
|
+
type: string;
|
|
44836
|
+
format?: never;
|
|
44837
|
+
deprecated?: never;
|
|
44838
|
+
'x-deprecated'?: never;
|
|
44839
|
+
};
|
|
44804
44840
|
})[];
|
|
44805
44841
|
responses: {
|
|
44806
44842
|
200: {
|
|
@@ -44870,6 +44906,10 @@ declare const _default: {
|
|
|
44870
44906
|
'application/json': {
|
|
44871
44907
|
schema: {
|
|
44872
44908
|
properties: {
|
|
44909
|
+
access_grant_key: {
|
|
44910
|
+
description: string;
|
|
44911
|
+
type: string;
|
|
44912
|
+
};
|
|
44873
44913
|
acs_entrance_id: {
|
|
44874
44914
|
description: string;
|
|
44875
44915
|
format: string;
|
|
@@ -65555,6 +65595,10 @@ declare const _default: {
|
|
|
65555
65595
|
description: string;
|
|
65556
65596
|
type: string;
|
|
65557
65597
|
};
|
|
65598
|
+
space_key: {
|
|
65599
|
+
description: string;
|
|
65600
|
+
type: string;
|
|
65601
|
+
};
|
|
65558
65602
|
};
|
|
65559
65603
|
required: string[];
|
|
65560
65604
|
type: string;
|
|
@@ -65748,16 +65792,6 @@ declare const _default: {
|
|
|
65748
65792
|
get: {
|
|
65749
65793
|
description: string;
|
|
65750
65794
|
operationId: string;
|
|
65751
|
-
parameters: {
|
|
65752
|
-
in: string;
|
|
65753
|
-
name: string;
|
|
65754
|
-
required: boolean;
|
|
65755
|
-
schema: {
|
|
65756
|
-
description: string;
|
|
65757
|
-
format: string;
|
|
65758
|
-
type: string;
|
|
65759
|
-
};
|
|
65760
|
-
}[];
|
|
65761
65795
|
responses: {
|
|
65762
65796
|
200: {
|
|
65763
65797
|
content: {
|
|
@@ -65814,15 +65848,28 @@ declare const _default: {
|
|
|
65814
65848
|
content: {
|
|
65815
65849
|
'application/json': {
|
|
65816
65850
|
schema: {
|
|
65817
|
-
|
|
65818
|
-
|
|
65819
|
-
|
|
65820
|
-
|
|
65821
|
-
|
|
65851
|
+
oneOf: ({
|
|
65852
|
+
properties: {
|
|
65853
|
+
space_id: {
|
|
65854
|
+
description: string;
|
|
65855
|
+
format: string;
|
|
65856
|
+
type: string;
|
|
65857
|
+
};
|
|
65858
|
+
space_key?: never;
|
|
65822
65859
|
};
|
|
65823
|
-
|
|
65824
|
-
|
|
65825
|
-
|
|
65860
|
+
required: string[];
|
|
65861
|
+
type: string;
|
|
65862
|
+
} | {
|
|
65863
|
+
properties: {
|
|
65864
|
+
space_key: {
|
|
65865
|
+
description: string;
|
|
65866
|
+
type: string;
|
|
65867
|
+
};
|
|
65868
|
+
space_id?: never;
|
|
65869
|
+
};
|
|
65870
|
+
required: string[];
|
|
65871
|
+
type: string;
|
|
65872
|
+
})[];
|
|
65826
65873
|
};
|
|
65827
65874
|
};
|
|
65828
65875
|
};
|
|
@@ -66104,7 +66151,7 @@ declare const _default: {
|
|
|
66104
66151
|
get: {
|
|
66105
66152
|
description: string;
|
|
66106
66153
|
operationId: string;
|
|
66107
|
-
parameters: {
|
|
66154
|
+
parameters: ({
|
|
66108
66155
|
in: string;
|
|
66109
66156
|
name: string;
|
|
66110
66157
|
schema: {
|
|
@@ -66112,7 +66159,15 @@ declare const _default: {
|
|
|
66112
66159
|
minLength: number;
|
|
66113
66160
|
type: string;
|
|
66114
66161
|
};
|
|
66115
|
-
}
|
|
66162
|
+
} | {
|
|
66163
|
+
in: string;
|
|
66164
|
+
name: string;
|
|
66165
|
+
schema: {
|
|
66166
|
+
description: string;
|
|
66167
|
+
type: string;
|
|
66168
|
+
minLength?: never;
|
|
66169
|
+
};
|
|
66170
|
+
})[];
|
|
66116
66171
|
responses: {
|
|
66117
66172
|
200: {
|
|
66118
66173
|
content: {
|
|
@@ -66178,6 +66233,10 @@ declare const _default: {
|
|
|
66178
66233
|
minLength: number;
|
|
66179
66234
|
type: string;
|
|
66180
66235
|
};
|
|
66236
|
+
space_key: {
|
|
66237
|
+
description: string;
|
|
66238
|
+
type: string;
|
|
66239
|
+
};
|
|
66181
66240
|
};
|
|
66182
66241
|
type: string;
|
|
66183
66242
|
};
|
|
@@ -86690,6 +86749,8 @@ interface Routes {
|
|
|
86690
86749
|
full_name?: (string | null) | undefined;
|
|
86691
86750
|
};
|
|
86692
86751
|
}) & {
|
|
86752
|
+
/** Unique key for the access grant within the workspace. */
|
|
86753
|
+
access_grant_key?: string | undefined;
|
|
86693
86754
|
/**
|
|
86694
86755
|
* @deprecated Use `space_ids`. */
|
|
86695
86756
|
location_ids?: string[] | undefined;
|
|
@@ -86727,6 +86788,8 @@ interface Routes {
|
|
|
86727
86788
|
workspace_id: string;
|
|
86728
86789
|
/** ID of the Access Grant. */
|
|
86729
86790
|
access_grant_id: string;
|
|
86791
|
+
/** Unique key for the access grant within the workspace. */
|
|
86792
|
+
access_grant_key?: string | undefined;
|
|
86730
86793
|
/** ID of user identity to which the Access Grant gives access. */
|
|
86731
86794
|
user_identity_id: string;
|
|
86732
86795
|
/**
|
|
@@ -86780,6 +86843,9 @@ interface Routes {
|
|
|
86780
86843
|
commonParams: {
|
|
86781
86844
|
/** ID of Access Grant to get. */
|
|
86782
86845
|
access_grant_id: string;
|
|
86846
|
+
} | {
|
|
86847
|
+
/** Unique key of Access Grant to get. */
|
|
86848
|
+
access_grant_key: string;
|
|
86783
86849
|
};
|
|
86784
86850
|
formData: {};
|
|
86785
86851
|
jsonResponse: {
|
|
@@ -86789,6 +86855,8 @@ interface Routes {
|
|
|
86789
86855
|
workspace_id: string;
|
|
86790
86856
|
/** ID of the Access Grant. */
|
|
86791
86857
|
access_grant_id: string;
|
|
86858
|
+
/** Unique key for the access grant within the workspace. */
|
|
86859
|
+
access_grant_key?: string | undefined;
|
|
86792
86860
|
/** ID of user identity to which the Access Grant gives access. */
|
|
86793
86861
|
user_identity_id: string;
|
|
86794
86862
|
/**
|
|
@@ -86839,6 +86907,8 @@ interface Routes {
|
|
|
86839
86907
|
location_id?: string | undefined;
|
|
86840
86908
|
/** ID of the space by which you want to filter the list of Access Grants. */
|
|
86841
86909
|
space_id?: string | undefined;
|
|
86910
|
+
/** Filter Access Grants by access_grant_key. */
|
|
86911
|
+
access_grant_key?: string | undefined;
|
|
86842
86912
|
};
|
|
86843
86913
|
formData: {};
|
|
86844
86914
|
jsonResponse: {
|
|
@@ -86847,6 +86917,8 @@ interface Routes {
|
|
|
86847
86917
|
workspace_id: string;
|
|
86848
86918
|
/** ID of the Access Grant. */
|
|
86849
86919
|
access_grant_id: string;
|
|
86920
|
+
/** Unique key for the access grant within the workspace. */
|
|
86921
|
+
access_grant_key?: string | undefined;
|
|
86850
86922
|
/** ID of user identity to which the Access Grant gives access. */
|
|
86851
86923
|
user_identity_id: string;
|
|
86852
86924
|
/**
|
|
@@ -100015,7 +100087,7 @@ interface Routes {
|
|
|
100015
100087
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
100016
100088
|
relative_humidity?: number | undefined;
|
|
100017
100089
|
/** HVAC mode settings that the thermostat supports. */
|
|
100018
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
100090
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
100019
100091
|
/** Fan mode settings that the thermostat supports. */
|
|
100020
100092
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
100021
100093
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -100052,7 +100124,7 @@ interface Routes {
|
|
|
100052
100124
|
/** 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`. */
|
|
100053
100125
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
100054
100126
|
/** 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`. */
|
|
100055
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
100127
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
100056
100128
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
100057
100129
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
100058
100130
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -100098,7 +100170,7 @@ interface Routes {
|
|
|
100098
100170
|
/** 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`. */
|
|
100099
100171
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
100100
100172
|
/** 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`. */
|
|
100101
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
100173
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
100102
100174
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
100103
100175
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
100104
100176
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -100143,7 +100215,7 @@ interface Routes {
|
|
|
100143
100215
|
/** 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`. */
|
|
100144
100216
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
100145
100217
|
/** 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`. */
|
|
100146
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
100218
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
100147
100219
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
100148
100220
|
cooling_set_point_celsius?: number | undefined;
|
|
100149
100221
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -101224,7 +101296,7 @@ interface Routes {
|
|
|
101224
101296
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
101225
101297
|
relative_humidity?: number | undefined;
|
|
101226
101298
|
/** HVAC mode settings that the thermostat supports. */
|
|
101227
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
101299
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
101228
101300
|
/** Fan mode settings that the thermostat supports. */
|
|
101229
101301
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
101230
101302
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -101261,7 +101333,7 @@ interface Routes {
|
|
|
101261
101333
|
/** 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`. */
|
|
101262
101334
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
101263
101335
|
/** 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`. */
|
|
101264
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
101336
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
101265
101337
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
101266
101338
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
101267
101339
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -101307,7 +101379,7 @@ interface Routes {
|
|
|
101307
101379
|
/** 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`. */
|
|
101308
101380
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
101309
101381
|
/** 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`. */
|
|
101310
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
101382
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
101311
101383
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
101312
101384
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
101313
101385
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -101352,7 +101424,7 @@ interface Routes {
|
|
|
101352
101424
|
/** 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`. */
|
|
101353
101425
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
101354
101426
|
/** 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`. */
|
|
101355
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
101427
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
101356
101428
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
101357
101429
|
cooling_set_point_celsius?: number | undefined;
|
|
101358
101430
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -104241,7 +104313,7 @@ interface Routes {
|
|
|
104241
104313
|
/** 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`. */
|
|
104242
104314
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
104243
104315
|
/** 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`. */
|
|
104244
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
104316
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
104245
104317
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
104246
104318
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
104247
104319
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -105893,7 +105965,7 @@ interface Routes {
|
|
|
105893
105965
|
/** 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`. */
|
|
105894
105966
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
105895
105967
|
/** 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`. */
|
|
105896
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
105968
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
105897
105969
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
105898
105970
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
105899
105971
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -106657,7 +106729,7 @@ interface Routes {
|
|
|
106657
106729
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
106658
106730
|
relative_humidity?: number | undefined;
|
|
106659
106731
|
/** HVAC mode settings that the thermostat supports. */
|
|
106660
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
106732
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
106661
106733
|
/** Fan mode settings that the thermostat supports. */
|
|
106662
106734
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
106663
106735
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -106694,7 +106766,7 @@ interface Routes {
|
|
|
106694
106766
|
/** 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`. */
|
|
106695
106767
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
106696
106768
|
/** 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`. */
|
|
106697
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
106769
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
106698
106770
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
106699
106771
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
106700
106772
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -106740,7 +106812,7 @@ interface Routes {
|
|
|
106740
106812
|
/** 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`. */
|
|
106741
106813
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
106742
106814
|
/** 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`. */
|
|
106743
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
106815
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
106744
106816
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
106745
106817
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
106746
106818
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -106785,7 +106857,7 @@ interface Routes {
|
|
|
106785
106857
|
/** 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`. */
|
|
106786
106858
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
106787
106859
|
/** 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`. */
|
|
106788
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
106860
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
106789
106861
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
106790
106862
|
cooling_set_point_celsius?: number | undefined;
|
|
106791
106863
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -107818,7 +107890,7 @@ interface Routes {
|
|
|
107818
107890
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
107819
107891
|
relative_humidity?: number | undefined;
|
|
107820
107892
|
/** HVAC mode settings that the thermostat supports. */
|
|
107821
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
107893
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
107822
107894
|
/** Fan mode settings that the thermostat supports. */
|
|
107823
107895
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
107824
107896
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -107855,7 +107927,7 @@ interface Routes {
|
|
|
107855
107927
|
/** 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`. */
|
|
107856
107928
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
107857
107929
|
/** 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`. */
|
|
107858
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
107930
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
107859
107931
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
107860
107932
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
107861
107933
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -107901,7 +107973,7 @@ interface Routes {
|
|
|
107901
107973
|
/** 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`. */
|
|
107902
107974
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
107903
107975
|
/** 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`. */
|
|
107904
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
107976
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
107905
107977
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
107906
107978
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
107907
107979
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -107946,7 +108018,7 @@ interface Routes {
|
|
|
107946
108018
|
/** 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`. */
|
|
107947
108019
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
107948
108020
|
/** 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`. */
|
|
107949
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
108021
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
107950
108022
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
107951
108023
|
cooling_set_point_celsius?: number | undefined;
|
|
107952
108024
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -109027,7 +109099,7 @@ interface Routes {
|
|
|
109027
109099
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
109028
109100
|
relative_humidity?: number | undefined;
|
|
109029
109101
|
/** HVAC mode settings that the thermostat supports. */
|
|
109030
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
109102
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
109031
109103
|
/** Fan mode settings that the thermostat supports. */
|
|
109032
109104
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
109033
109105
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -109064,7 +109136,7 @@ interface Routes {
|
|
|
109064
109136
|
/** 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`. */
|
|
109065
109137
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
109066
109138
|
/** 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`. */
|
|
109067
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
109139
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
109068
109140
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
109069
109141
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
109070
109142
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -109110,7 +109182,7 @@ interface Routes {
|
|
|
109110
109182
|
/** 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`. */
|
|
109111
109183
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
109112
109184
|
/** 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`. */
|
|
109113
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
109185
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
109114
109186
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
109115
109187
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
109116
109188
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -109155,7 +109227,7 @@ interface Routes {
|
|
|
109155
109227
|
/** 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`. */
|
|
109156
109228
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
109157
109229
|
/** 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`. */
|
|
109158
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
109230
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
109159
109231
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
109160
109232
|
cooling_set_point_celsius?: number | undefined;
|
|
109161
109233
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -110187,7 +110259,7 @@ interface Routes {
|
|
|
110187
110259
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
110188
110260
|
relative_humidity?: number | undefined;
|
|
110189
110261
|
/** HVAC mode settings that the thermostat supports. */
|
|
110190
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
110262
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
110191
110263
|
/** Fan mode settings that the thermostat supports. */
|
|
110192
110264
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
110193
110265
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -110224,7 +110296,7 @@ interface Routes {
|
|
|
110224
110296
|
/** 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`. */
|
|
110225
110297
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
110226
110298
|
/** 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`. */
|
|
110227
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
110299
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
110228
110300
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
110229
110301
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
110230
110302
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -110270,7 +110342,7 @@ interface Routes {
|
|
|
110270
110342
|
/** 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`. */
|
|
110271
110343
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
110272
110344
|
/** 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`. */
|
|
110273
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
110345
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
110274
110346
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
110275
110347
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
110276
110348
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -110315,7 +110387,7 @@ interface Routes {
|
|
|
110315
110387
|
/** 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`. */
|
|
110316
110388
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
110317
110389
|
/** 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`. */
|
|
110318
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
110390
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
110319
110391
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
110320
110392
|
cooling_set_point_celsius?: number | undefined;
|
|
110321
110393
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -116469,7 +116541,7 @@ interface Routes {
|
|
|
116469
116541
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
116470
116542
|
relative_humidity?: number | undefined;
|
|
116471
116543
|
/** HVAC mode settings that the thermostat supports. */
|
|
116472
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
116544
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
116473
116545
|
/** Fan mode settings that the thermostat supports. */
|
|
116474
116546
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
116475
116547
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -116506,7 +116578,7 @@ interface Routes {
|
|
|
116506
116578
|
/** 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`. */
|
|
116507
116579
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
116508
116580
|
/** 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`. */
|
|
116509
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
116581
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
116510
116582
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
116511
116583
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
116512
116584
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -116552,7 +116624,7 @@ interface Routes {
|
|
|
116552
116624
|
/** 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`. */
|
|
116553
116625
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
116554
116626
|
/** 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`. */
|
|
116555
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
116627
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
116556
116628
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
116557
116629
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
116558
116630
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -116597,7 +116669,7 @@ interface Routes {
|
|
|
116597
116669
|
/** 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`. */
|
|
116598
116670
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
116599
116671
|
/** 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`. */
|
|
116600
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
116672
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
116601
116673
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
116602
116674
|
cooling_set_point_celsius?: number | undefined;
|
|
116603
116675
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -117629,7 +117701,7 @@ interface Routes {
|
|
|
117629
117701
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
117630
117702
|
relative_humidity?: number | undefined;
|
|
117631
117703
|
/** HVAC mode settings that the thermostat supports. */
|
|
117632
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
117704
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
117633
117705
|
/** Fan mode settings that the thermostat supports. */
|
|
117634
117706
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
117635
117707
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -117666,7 +117738,7 @@ interface Routes {
|
|
|
117666
117738
|
/** 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`. */
|
|
117667
117739
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
117668
117740
|
/** 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`. */
|
|
117669
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
117741
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
117670
117742
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
117671
117743
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
117672
117744
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -117712,7 +117784,7 @@ interface Routes {
|
|
|
117712
117784
|
/** 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`. */
|
|
117713
117785
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
117714
117786
|
/** 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`. */
|
|
117715
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
117787
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
117716
117788
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
117717
117789
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
117718
117790
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -117757,7 +117829,7 @@ interface Routes {
|
|
|
117757
117829
|
/** 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`. */
|
|
117758
117830
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
117759
117831
|
/** 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`. */
|
|
117760
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
117832
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
117761
117833
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
117762
117834
|
cooling_set_point_celsius?: number | undefined;
|
|
117763
117835
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -123331,6 +123403,8 @@ interface Routes {
|
|
|
123331
123403
|
jsonBody: {
|
|
123332
123404
|
/** Name of the space that you want to create. */
|
|
123333
123405
|
name: string;
|
|
123406
|
+
/** Unique key for the space within the workspace. */
|
|
123407
|
+
space_key?: string | undefined;
|
|
123334
123408
|
/** IDs of the devices that you want to add to the new space. */
|
|
123335
123409
|
device_ids?: string[] | undefined;
|
|
123336
123410
|
/** IDs of the entrances that you want to add to the new space. */
|
|
@@ -123345,6 +123419,8 @@ interface Routes {
|
|
|
123345
123419
|
space_id: string;
|
|
123346
123420
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
123347
123421
|
workspace_id: string;
|
|
123422
|
+
/** Unique key for the space within the workspace. */
|
|
123423
|
+
space_key?: string | undefined;
|
|
123348
123424
|
/** Name of the space. */
|
|
123349
123425
|
name: string;
|
|
123350
123426
|
/** Display name for the space. */
|
|
@@ -123378,6 +123454,9 @@ interface Routes {
|
|
|
123378
123454
|
commonParams: {
|
|
123379
123455
|
/** ID of the space that you want to get. */
|
|
123380
123456
|
space_id: string;
|
|
123457
|
+
} | {
|
|
123458
|
+
/** Unique key of the space that you want to get. */
|
|
123459
|
+
space_key: string;
|
|
123381
123460
|
};
|
|
123382
123461
|
formData: {};
|
|
123383
123462
|
jsonResponse: {
|
|
@@ -123387,6 +123466,8 @@ interface Routes {
|
|
|
123387
123466
|
space_id: string;
|
|
123388
123467
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
123389
123468
|
workspace_id: string;
|
|
123469
|
+
/** Unique key for the space within the workspace. */
|
|
123470
|
+
space_key?: string | undefined;
|
|
123390
123471
|
/** Name of the space. */
|
|
123391
123472
|
name: string;
|
|
123392
123473
|
/** Display name for the space. */
|
|
@@ -123421,6 +123502,8 @@ interface Routes {
|
|
|
123421
123502
|
space_id: string;
|
|
123422
123503
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
123423
123504
|
workspace_id: string;
|
|
123505
|
+
/** Unique key for the space within the workspace. */
|
|
123506
|
+
space_key?: string | undefined;
|
|
123424
123507
|
/** Name of the space. */
|
|
123425
123508
|
name: string;
|
|
123426
123509
|
/** Display name for the space. */
|
|
@@ -124016,7 +124099,7 @@ interface Routes {
|
|
|
124016
124099
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
124017
124100
|
relative_humidity?: number | undefined;
|
|
124018
124101
|
/** HVAC mode settings that the thermostat supports. */
|
|
124019
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
124102
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
124020
124103
|
/** Fan mode settings that the thermostat supports. */
|
|
124021
124104
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
124022
124105
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -124053,7 +124136,7 @@ interface Routes {
|
|
|
124053
124136
|
/** 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`. */
|
|
124054
124137
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
124055
124138
|
/** 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`. */
|
|
124056
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
124139
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
124057
124140
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
124058
124141
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
124059
124142
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -124099,7 +124182,7 @@ interface Routes {
|
|
|
124099
124182
|
/** 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`. */
|
|
124100
124183
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
124101
124184
|
/** 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`. */
|
|
124102
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
124185
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
124103
124186
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
124104
124187
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
124105
124188
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -124144,7 +124227,7 @@ interface Routes {
|
|
|
124144
124227
|
/** 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`. */
|
|
124145
124228
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
124146
124229
|
/** 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`. */
|
|
124147
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
124230
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
124148
124231
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
124149
124232
|
cooling_set_point_celsius?: number | undefined;
|
|
124150
124233
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -124699,6 +124782,8 @@ interface Routes {
|
|
|
124699
124782
|
commonParams: {
|
|
124700
124783
|
/** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
|
|
124701
124784
|
search?: string | undefined;
|
|
124785
|
+
/** Filter spaces by space_key. */
|
|
124786
|
+
space_key?: string | undefined;
|
|
124702
124787
|
};
|
|
124703
124788
|
formData: {};
|
|
124704
124789
|
jsonResponse: {
|
|
@@ -124707,6 +124792,8 @@ interface Routes {
|
|
|
124707
124792
|
space_id: string;
|
|
124708
124793
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
124709
124794
|
workspace_id: string;
|
|
124795
|
+
/** Unique key for the space within the workspace. */
|
|
124796
|
+
space_key?: string | undefined;
|
|
124710
124797
|
/** Name of the space. */
|
|
124711
124798
|
name: string;
|
|
124712
124799
|
/** Display name for the space. */
|
|
@@ -124767,6 +124854,8 @@ interface Routes {
|
|
|
124767
124854
|
space_id: string;
|
|
124768
124855
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
124769
124856
|
workspace_id: string;
|
|
124857
|
+
/** Unique key for the space within the workspace. */
|
|
124858
|
+
space_key?: string | undefined;
|
|
124770
124859
|
/** Name of the space. */
|
|
124771
124860
|
name: string;
|
|
124772
124861
|
/** Display name for the space. */
|
|
@@ -127325,7 +127414,7 @@ interface Routes {
|
|
|
127325
127414
|
/** 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`. */
|
|
127326
127415
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
127327
127416
|
/** 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`. */
|
|
127328
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
127417
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
127329
127418
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
127330
127419
|
cooling_set_point_celsius?: number | undefined;
|
|
127331
127420
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -129283,7 +129372,7 @@ interface Routes {
|
|
|
129283
129372
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
129284
129373
|
relative_humidity?: number | undefined;
|
|
129285
129374
|
/** HVAC mode settings that the thermostat supports. */
|
|
129286
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
129375
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
129287
129376
|
/** Fan mode settings that the thermostat supports. */
|
|
129288
129377
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
129289
129378
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -129320,7 +129409,7 @@ interface Routes {
|
|
|
129320
129409
|
/** 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`. */
|
|
129321
129410
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
129322
129411
|
/** 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`. */
|
|
129323
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
129412
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
129324
129413
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
129325
129414
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
129326
129415
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -129366,7 +129455,7 @@ interface Routes {
|
|
|
129366
129455
|
/** 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`. */
|
|
129367
129456
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
129368
129457
|
/** 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`. */
|
|
129369
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
129458
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
129370
129459
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
129371
129460
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
129372
129461
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -129411,7 +129500,7 @@ interface Routes {
|
|
|
129411
129500
|
/** 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`. */
|
|
129412
129501
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
129413
129502
|
/** 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`. */
|
|
129414
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
129503
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
129415
129504
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
129416
129505
|
cooling_set_point_celsius?: number | undefined;
|
|
129417
129506
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -133024,7 +133113,7 @@ interface Routes {
|
|
|
133024
133113
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
133025
133114
|
relative_humidity?: number | undefined;
|
|
133026
133115
|
/** HVAC mode settings that the thermostat supports. */
|
|
133027
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
133116
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
133028
133117
|
/** Fan mode settings that the thermostat supports. */
|
|
133029
133118
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
133030
133119
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -133061,7 +133150,7 @@ interface Routes {
|
|
|
133061
133150
|
/** 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`. */
|
|
133062
133151
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
133063
133152
|
/** 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`. */
|
|
133064
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
133153
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
133065
133154
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
133066
133155
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
133067
133156
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -133107,7 +133196,7 @@ interface Routes {
|
|
|
133107
133196
|
/** 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`. */
|
|
133108
133197
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
133109
133198
|
/** 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`. */
|
|
133110
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
133199
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
133111
133200
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
133112
133201
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
133113
133202
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -133152,7 +133241,7 @@ interface Routes {
|
|
|
133152
133241
|
/** 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`. */
|
|
133153
133242
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
133154
133243
|
/** 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`. */
|
|
133155
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
133244
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
133156
133245
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
133157
133246
|
cooling_set_point_celsius?: number | undefined;
|
|
133158
133247
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -134184,7 +134273,7 @@ interface Routes {
|
|
|
134184
134273
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
134185
134274
|
relative_humidity?: number | undefined;
|
|
134186
134275
|
/** HVAC mode settings that the thermostat supports. */
|
|
134187
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
134276
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
134188
134277
|
/** Fan mode settings that the thermostat supports. */
|
|
134189
134278
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
134190
134279
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -134221,7 +134310,7 @@ interface Routes {
|
|
|
134221
134310
|
/** 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`. */
|
|
134222
134311
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
134223
134312
|
/** 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`. */
|
|
134224
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
134313
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
134225
134314
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
134226
134315
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
134227
134316
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -134267,7 +134356,7 @@ interface Routes {
|
|
|
134267
134356
|
/** 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`. */
|
|
134268
134357
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
134269
134358
|
/** 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`. */
|
|
134270
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
134359
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
134271
134360
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
134272
134361
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
134273
134362
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -134312,7 +134401,7 @@ interface Routes {
|
|
|
134312
134401
|
/** 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`. */
|
|
134313
134402
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
134314
134403
|
/** 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`. */
|
|
134315
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
134404
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
134316
134405
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
134317
134406
|
cooling_set_point_celsius?: number | undefined;
|
|
134318
134407
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -138865,7 +138954,7 @@ interface Routes {
|
|
|
138865
138954
|
/** 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`. */
|
|
138866
138955
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
138867
138956
|
/** 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`. */
|
|
138868
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
138957
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
138869
138958
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
138870
138959
|
cooling_set_point_celsius?: number | undefined;
|
|
138871
138960
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -140220,6 +140309,8 @@ interface Routes {
|
|
|
140220
140309
|
workspace_id: string;
|
|
140221
140310
|
/** ID of the Access Grant. */
|
|
140222
140311
|
access_grant_id: string;
|
|
140312
|
+
/** Unique key for the access grant within the workspace. */
|
|
140313
|
+
access_grant_key?: string | undefined;
|
|
140223
140314
|
/** ID of user identity to which the Access Grant gives access. */
|
|
140224
140315
|
user_identity_id: string;
|
|
140225
140316
|
/**
|
|
@@ -140282,6 +140373,8 @@ interface Routes {
|
|
|
140282
140373
|
workspace_id: string;
|
|
140283
140374
|
/** ID of the Access Grant. */
|
|
140284
140375
|
access_grant_id: string;
|
|
140376
|
+
/** Unique key for the access grant within the workspace. */
|
|
140377
|
+
access_grant_key?: string | undefined;
|
|
140285
140378
|
/** ID of user identity to which the Access Grant gives access. */
|
|
140286
140379
|
user_identity_id: string;
|
|
140287
140380
|
/**
|
|
@@ -140340,6 +140433,8 @@ interface Routes {
|
|
|
140340
140433
|
workspace_id: string;
|
|
140341
140434
|
/** ID of the Access Grant. */
|
|
140342
140435
|
access_grant_id: string;
|
|
140436
|
+
/** Unique key for the access grant within the workspace. */
|
|
140437
|
+
access_grant_key?: string | undefined;
|
|
140343
140438
|
/** ID of user identity to which the Access Grant gives access. */
|
|
140344
140439
|
user_identity_id: string;
|
|
140345
140440
|
/**
|
|
@@ -141774,7 +141869,7 @@ interface Routes {
|
|
|
141774
141869
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
141775
141870
|
relative_humidity?: number | undefined;
|
|
141776
141871
|
/** HVAC mode settings that the thermostat supports. */
|
|
141777
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
141872
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
141778
141873
|
/** Fan mode settings that the thermostat supports. */
|
|
141779
141874
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
141780
141875
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -141811,7 +141906,7 @@ interface Routes {
|
|
|
141811
141906
|
/** 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`. */
|
|
141812
141907
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
141813
141908
|
/** 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`. */
|
|
141814
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
141909
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
141815
141910
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
141816
141911
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
141817
141912
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -141857,7 +141952,7 @@ interface Routes {
|
|
|
141857
141952
|
/** 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`. */
|
|
141858
141953
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
141859
141954
|
/** 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`. */
|
|
141860
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
141955
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
141861
141956
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
141862
141957
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
141863
141958
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -141902,7 +141997,7 @@ interface Routes {
|
|
|
141902
141997
|
/** 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`. */
|
|
141903
141998
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
141904
141999
|
/** 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`. */
|
|
141905
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
142000
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
141906
142001
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
141907
142002
|
cooling_set_point_celsius?: number | undefined;
|
|
141908
142003
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -142936,7 +143031,7 @@ interface Routes {
|
|
|
142936
143031
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
142937
143032
|
relative_humidity?: number | undefined;
|
|
142938
143033
|
/** HVAC mode settings that the thermostat supports. */
|
|
142939
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
143034
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
142940
143035
|
/** Fan mode settings that the thermostat supports. */
|
|
142941
143036
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
142942
143037
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -142973,7 +143068,7 @@ interface Routes {
|
|
|
142973
143068
|
/** 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`. */
|
|
142974
143069
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
142975
143070
|
/** 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`. */
|
|
142976
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
143071
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
142977
143072
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
142978
143073
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
142979
143074
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -143019,7 +143114,7 @@ interface Routes {
|
|
|
143019
143114
|
/** 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`. */
|
|
143020
143115
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
143021
143116
|
/** 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`. */
|
|
143022
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
143117
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
143023
143118
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
143024
143119
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
143025
143120
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -143064,7 +143159,7 @@ interface Routes {
|
|
|
143064
143159
|
/** 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`. */
|
|
143065
143160
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
143066
143161
|
/** 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`. */
|
|
143067
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
143162
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
143068
143163
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
143069
143164
|
cooling_set_point_celsius?: number | undefined;
|
|
143070
143165
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|