@seamapi/types 1.247.1 → 1.249.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 +55 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +206 -97
- package/lib/seam/connect/models/acs/acs-credential.d.ts +18 -0
- package/lib/seam/connect/models/acs/acs-credential.js +3 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +1 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +31 -26
- package/lib/seam/connect/models/devices/phone.d.ts +21 -18
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -18
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/modes.d.ts +3 -1
- package/lib/seam/connect/models/thermostats/modes.js +2 -1
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +44 -0
- package/lib/seam/connect/openapi.js +49 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +92 -53
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -0
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +49 -10
- package/src/lib/seam/connect/route-types.ts +164 -53
|
@@ -1561,10 +1561,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1561
1561
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1562
1562
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1563
1563
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1564
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
1564
1565
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1565
1566
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1566
1567
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
1567
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1568
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1568
1569
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1569
1570
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1570
1571
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -1572,7 +1573,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1572
1573
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1573
1574
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1574
1575
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1575
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1576
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1576
1577
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1577
1578
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1578
1579
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1585,7 +1586,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1585
1586
|
can_edit?: boolean | undefined;
|
|
1586
1587
|
can_delete?: boolean | undefined;
|
|
1587
1588
|
display_name?: string | undefined;
|
|
1588
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1589
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1589
1590
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1590
1591
|
cooling_set_point_celsius?: number | undefined;
|
|
1591
1592
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1598,7 +1599,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1598
1599
|
can_edit?: boolean | undefined;
|
|
1599
1600
|
can_delete?: boolean | undefined;
|
|
1600
1601
|
display_name?: string | undefined;
|
|
1601
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1602
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1602
1603
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1603
1604
|
cooling_set_point_celsius?: number | undefined;
|
|
1604
1605
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1612,7 +1613,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1612
1613
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1613
1614
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1614
1615
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1615
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1616
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1616
1617
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1617
1618
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1618
1619
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1625,7 +1626,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1625
1626
|
can_edit?: boolean | undefined;
|
|
1626
1627
|
can_delete?: boolean | undefined;
|
|
1627
1628
|
display_name?: string | undefined;
|
|
1628
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1629
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1629
1630
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1630
1631
|
cooling_set_point_celsius?: number | undefined;
|
|
1631
1632
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1638,7 +1639,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1638
1639
|
can_edit?: boolean | undefined;
|
|
1639
1640
|
can_delete?: boolean | undefined;
|
|
1640
1641
|
display_name?: string | undefined;
|
|
1641
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1642
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1642
1643
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1643
1644
|
cooling_set_point_celsius?: number | undefined;
|
|
1644
1645
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1652,7 +1653,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1652
1653
|
can_delete: z.ZodBoolean;
|
|
1653
1654
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1654
1655
|
display_name: z.ZodString;
|
|
1655
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1656
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1656
1657
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1657
1658
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1658
1659
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1666,7 +1667,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1666
1667
|
can_delete: boolean;
|
|
1667
1668
|
display_name: string;
|
|
1668
1669
|
manual_override_allowed: boolean;
|
|
1669
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1670
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1670
1671
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1671
1672
|
cooling_set_point_celsius?: number | undefined;
|
|
1672
1673
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1679,7 +1680,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1679
1680
|
display_name: string;
|
|
1680
1681
|
manual_override_allowed: boolean;
|
|
1681
1682
|
name?: string | null | undefined;
|
|
1682
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1683
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1683
1684
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1684
1685
|
cooling_set_point_celsius?: number | undefined;
|
|
1685
1686
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1729,11 +1730,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1729
1730
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1730
1731
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1731
1732
|
}, "strip", z.ZodTypeAny, {
|
|
1732
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1733
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1733
1734
|
temperature_fahrenheit?: number | undefined;
|
|
1734
1735
|
temperature_celsius?: number | undefined;
|
|
1735
1736
|
relative_humidity?: number | undefined;
|
|
1736
1737
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1738
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1737
1739
|
is_heating?: boolean | undefined;
|
|
1738
1740
|
is_cooling?: boolean | undefined;
|
|
1739
1741
|
is_fan_running?: boolean | undefined;
|
|
@@ -1744,7 +1746,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1744
1746
|
can_edit?: boolean | undefined;
|
|
1745
1747
|
can_delete?: boolean | undefined;
|
|
1746
1748
|
display_name?: string | undefined;
|
|
1747
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1749
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1748
1750
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1749
1751
|
cooling_set_point_celsius?: number | undefined;
|
|
1750
1752
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1758,7 +1760,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1758
1760
|
can_edit?: boolean | undefined;
|
|
1759
1761
|
can_delete?: boolean | undefined;
|
|
1760
1762
|
display_name?: string | undefined;
|
|
1761
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1763
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1762
1764
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1763
1765
|
cooling_set_point_celsius?: number | undefined;
|
|
1764
1766
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1773,7 +1775,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1773
1775
|
can_delete: boolean;
|
|
1774
1776
|
display_name: string;
|
|
1775
1777
|
manual_override_allowed: boolean;
|
|
1776
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1778
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1777
1779
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1778
1780
|
cooling_set_point_celsius?: number | undefined;
|
|
1779
1781
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1803,11 +1805,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1803
1805
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
1804
1806
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
1805
1807
|
}, {
|
|
1806
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1808
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1807
1809
|
temperature_fahrenheit?: number | undefined;
|
|
1808
1810
|
temperature_celsius?: number | undefined;
|
|
1809
1811
|
relative_humidity?: number | undefined;
|
|
1810
1812
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1813
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1811
1814
|
is_heating?: boolean | undefined;
|
|
1812
1815
|
is_cooling?: boolean | undefined;
|
|
1813
1816
|
is_fan_running?: boolean | undefined;
|
|
@@ -1818,7 +1821,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1818
1821
|
can_edit?: boolean | undefined;
|
|
1819
1822
|
can_delete?: boolean | undefined;
|
|
1820
1823
|
display_name?: string | undefined;
|
|
1821
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1824
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1822
1825
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1823
1826
|
cooling_set_point_celsius?: number | undefined;
|
|
1824
1827
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1832,7 +1835,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1832
1835
|
can_edit?: boolean | undefined;
|
|
1833
1836
|
can_delete?: boolean | undefined;
|
|
1834
1837
|
display_name?: string | undefined;
|
|
1835
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1838
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1836
1839
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1837
1840
|
cooling_set_point_celsius?: number | undefined;
|
|
1838
1841
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1847,7 +1850,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1847
1850
|
display_name: string;
|
|
1848
1851
|
manual_override_allowed: boolean;
|
|
1849
1852
|
name?: string | null | undefined;
|
|
1850
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1853
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1851
1854
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1852
1855
|
cooling_set_point_celsius?: number | undefined;
|
|
1853
1856
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2234,11 +2237,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2234
2237
|
} | undefined;
|
|
2235
2238
|
door_open?: boolean | undefined;
|
|
2236
2239
|
} & {
|
|
2237
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2240
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2238
2241
|
temperature_fahrenheit?: number | undefined;
|
|
2239
2242
|
temperature_celsius?: number | undefined;
|
|
2240
2243
|
relative_humidity?: number | undefined;
|
|
2241
2244
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
2245
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
2242
2246
|
is_heating?: boolean | undefined;
|
|
2243
2247
|
is_cooling?: boolean | undefined;
|
|
2244
2248
|
is_fan_running?: boolean | undefined;
|
|
@@ -2249,7 +2253,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2249
2253
|
can_edit?: boolean | undefined;
|
|
2250
2254
|
can_delete?: boolean | undefined;
|
|
2251
2255
|
display_name?: string | undefined;
|
|
2252
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2256
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2253
2257
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2254
2258
|
cooling_set_point_celsius?: number | undefined;
|
|
2255
2259
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2263,7 +2267,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2263
2267
|
can_edit?: boolean | undefined;
|
|
2264
2268
|
can_delete?: boolean | undefined;
|
|
2265
2269
|
display_name?: string | undefined;
|
|
2266
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2270
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2267
2271
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2268
2272
|
cooling_set_point_celsius?: number | undefined;
|
|
2269
2273
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2278,7 +2282,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2278
2282
|
can_delete: boolean;
|
|
2279
2283
|
display_name: string;
|
|
2280
2284
|
manual_override_allowed: boolean;
|
|
2281
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2285
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2282
2286
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2283
2287
|
cooling_set_point_celsius?: number | undefined;
|
|
2284
2288
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2613,11 +2617,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2613
2617
|
} | undefined;
|
|
2614
2618
|
door_open?: boolean | undefined;
|
|
2615
2619
|
} & {
|
|
2616
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2620
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2617
2621
|
temperature_fahrenheit?: number | undefined;
|
|
2618
2622
|
temperature_celsius?: number | undefined;
|
|
2619
2623
|
relative_humidity?: number | undefined;
|
|
2620
2624
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
2625
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
2621
2626
|
is_heating?: boolean | undefined;
|
|
2622
2627
|
is_cooling?: boolean | undefined;
|
|
2623
2628
|
is_fan_running?: boolean | undefined;
|
|
@@ -2628,7 +2633,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2628
2633
|
can_edit?: boolean | undefined;
|
|
2629
2634
|
can_delete?: boolean | undefined;
|
|
2630
2635
|
display_name?: string | undefined;
|
|
2631
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2636
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2632
2637
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2633
2638
|
cooling_set_point_celsius?: number | undefined;
|
|
2634
2639
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2642,7 +2647,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2642
2647
|
can_edit?: boolean | undefined;
|
|
2643
2648
|
can_delete?: boolean | undefined;
|
|
2644
2649
|
display_name?: string | undefined;
|
|
2645
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2650
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2646
2651
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2647
2652
|
cooling_set_point_celsius?: number | undefined;
|
|
2648
2653
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2657,7 +2662,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2657
2662
|
display_name: string;
|
|
2658
2663
|
manual_override_allowed: boolean;
|
|
2659
2664
|
name?: string | null | undefined;
|
|
2660
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2665
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2661
2666
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2662
2667
|
cooling_set_point_celsius?: number | undefined;
|
|
2663
2668
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1343,10 +1343,11 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1343
1343
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1344
1344
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1345
1345
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1346
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
1346
1347
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1347
1348
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1348
1349
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
1349
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1350
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1350
1351
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1351
1352
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1352
1353
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -1354,7 +1355,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1354
1355
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1355
1356
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1356
1357
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1357
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1358
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1358
1359
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1359
1360
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1360
1361
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1367,7 +1368,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1367
1368
|
can_edit?: boolean | undefined;
|
|
1368
1369
|
can_delete?: boolean | undefined;
|
|
1369
1370
|
display_name?: string | undefined;
|
|
1370
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1371
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1371
1372
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1372
1373
|
cooling_set_point_celsius?: number | undefined;
|
|
1373
1374
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1380,7 +1381,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1380
1381
|
can_edit?: boolean | undefined;
|
|
1381
1382
|
can_delete?: boolean | undefined;
|
|
1382
1383
|
display_name?: string | undefined;
|
|
1383
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1384
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1384
1385
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1385
1386
|
cooling_set_point_celsius?: number | undefined;
|
|
1386
1387
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1394,7 +1395,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1394
1395
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1395
1396
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1396
1397
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1397
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1398
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1398
1399
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1399
1400
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1400
1401
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1407,7 +1408,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1407
1408
|
can_edit?: boolean | undefined;
|
|
1408
1409
|
can_delete?: boolean | undefined;
|
|
1409
1410
|
display_name?: string | undefined;
|
|
1410
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1411
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1411
1412
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1412
1413
|
cooling_set_point_celsius?: number | undefined;
|
|
1413
1414
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1420,7 +1421,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1420
1421
|
can_edit?: boolean | undefined;
|
|
1421
1422
|
can_delete?: boolean | undefined;
|
|
1422
1423
|
display_name?: string | undefined;
|
|
1423
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1424
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1424
1425
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1425
1426
|
cooling_set_point_celsius?: number | undefined;
|
|
1426
1427
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1434,7 +1435,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1434
1435
|
can_delete: z.ZodBoolean;
|
|
1435
1436
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1436
1437
|
display_name: z.ZodString;
|
|
1437
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1438
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1438
1439
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1439
1440
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1440
1441
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1448,7 +1449,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1448
1449
|
can_delete: boolean;
|
|
1449
1450
|
display_name: string;
|
|
1450
1451
|
manual_override_allowed: boolean;
|
|
1451
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1452
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1452
1453
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1453
1454
|
cooling_set_point_celsius?: number | undefined;
|
|
1454
1455
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1461,7 +1462,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1461
1462
|
display_name: string;
|
|
1462
1463
|
manual_override_allowed: boolean;
|
|
1463
1464
|
name?: string | null | undefined;
|
|
1464
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1465
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1465
1466
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1466
1467
|
cooling_set_point_celsius?: number | undefined;
|
|
1467
1468
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1511,11 +1512,12 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1511
1512
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1512
1513
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1513
1514
|
}, "strip", z.ZodTypeAny, {
|
|
1514
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1515
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1515
1516
|
temperature_fahrenheit?: number | undefined;
|
|
1516
1517
|
temperature_celsius?: number | undefined;
|
|
1517
1518
|
relative_humidity?: number | undefined;
|
|
1518
1519
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1520
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1519
1521
|
is_heating?: boolean | undefined;
|
|
1520
1522
|
is_cooling?: boolean | undefined;
|
|
1521
1523
|
is_fan_running?: boolean | undefined;
|
|
@@ -1526,7 +1528,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1526
1528
|
can_edit?: boolean | undefined;
|
|
1527
1529
|
can_delete?: boolean | undefined;
|
|
1528
1530
|
display_name?: string | undefined;
|
|
1529
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1531
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1530
1532
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1531
1533
|
cooling_set_point_celsius?: number | undefined;
|
|
1532
1534
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1540,7 +1542,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1540
1542
|
can_edit?: boolean | undefined;
|
|
1541
1543
|
can_delete?: boolean | undefined;
|
|
1542
1544
|
display_name?: string | undefined;
|
|
1543
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1545
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1544
1546
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1545
1547
|
cooling_set_point_celsius?: number | undefined;
|
|
1546
1548
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1555,7 +1557,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1555
1557
|
can_delete: boolean;
|
|
1556
1558
|
display_name: string;
|
|
1557
1559
|
manual_override_allowed: boolean;
|
|
1558
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1560
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1559
1561
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1560
1562
|
cooling_set_point_celsius?: number | undefined;
|
|
1561
1563
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1585,11 +1587,12 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1585
1587
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
1586
1588
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
1587
1589
|
}, {
|
|
1588
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1590
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1589
1591
|
temperature_fahrenheit?: number | undefined;
|
|
1590
1592
|
temperature_celsius?: number | undefined;
|
|
1591
1593
|
relative_humidity?: number | undefined;
|
|
1592
1594
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1595
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1593
1596
|
is_heating?: boolean | undefined;
|
|
1594
1597
|
is_cooling?: boolean | undefined;
|
|
1595
1598
|
is_fan_running?: boolean | undefined;
|
|
@@ -1600,7 +1603,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1600
1603
|
can_edit?: boolean | undefined;
|
|
1601
1604
|
can_delete?: boolean | undefined;
|
|
1602
1605
|
display_name?: string | undefined;
|
|
1603
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1606
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1604
1607
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1605
1608
|
cooling_set_point_celsius?: number | undefined;
|
|
1606
1609
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1614,7 +1617,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1614
1617
|
can_edit?: boolean | undefined;
|
|
1615
1618
|
can_delete?: boolean | undefined;
|
|
1616
1619
|
display_name?: string | undefined;
|
|
1617
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1620
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1618
1621
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1619
1622
|
cooling_set_point_celsius?: number | undefined;
|
|
1620
1623
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1629,7 +1632,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1629
1632
|
display_name: string;
|
|
1630
1633
|
manual_override_allowed: boolean;
|
|
1631
1634
|
name?: string | null | undefined;
|
|
1632
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1635
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1633
1636
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1634
1637
|
cooling_set_point_celsius?: number | undefined;
|
|
1635
1638
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1342,10 +1342,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1342
1342
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1343
1343
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1344
1344
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1345
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
1345
1346
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1346
1347
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1347
1348
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
1348
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1349
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1349
1350
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1350
1351
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1351
1352
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -1353,7 +1354,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1353
1354
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1354
1355
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1355
1356
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1356
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1357
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1357
1358
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1358
1359
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1359
1360
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1366,7 +1367,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1366
1367
|
can_edit?: boolean | undefined;
|
|
1367
1368
|
can_delete?: boolean | undefined;
|
|
1368
1369
|
display_name?: string | undefined;
|
|
1369
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1370
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1370
1371
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1371
1372
|
cooling_set_point_celsius?: number | undefined;
|
|
1372
1373
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1379,7 +1380,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1379
1380
|
can_edit?: boolean | undefined;
|
|
1380
1381
|
can_delete?: boolean | undefined;
|
|
1381
1382
|
display_name?: string | undefined;
|
|
1382
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1383
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1383
1384
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1384
1385
|
cooling_set_point_celsius?: number | undefined;
|
|
1385
1386
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1393,7 +1394,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1393
1394
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1394
1395
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1395
1396
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1396
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1397
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1397
1398
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1398
1399
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1399
1400
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1406,7 +1407,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1406
1407
|
can_edit?: boolean | undefined;
|
|
1407
1408
|
can_delete?: boolean | undefined;
|
|
1408
1409
|
display_name?: string | undefined;
|
|
1409
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1410
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1410
1411
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1411
1412
|
cooling_set_point_celsius?: number | undefined;
|
|
1412
1413
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1419,7 +1420,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1419
1420
|
can_edit?: boolean | undefined;
|
|
1420
1421
|
can_delete?: boolean | undefined;
|
|
1421
1422
|
display_name?: string | undefined;
|
|
1422
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1423
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1423
1424
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1424
1425
|
cooling_set_point_celsius?: number | undefined;
|
|
1425
1426
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1433,7 +1434,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1433
1434
|
can_delete: z.ZodBoolean;
|
|
1434
1435
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1435
1436
|
display_name: z.ZodString;
|
|
1436
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1437
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1437
1438
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1438
1439
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1439
1440
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1447,7 +1448,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1447
1448
|
can_delete: boolean;
|
|
1448
1449
|
display_name: string;
|
|
1449
1450
|
manual_override_allowed: boolean;
|
|
1450
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1451
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1451
1452
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1452
1453
|
cooling_set_point_celsius?: number | undefined;
|
|
1453
1454
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1460,7 +1461,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1460
1461
|
display_name: string;
|
|
1461
1462
|
manual_override_allowed: boolean;
|
|
1462
1463
|
name?: string | null | undefined;
|
|
1463
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1464
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1464
1465
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1465
1466
|
cooling_set_point_celsius?: number | undefined;
|
|
1466
1467
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1510,11 +1511,12 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1510
1511
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1511
1512
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1512
1513
|
}, "strip", z.ZodTypeAny, {
|
|
1513
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1514
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1514
1515
|
temperature_fahrenheit?: number | undefined;
|
|
1515
1516
|
temperature_celsius?: number | undefined;
|
|
1516
1517
|
relative_humidity?: number | undefined;
|
|
1517
1518
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1519
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1518
1520
|
is_heating?: boolean | undefined;
|
|
1519
1521
|
is_cooling?: boolean | undefined;
|
|
1520
1522
|
is_fan_running?: boolean | undefined;
|
|
@@ -1525,7 +1527,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1525
1527
|
can_edit?: boolean | undefined;
|
|
1526
1528
|
can_delete?: boolean | undefined;
|
|
1527
1529
|
display_name?: string | undefined;
|
|
1528
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1530
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1529
1531
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1530
1532
|
cooling_set_point_celsius?: number | undefined;
|
|
1531
1533
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1539,7 +1541,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1539
1541
|
can_edit?: boolean | undefined;
|
|
1540
1542
|
can_delete?: boolean | undefined;
|
|
1541
1543
|
display_name?: string | undefined;
|
|
1542
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1544
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1543
1545
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1544
1546
|
cooling_set_point_celsius?: number | undefined;
|
|
1545
1547
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1554,7 +1556,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1554
1556
|
can_delete: boolean;
|
|
1555
1557
|
display_name: string;
|
|
1556
1558
|
manual_override_allowed: boolean;
|
|
1557
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1559
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1558
1560
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1559
1561
|
cooling_set_point_celsius?: number | undefined;
|
|
1560
1562
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1584,11 +1586,12 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1584
1586
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
1585
1587
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
1586
1588
|
}, {
|
|
1587
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1589
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1588
1590
|
temperature_fahrenheit?: number | undefined;
|
|
1589
1591
|
temperature_celsius?: number | undefined;
|
|
1590
1592
|
relative_humidity?: number | undefined;
|
|
1591
1593
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1594
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1592
1595
|
is_heating?: boolean | undefined;
|
|
1593
1596
|
is_cooling?: boolean | undefined;
|
|
1594
1597
|
is_fan_running?: boolean | undefined;
|
|
@@ -1599,7 +1602,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1599
1602
|
can_edit?: boolean | undefined;
|
|
1600
1603
|
can_delete?: boolean | undefined;
|
|
1601
1604
|
display_name?: string | undefined;
|
|
1602
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1605
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1603
1606
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1604
1607
|
cooling_set_point_celsius?: number | undefined;
|
|
1605
1608
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1613,7 +1616,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1613
1616
|
can_edit?: boolean | undefined;
|
|
1614
1617
|
can_delete?: boolean | undefined;
|
|
1615
1618
|
display_name?: string | undefined;
|
|
1616
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1619
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1617
1620
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1618
1621
|
cooling_set_point_celsius?: number | undefined;
|
|
1619
1622
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1628,7 +1631,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1628
1631
|
display_name: string;
|
|
1629
1632
|
manual_override_allowed: boolean;
|
|
1630
1633
|
name?: string | null | undefined;
|
|
1631
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1634
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1632
1635
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1633
1636
|
cooling_set_point_celsius?: number | undefined;
|
|
1634
1637
|
heating_set_point_celsius?: number | undefined;
|