@seamapi/types 1.580.0 → 1.582.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 +9 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +177 -137
- package/dist/index.cjs +9 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +167 -167
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +15 -15
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +15 -15
- package/lib/seam/connect/models/devices/device.d.ts +21 -21
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +15 -15
- package/lib/seam/connect/models/events/devices.d.ts +2 -2
- package/lib/seam/connect/models/events/seam-event.d.ts +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/climate-preset.js +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +43 -3
- package/lib/seam/connect/openapi.js +8 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -51
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -4
- package/src/lib/seam/connect/route-types.ts +67 -51
|
@@ -1655,7 +1655,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1655
1655
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
1656
1656
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
1657
1657
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1658
|
-
|
|
1658
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
1659
1659
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
1660
1660
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1661
1661
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -1683,7 +1683,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1683
1683
|
climate_preset_key?: string | undefined;
|
|
1684
1684
|
can_edit?: boolean | undefined;
|
|
1685
1685
|
can_delete?: boolean | undefined;
|
|
1686
|
-
|
|
1686
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
1687
1687
|
name?: string | null | undefined;
|
|
1688
1688
|
display_name?: string | undefined;
|
|
1689
1689
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -1703,7 +1703,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1703
1703
|
climate_preset_key?: string | undefined;
|
|
1704
1704
|
can_edit?: boolean | undefined;
|
|
1705
1705
|
can_delete?: boolean | undefined;
|
|
1706
|
-
|
|
1706
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
1707
1707
|
name?: string | null | undefined;
|
|
1708
1708
|
display_name?: string | undefined;
|
|
1709
1709
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -1724,7 +1724,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1724
1724
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
1725
1725
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
1726
1726
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1727
|
-
|
|
1727
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
1728
1728
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
1729
1729
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1730
1730
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -1752,7 +1752,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1752
1752
|
climate_preset_key?: string | undefined;
|
|
1753
1753
|
can_edit?: boolean | undefined;
|
|
1754
1754
|
can_delete?: boolean | undefined;
|
|
1755
|
-
|
|
1755
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
1756
1756
|
name?: string | null | undefined;
|
|
1757
1757
|
display_name?: string | undefined;
|
|
1758
1758
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -1772,7 +1772,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1772
1772
|
climate_preset_key?: string | undefined;
|
|
1773
1773
|
can_edit?: boolean | undefined;
|
|
1774
1774
|
can_delete?: boolean | undefined;
|
|
1775
|
-
|
|
1775
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
1776
1776
|
name?: string | null | undefined;
|
|
1777
1777
|
display_name?: string | undefined;
|
|
1778
1778
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -1793,7 +1793,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1793
1793
|
climate_preset_key: z.ZodString;
|
|
1794
1794
|
can_edit: z.ZodBoolean;
|
|
1795
1795
|
can_delete: z.ZodBoolean;
|
|
1796
|
-
|
|
1796
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
1797
1797
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1798
1798
|
display_name: z.ZodString;
|
|
1799
1799
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -1821,7 +1821,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1821
1821
|
climate_preset_key: string;
|
|
1822
1822
|
can_edit: boolean;
|
|
1823
1823
|
can_delete: boolean;
|
|
1824
|
-
|
|
1824
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
1825
1825
|
display_name: string;
|
|
1826
1826
|
manual_override_allowed: boolean;
|
|
1827
1827
|
name?: string | null | undefined;
|
|
@@ -1841,7 +1841,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1841
1841
|
climate_preset_key: string;
|
|
1842
1842
|
can_edit: boolean;
|
|
1843
1843
|
can_delete: boolean;
|
|
1844
|
-
|
|
1844
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
1845
1845
|
display_name: string;
|
|
1846
1846
|
manual_override_allowed: boolean;
|
|
1847
1847
|
name?: string | null | undefined;
|
|
@@ -2022,7 +2022,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2022
2022
|
climate_preset_key?: string | undefined;
|
|
2023
2023
|
can_edit?: boolean | undefined;
|
|
2024
2024
|
can_delete?: boolean | undefined;
|
|
2025
|
-
|
|
2025
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
2026
2026
|
name?: string | null | undefined;
|
|
2027
2027
|
display_name?: string | undefined;
|
|
2028
2028
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -2043,7 +2043,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2043
2043
|
climate_preset_key?: string | undefined;
|
|
2044
2044
|
can_edit?: boolean | undefined;
|
|
2045
2045
|
can_delete?: boolean | undefined;
|
|
2046
|
-
|
|
2046
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
2047
2047
|
name?: string | null | undefined;
|
|
2048
2048
|
display_name?: string | undefined;
|
|
2049
2049
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -2064,7 +2064,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2064
2064
|
climate_preset_key: string;
|
|
2065
2065
|
can_edit: boolean;
|
|
2066
2066
|
can_delete: boolean;
|
|
2067
|
-
|
|
2067
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
2068
2068
|
display_name: string;
|
|
2069
2069
|
manual_override_allowed: boolean;
|
|
2070
2070
|
name?: string | null | undefined;
|
|
@@ -2155,7 +2155,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2155
2155
|
climate_preset_key?: string | undefined;
|
|
2156
2156
|
can_edit?: boolean | undefined;
|
|
2157
2157
|
can_delete?: boolean | undefined;
|
|
2158
|
-
|
|
2158
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
2159
2159
|
name?: string | null | undefined;
|
|
2160
2160
|
display_name?: string | undefined;
|
|
2161
2161
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -2176,7 +2176,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2176
2176
|
climate_preset_key?: string | undefined;
|
|
2177
2177
|
can_edit?: boolean | undefined;
|
|
2178
2178
|
can_delete?: boolean | undefined;
|
|
2179
|
-
|
|
2179
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
2180
2180
|
name?: string | null | undefined;
|
|
2181
2181
|
display_name?: string | undefined;
|
|
2182
2182
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -2197,7 +2197,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2197
2197
|
climate_preset_key: string;
|
|
2198
2198
|
can_edit: boolean;
|
|
2199
2199
|
can_delete: boolean;
|
|
2200
|
-
|
|
2200
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
2201
2201
|
display_name: string;
|
|
2202
2202
|
manual_override_allowed: boolean;
|
|
2203
2203
|
name?: string | null | undefined;
|
|
@@ -3382,7 +3382,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3382
3382
|
climate_preset_key?: string | undefined;
|
|
3383
3383
|
can_edit?: boolean | undefined;
|
|
3384
3384
|
can_delete?: boolean | undefined;
|
|
3385
|
-
|
|
3385
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
3386
3386
|
name?: string | null | undefined;
|
|
3387
3387
|
display_name?: string | undefined;
|
|
3388
3388
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -3403,7 +3403,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3403
3403
|
climate_preset_key?: string | undefined;
|
|
3404
3404
|
can_edit?: boolean | undefined;
|
|
3405
3405
|
can_delete?: boolean | undefined;
|
|
3406
|
-
|
|
3406
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
3407
3407
|
name?: string | null | undefined;
|
|
3408
3408
|
display_name?: string | undefined;
|
|
3409
3409
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -3424,7 +3424,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3424
3424
|
climate_preset_key: string;
|
|
3425
3425
|
can_edit: boolean;
|
|
3426
3426
|
can_delete: boolean;
|
|
3427
|
-
|
|
3427
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
3428
3428
|
display_name: string;
|
|
3429
3429
|
manual_override_allowed: boolean;
|
|
3430
3430
|
name?: string | null | undefined;
|
|
@@ -4041,7 +4041,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4041
4041
|
climate_preset_key?: string | undefined;
|
|
4042
4042
|
can_edit?: boolean | undefined;
|
|
4043
4043
|
can_delete?: boolean | undefined;
|
|
4044
|
-
|
|
4044
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
4045
4045
|
name?: string | null | undefined;
|
|
4046
4046
|
display_name?: string | undefined;
|
|
4047
4047
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -4062,7 +4062,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4062
4062
|
climate_preset_key?: string | undefined;
|
|
4063
4063
|
can_edit?: boolean | undefined;
|
|
4064
4064
|
can_delete?: boolean | undefined;
|
|
4065
|
-
|
|
4065
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
4066
4066
|
name?: string | null | undefined;
|
|
4067
4067
|
display_name?: string | undefined;
|
|
4068
4068
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -4083,7 +4083,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4083
4083
|
climate_preset_key: string;
|
|
4084
4084
|
can_edit: boolean;
|
|
4085
4085
|
can_delete: boolean;
|
|
4086
|
-
|
|
4086
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
4087
4087
|
display_name: string;
|
|
4088
4088
|
manual_override_allowed: boolean;
|
|
4089
4089
|
name?: string | null | undefined;
|
|
@@ -5668,7 +5668,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5668
5668
|
climate_preset_key?: string | undefined;
|
|
5669
5669
|
can_edit?: boolean | undefined;
|
|
5670
5670
|
can_delete?: boolean | undefined;
|
|
5671
|
-
|
|
5671
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
5672
5672
|
name?: string | null | undefined;
|
|
5673
5673
|
display_name?: string | undefined;
|
|
5674
5674
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -5689,7 +5689,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5689
5689
|
climate_preset_key?: string | undefined;
|
|
5690
5690
|
can_edit?: boolean | undefined;
|
|
5691
5691
|
can_delete?: boolean | undefined;
|
|
5692
|
-
|
|
5692
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
5693
5693
|
name?: string | null | undefined;
|
|
5694
5694
|
display_name?: string | undefined;
|
|
5695
5695
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -5710,7 +5710,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5710
5710
|
climate_preset_key: string;
|
|
5711
5711
|
can_edit: boolean;
|
|
5712
5712
|
can_delete: boolean;
|
|
5713
|
-
|
|
5713
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
5714
5714
|
display_name: string;
|
|
5715
5715
|
manual_override_allowed: boolean;
|
|
5716
5716
|
name?: string | null | undefined;
|
|
@@ -6540,7 +6540,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6540
6540
|
climate_preset_key?: string | undefined;
|
|
6541
6541
|
can_edit?: boolean | undefined;
|
|
6542
6542
|
can_delete?: boolean | undefined;
|
|
6543
|
-
|
|
6543
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
6544
6544
|
name?: string | null | undefined;
|
|
6545
6545
|
display_name?: string | undefined;
|
|
6546
6546
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -6561,7 +6561,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6561
6561
|
climate_preset_key?: string | undefined;
|
|
6562
6562
|
can_edit?: boolean | undefined;
|
|
6563
6563
|
can_delete?: boolean | undefined;
|
|
6564
|
-
|
|
6564
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
6565
6565
|
name?: string | null | undefined;
|
|
6566
6566
|
display_name?: string | undefined;
|
|
6567
6567
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -6582,7 +6582,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6582
6582
|
climate_preset_key: string;
|
|
6583
6583
|
can_edit: boolean;
|
|
6584
6584
|
can_delete: boolean;
|
|
6585
|
-
|
|
6585
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
6586
6586
|
display_name: string;
|
|
6587
6587
|
manual_override_allowed: boolean;
|
|
6588
6588
|
name?: string | null | undefined;
|
|
@@ -8541,7 +8541,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8541
8541
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
8542
8542
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
8543
8543
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
8544
|
-
|
|
8544
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
8545
8545
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
8546
8546
|
display_name: z.ZodOptional<z.ZodString>;
|
|
8547
8547
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -8569,7 +8569,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8569
8569
|
climate_preset_key?: string | undefined;
|
|
8570
8570
|
can_edit?: boolean | undefined;
|
|
8571
8571
|
can_delete?: boolean | undefined;
|
|
8572
|
-
|
|
8572
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8573
8573
|
name?: string | null | undefined;
|
|
8574
8574
|
display_name?: string | undefined;
|
|
8575
8575
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8589,7 +8589,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8589
8589
|
climate_preset_key?: string | undefined;
|
|
8590
8590
|
can_edit?: boolean | undefined;
|
|
8591
8591
|
can_delete?: boolean | undefined;
|
|
8592
|
-
|
|
8592
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8593
8593
|
name?: string | null | undefined;
|
|
8594
8594
|
display_name?: string | undefined;
|
|
8595
8595
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8610,7 +8610,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8610
8610
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
8611
8611
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
8612
8612
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
8613
|
-
|
|
8613
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
8614
8614
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
8615
8615
|
display_name: z.ZodOptional<z.ZodString>;
|
|
8616
8616
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -8638,7 +8638,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8638
8638
|
climate_preset_key?: string | undefined;
|
|
8639
8639
|
can_edit?: boolean | undefined;
|
|
8640
8640
|
can_delete?: boolean | undefined;
|
|
8641
|
-
|
|
8641
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8642
8642
|
name?: string | null | undefined;
|
|
8643
8643
|
display_name?: string | undefined;
|
|
8644
8644
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8658,7 +8658,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8658
8658
|
climate_preset_key?: string | undefined;
|
|
8659
8659
|
can_edit?: boolean | undefined;
|
|
8660
8660
|
can_delete?: boolean | undefined;
|
|
8661
|
-
|
|
8661
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8662
8662
|
name?: string | null | undefined;
|
|
8663
8663
|
display_name?: string | undefined;
|
|
8664
8664
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8679,7 +8679,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8679
8679
|
climate_preset_key: z.ZodString;
|
|
8680
8680
|
can_edit: z.ZodBoolean;
|
|
8681
8681
|
can_delete: z.ZodBoolean;
|
|
8682
|
-
|
|
8682
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
8683
8683
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
8684
8684
|
display_name: z.ZodString;
|
|
8685
8685
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -8707,7 +8707,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8707
8707
|
climate_preset_key: string;
|
|
8708
8708
|
can_edit: boolean;
|
|
8709
8709
|
can_delete: boolean;
|
|
8710
|
-
|
|
8710
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
8711
8711
|
display_name: string;
|
|
8712
8712
|
manual_override_allowed: boolean;
|
|
8713
8713
|
name?: string | null | undefined;
|
|
@@ -8727,7 +8727,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8727
8727
|
climate_preset_key: string;
|
|
8728
8728
|
can_edit: boolean;
|
|
8729
8729
|
can_delete: boolean;
|
|
8730
|
-
|
|
8730
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
8731
8731
|
display_name: string;
|
|
8732
8732
|
manual_override_allowed: boolean;
|
|
8733
8733
|
name?: string | null | undefined;
|
|
@@ -8908,7 +8908,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8908
8908
|
climate_preset_key?: string | undefined;
|
|
8909
8909
|
can_edit?: boolean | undefined;
|
|
8910
8910
|
can_delete?: boolean | undefined;
|
|
8911
|
-
|
|
8911
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8912
8912
|
name?: string | null | undefined;
|
|
8913
8913
|
display_name?: string | undefined;
|
|
8914
8914
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8929,7 +8929,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8929
8929
|
climate_preset_key?: string | undefined;
|
|
8930
8930
|
can_edit?: boolean | undefined;
|
|
8931
8931
|
can_delete?: boolean | undefined;
|
|
8932
|
-
|
|
8932
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8933
8933
|
name?: string | null | undefined;
|
|
8934
8934
|
display_name?: string | undefined;
|
|
8935
8935
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8950,7 +8950,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8950
8950
|
climate_preset_key: string;
|
|
8951
8951
|
can_edit: boolean;
|
|
8952
8952
|
can_delete: boolean;
|
|
8953
|
-
|
|
8953
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
8954
8954
|
display_name: string;
|
|
8955
8955
|
manual_override_allowed: boolean;
|
|
8956
8956
|
name?: string | null | undefined;
|
|
@@ -9041,7 +9041,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9041
9041
|
climate_preset_key?: string | undefined;
|
|
9042
9042
|
can_edit?: boolean | undefined;
|
|
9043
9043
|
can_delete?: boolean | undefined;
|
|
9044
|
-
|
|
9044
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
9045
9045
|
name?: string | null | undefined;
|
|
9046
9046
|
display_name?: string | undefined;
|
|
9047
9047
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -9062,7 +9062,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9062
9062
|
climate_preset_key?: string | undefined;
|
|
9063
9063
|
can_edit?: boolean | undefined;
|
|
9064
9064
|
can_delete?: boolean | undefined;
|
|
9065
|
-
|
|
9065
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
9066
9066
|
name?: string | null | undefined;
|
|
9067
9067
|
display_name?: string | undefined;
|
|
9068
9068
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -9083,7 +9083,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9083
9083
|
climate_preset_key: string;
|
|
9084
9084
|
can_edit: boolean;
|
|
9085
9085
|
can_delete: boolean;
|
|
9086
|
-
|
|
9086
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
9087
9087
|
display_name: string;
|
|
9088
9088
|
manual_override_allowed: boolean;
|
|
9089
9089
|
name?: string | null | undefined;
|
|
@@ -10268,7 +10268,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10268
10268
|
climate_preset_key?: string | undefined;
|
|
10269
10269
|
can_edit?: boolean | undefined;
|
|
10270
10270
|
can_delete?: boolean | undefined;
|
|
10271
|
-
|
|
10271
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10272
10272
|
name?: string | null | undefined;
|
|
10273
10273
|
display_name?: string | undefined;
|
|
10274
10274
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -10289,7 +10289,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10289
10289
|
climate_preset_key?: string | undefined;
|
|
10290
10290
|
can_edit?: boolean | undefined;
|
|
10291
10291
|
can_delete?: boolean | undefined;
|
|
10292
|
-
|
|
10292
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10293
10293
|
name?: string | null | undefined;
|
|
10294
10294
|
display_name?: string | undefined;
|
|
10295
10295
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -10310,7 +10310,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10310
10310
|
climate_preset_key: string;
|
|
10311
10311
|
can_edit: boolean;
|
|
10312
10312
|
can_delete: boolean;
|
|
10313
|
-
|
|
10313
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
10314
10314
|
display_name: string;
|
|
10315
10315
|
manual_override_allowed: boolean;
|
|
10316
10316
|
name?: string | null | undefined;
|
|
@@ -10927,7 +10927,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10927
10927
|
climate_preset_key?: string | undefined;
|
|
10928
10928
|
can_edit?: boolean | undefined;
|
|
10929
10929
|
can_delete?: boolean | undefined;
|
|
10930
|
-
|
|
10930
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10931
10931
|
name?: string | null | undefined;
|
|
10932
10932
|
display_name?: string | undefined;
|
|
10933
10933
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -10948,7 +10948,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10948
10948
|
climate_preset_key?: string | undefined;
|
|
10949
10949
|
can_edit?: boolean | undefined;
|
|
10950
10950
|
can_delete?: boolean | undefined;
|
|
10951
|
-
|
|
10951
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10952
10952
|
name?: string | null | undefined;
|
|
10953
10953
|
display_name?: string | undefined;
|
|
10954
10954
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -10969,7 +10969,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10969
10969
|
climate_preset_key: string;
|
|
10970
10970
|
can_edit: boolean;
|
|
10971
10971
|
can_delete: boolean;
|
|
10972
|
-
|
|
10972
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
10973
10973
|
display_name: string;
|
|
10974
10974
|
manual_override_allowed: boolean;
|
|
10975
10975
|
name?: string | null | undefined;
|
|
@@ -12729,7 +12729,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12729
12729
|
climate_preset_key?: string | undefined;
|
|
12730
12730
|
can_edit?: boolean | undefined;
|
|
12731
12731
|
can_delete?: boolean | undefined;
|
|
12732
|
-
|
|
12732
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12733
12733
|
name?: string | null | undefined;
|
|
12734
12734
|
display_name?: string | undefined;
|
|
12735
12735
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12750,7 +12750,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12750
12750
|
climate_preset_key?: string | undefined;
|
|
12751
12751
|
can_edit?: boolean | undefined;
|
|
12752
12752
|
can_delete?: boolean | undefined;
|
|
12753
|
-
|
|
12753
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12754
12754
|
name?: string | null | undefined;
|
|
12755
12755
|
display_name?: string | undefined;
|
|
12756
12756
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12771,7 +12771,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12771
12771
|
climate_preset_key: string;
|
|
12772
12772
|
can_edit: boolean;
|
|
12773
12773
|
can_delete: boolean;
|
|
12774
|
-
|
|
12774
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
12775
12775
|
display_name: string;
|
|
12776
12776
|
manual_override_allowed: boolean;
|
|
12777
12777
|
name?: string | null | undefined;
|
|
@@ -13647,7 +13647,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13647
13647
|
climate_preset_key?: string | undefined;
|
|
13648
13648
|
can_edit?: boolean | undefined;
|
|
13649
13649
|
can_delete?: boolean | undefined;
|
|
13650
|
-
|
|
13650
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
13651
13651
|
name?: string | null | undefined;
|
|
13652
13652
|
display_name?: string | undefined;
|
|
13653
13653
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -13668,7 +13668,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13668
13668
|
climate_preset_key?: string | undefined;
|
|
13669
13669
|
can_edit?: boolean | undefined;
|
|
13670
13670
|
can_delete?: boolean | undefined;
|
|
13671
|
-
|
|
13671
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
13672
13672
|
name?: string | null | undefined;
|
|
13673
13673
|
display_name?: string | undefined;
|
|
13674
13674
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -13689,7 +13689,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13689
13689
|
climate_preset_key: string;
|
|
13690
13690
|
can_edit: boolean;
|
|
13691
13691
|
can_delete: boolean;
|
|
13692
|
-
|
|
13692
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
13693
13693
|
display_name: string;
|
|
13694
13694
|
manual_override_allowed: boolean;
|
|
13695
13695
|
name?: string | null | undefined;
|
|
@@ -15694,7 +15694,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15694
15694
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
15695
15695
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
15696
15696
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
15697
|
-
|
|
15697
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
15698
15698
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
15699
15699
|
display_name: z.ZodOptional<z.ZodString>;
|
|
15700
15700
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -15722,7 +15722,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15722
15722
|
climate_preset_key?: string | undefined;
|
|
15723
15723
|
can_edit?: boolean | undefined;
|
|
15724
15724
|
can_delete?: boolean | undefined;
|
|
15725
|
-
|
|
15725
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
15726
15726
|
name?: string | null | undefined;
|
|
15727
15727
|
display_name?: string | undefined;
|
|
15728
15728
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -15742,7 +15742,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15742
15742
|
climate_preset_key?: string | undefined;
|
|
15743
15743
|
can_edit?: boolean | undefined;
|
|
15744
15744
|
can_delete?: boolean | undefined;
|
|
15745
|
-
|
|
15745
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
15746
15746
|
name?: string | null | undefined;
|
|
15747
15747
|
display_name?: string | undefined;
|
|
15748
15748
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -15763,7 +15763,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15763
15763
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
15764
15764
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
15765
15765
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
15766
|
-
|
|
15766
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
15767
15767
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
15768
15768
|
display_name: z.ZodOptional<z.ZodString>;
|
|
15769
15769
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -15791,7 +15791,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15791
15791
|
climate_preset_key?: string | undefined;
|
|
15792
15792
|
can_edit?: boolean | undefined;
|
|
15793
15793
|
can_delete?: boolean | undefined;
|
|
15794
|
-
|
|
15794
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
15795
15795
|
name?: string | null | undefined;
|
|
15796
15796
|
display_name?: string | undefined;
|
|
15797
15797
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -15811,7 +15811,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15811
15811
|
climate_preset_key?: string | undefined;
|
|
15812
15812
|
can_edit?: boolean | undefined;
|
|
15813
15813
|
can_delete?: boolean | undefined;
|
|
15814
|
-
|
|
15814
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
15815
15815
|
name?: string | null | undefined;
|
|
15816
15816
|
display_name?: string | undefined;
|
|
15817
15817
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -15832,7 +15832,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15832
15832
|
climate_preset_key: z.ZodString;
|
|
15833
15833
|
can_edit: z.ZodBoolean;
|
|
15834
15834
|
can_delete: z.ZodBoolean;
|
|
15835
|
-
|
|
15835
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
15836
15836
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
15837
15837
|
display_name: z.ZodString;
|
|
15838
15838
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -15860,7 +15860,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15860
15860
|
climate_preset_key: string;
|
|
15861
15861
|
can_edit: boolean;
|
|
15862
15862
|
can_delete: boolean;
|
|
15863
|
-
|
|
15863
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
15864
15864
|
display_name: string;
|
|
15865
15865
|
manual_override_allowed: boolean;
|
|
15866
15866
|
name?: string | null | undefined;
|
|
@@ -15880,7 +15880,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15880
15880
|
climate_preset_key: string;
|
|
15881
15881
|
can_edit: boolean;
|
|
15882
15882
|
can_delete: boolean;
|
|
15883
|
-
|
|
15883
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
15884
15884
|
display_name: string;
|
|
15885
15885
|
manual_override_allowed: boolean;
|
|
15886
15886
|
name?: string | null | undefined;
|
|
@@ -16061,7 +16061,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16061
16061
|
climate_preset_key?: string | undefined;
|
|
16062
16062
|
can_edit?: boolean | undefined;
|
|
16063
16063
|
can_delete?: boolean | undefined;
|
|
16064
|
-
|
|
16064
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
16065
16065
|
name?: string | null | undefined;
|
|
16066
16066
|
display_name?: string | undefined;
|
|
16067
16067
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -16082,7 +16082,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16082
16082
|
climate_preset_key?: string | undefined;
|
|
16083
16083
|
can_edit?: boolean | undefined;
|
|
16084
16084
|
can_delete?: boolean | undefined;
|
|
16085
|
-
|
|
16085
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
16086
16086
|
name?: string | null | undefined;
|
|
16087
16087
|
display_name?: string | undefined;
|
|
16088
16088
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -16103,7 +16103,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16103
16103
|
climate_preset_key: string;
|
|
16104
16104
|
can_edit: boolean;
|
|
16105
16105
|
can_delete: boolean;
|
|
16106
|
-
|
|
16106
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
16107
16107
|
display_name: string;
|
|
16108
16108
|
manual_override_allowed: boolean;
|
|
16109
16109
|
name?: string | null | undefined;
|
|
@@ -16194,7 +16194,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16194
16194
|
climate_preset_key?: string | undefined;
|
|
16195
16195
|
can_edit?: boolean | undefined;
|
|
16196
16196
|
can_delete?: boolean | undefined;
|
|
16197
|
-
|
|
16197
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
16198
16198
|
name?: string | null | undefined;
|
|
16199
16199
|
display_name?: string | undefined;
|
|
16200
16200
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -16215,7 +16215,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16215
16215
|
climate_preset_key?: string | undefined;
|
|
16216
16216
|
can_edit?: boolean | undefined;
|
|
16217
16217
|
can_delete?: boolean | undefined;
|
|
16218
|
-
|
|
16218
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
16219
16219
|
name?: string | null | undefined;
|
|
16220
16220
|
display_name?: string | undefined;
|
|
16221
16221
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -16236,7 +16236,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16236
16236
|
climate_preset_key: string;
|
|
16237
16237
|
can_edit: boolean;
|
|
16238
16238
|
can_delete: boolean;
|
|
16239
|
-
|
|
16239
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
16240
16240
|
display_name: string;
|
|
16241
16241
|
manual_override_allowed: boolean;
|
|
16242
16242
|
name?: string | null | undefined;
|
|
@@ -17421,7 +17421,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17421
17421
|
climate_preset_key?: string | undefined;
|
|
17422
17422
|
can_edit?: boolean | undefined;
|
|
17423
17423
|
can_delete?: boolean | undefined;
|
|
17424
|
-
|
|
17424
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
17425
17425
|
name?: string | null | undefined;
|
|
17426
17426
|
display_name?: string | undefined;
|
|
17427
17427
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -17442,7 +17442,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17442
17442
|
climate_preset_key?: string | undefined;
|
|
17443
17443
|
can_edit?: boolean | undefined;
|
|
17444
17444
|
can_delete?: boolean | undefined;
|
|
17445
|
-
|
|
17445
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
17446
17446
|
name?: string | null | undefined;
|
|
17447
17447
|
display_name?: string | undefined;
|
|
17448
17448
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -17463,7 +17463,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17463
17463
|
climate_preset_key: string;
|
|
17464
17464
|
can_edit: boolean;
|
|
17465
17465
|
can_delete: boolean;
|
|
17466
|
-
|
|
17466
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
17467
17467
|
display_name: string;
|
|
17468
17468
|
manual_override_allowed: boolean;
|
|
17469
17469
|
name?: string | null | undefined;
|
|
@@ -18080,7 +18080,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18080
18080
|
climate_preset_key?: string | undefined;
|
|
18081
18081
|
can_edit?: boolean | undefined;
|
|
18082
18082
|
can_delete?: boolean | undefined;
|
|
18083
|
-
|
|
18083
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
18084
18084
|
name?: string | null | undefined;
|
|
18085
18085
|
display_name?: string | undefined;
|
|
18086
18086
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -18101,7 +18101,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18101
18101
|
climate_preset_key?: string | undefined;
|
|
18102
18102
|
can_edit?: boolean | undefined;
|
|
18103
18103
|
can_delete?: boolean | undefined;
|
|
18104
|
-
|
|
18104
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
18105
18105
|
name?: string | null | undefined;
|
|
18106
18106
|
display_name?: string | undefined;
|
|
18107
18107
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -18122,7 +18122,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18122
18122
|
climate_preset_key: string;
|
|
18123
18123
|
can_edit: boolean;
|
|
18124
18124
|
can_delete: boolean;
|
|
18125
|
-
|
|
18125
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
18126
18126
|
display_name: string;
|
|
18127
18127
|
manual_override_allowed: boolean;
|
|
18128
18128
|
name?: string | null | undefined;
|
|
@@ -19303,7 +19303,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19303
19303
|
climate_preset_key?: string | undefined;
|
|
19304
19304
|
can_edit?: boolean | undefined;
|
|
19305
19305
|
can_delete?: boolean | undefined;
|
|
19306
|
-
|
|
19306
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
19307
19307
|
name?: string | null | undefined;
|
|
19308
19308
|
display_name?: string | undefined;
|
|
19309
19309
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -19324,7 +19324,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19324
19324
|
climate_preset_key?: string | undefined;
|
|
19325
19325
|
can_edit?: boolean | undefined;
|
|
19326
19326
|
can_delete?: boolean | undefined;
|
|
19327
|
-
|
|
19327
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
19328
19328
|
name?: string | null | undefined;
|
|
19329
19329
|
display_name?: string | undefined;
|
|
19330
19330
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -19345,7 +19345,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19345
19345
|
climate_preset_key: string;
|
|
19346
19346
|
can_edit: boolean;
|
|
19347
19347
|
can_delete: boolean;
|
|
19348
|
-
|
|
19348
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
19349
19349
|
display_name: string;
|
|
19350
19350
|
manual_override_allowed: boolean;
|
|
19351
19351
|
name?: string | null | undefined;
|
|
@@ -20117,7 +20117,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20117
20117
|
climate_preset_key?: string | undefined;
|
|
20118
20118
|
can_edit?: boolean | undefined;
|
|
20119
20119
|
can_delete?: boolean | undefined;
|
|
20120
|
-
|
|
20120
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
20121
20121
|
name?: string | null | undefined;
|
|
20122
20122
|
display_name?: string | undefined;
|
|
20123
20123
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -20138,7 +20138,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20138
20138
|
climate_preset_key?: string | undefined;
|
|
20139
20139
|
can_edit?: boolean | undefined;
|
|
20140
20140
|
can_delete?: boolean | undefined;
|
|
20141
|
-
|
|
20141
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
20142
20142
|
name?: string | null | undefined;
|
|
20143
20143
|
display_name?: string | undefined;
|
|
20144
20144
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -20159,7 +20159,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20159
20159
|
climate_preset_key: string;
|
|
20160
20160
|
can_edit: boolean;
|
|
20161
20161
|
can_delete: boolean;
|
|
20162
|
-
|
|
20162
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
20163
20163
|
display_name: string;
|
|
20164
20164
|
manual_override_allowed: boolean;
|
|
20165
20165
|
name?: string | null | undefined;
|
|
@@ -22231,7 +22231,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22231
22231
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
22232
22232
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
22233
22233
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
22234
|
-
|
|
22234
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
22235
22235
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
22236
22236
|
display_name: z.ZodOptional<z.ZodString>;
|
|
22237
22237
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -22259,7 +22259,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22259
22259
|
climate_preset_key?: string | undefined;
|
|
22260
22260
|
can_edit?: boolean | undefined;
|
|
22261
22261
|
can_delete?: boolean | undefined;
|
|
22262
|
-
|
|
22262
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22263
22263
|
name?: string | null | undefined;
|
|
22264
22264
|
display_name?: string | undefined;
|
|
22265
22265
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22279,7 +22279,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22279
22279
|
climate_preset_key?: string | undefined;
|
|
22280
22280
|
can_edit?: boolean | undefined;
|
|
22281
22281
|
can_delete?: boolean | undefined;
|
|
22282
|
-
|
|
22282
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22283
22283
|
name?: string | null | undefined;
|
|
22284
22284
|
display_name?: string | undefined;
|
|
22285
22285
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22300,7 +22300,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22300
22300
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
22301
22301
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
22302
22302
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
22303
|
-
|
|
22303
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
22304
22304
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
22305
22305
|
display_name: z.ZodOptional<z.ZodString>;
|
|
22306
22306
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -22328,7 +22328,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22328
22328
|
climate_preset_key?: string | undefined;
|
|
22329
22329
|
can_edit?: boolean | undefined;
|
|
22330
22330
|
can_delete?: boolean | undefined;
|
|
22331
|
-
|
|
22331
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22332
22332
|
name?: string | null | undefined;
|
|
22333
22333
|
display_name?: string | undefined;
|
|
22334
22334
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22348,7 +22348,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22348
22348
|
climate_preset_key?: string | undefined;
|
|
22349
22349
|
can_edit?: boolean | undefined;
|
|
22350
22350
|
can_delete?: boolean | undefined;
|
|
22351
|
-
|
|
22351
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22352
22352
|
name?: string | null | undefined;
|
|
22353
22353
|
display_name?: string | undefined;
|
|
22354
22354
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22369,7 +22369,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22369
22369
|
climate_preset_key: z.ZodString;
|
|
22370
22370
|
can_edit: z.ZodBoolean;
|
|
22371
22371
|
can_delete: z.ZodBoolean;
|
|
22372
|
-
|
|
22372
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
22373
22373
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
22374
22374
|
display_name: z.ZodString;
|
|
22375
22375
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -22397,7 +22397,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22397
22397
|
climate_preset_key: string;
|
|
22398
22398
|
can_edit: boolean;
|
|
22399
22399
|
can_delete: boolean;
|
|
22400
|
-
|
|
22400
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22401
22401
|
display_name: string;
|
|
22402
22402
|
manual_override_allowed: boolean;
|
|
22403
22403
|
name?: string | null | undefined;
|
|
@@ -22417,7 +22417,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22417
22417
|
climate_preset_key: string;
|
|
22418
22418
|
can_edit: boolean;
|
|
22419
22419
|
can_delete: boolean;
|
|
22420
|
-
|
|
22420
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22421
22421
|
display_name: string;
|
|
22422
22422
|
manual_override_allowed: boolean;
|
|
22423
22423
|
name?: string | null | undefined;
|
|
@@ -22598,7 +22598,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22598
22598
|
climate_preset_key?: string | undefined;
|
|
22599
22599
|
can_edit?: boolean | undefined;
|
|
22600
22600
|
can_delete?: boolean | undefined;
|
|
22601
|
-
|
|
22601
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22602
22602
|
name?: string | null | undefined;
|
|
22603
22603
|
display_name?: string | undefined;
|
|
22604
22604
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22619,7 +22619,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22619
22619
|
climate_preset_key?: string | undefined;
|
|
22620
22620
|
can_edit?: boolean | undefined;
|
|
22621
22621
|
can_delete?: boolean | undefined;
|
|
22622
|
-
|
|
22622
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22623
22623
|
name?: string | null | undefined;
|
|
22624
22624
|
display_name?: string | undefined;
|
|
22625
22625
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22640,7 +22640,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22640
22640
|
climate_preset_key: string;
|
|
22641
22641
|
can_edit: boolean;
|
|
22642
22642
|
can_delete: boolean;
|
|
22643
|
-
|
|
22643
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22644
22644
|
display_name: string;
|
|
22645
22645
|
manual_override_allowed: boolean;
|
|
22646
22646
|
name?: string | null | undefined;
|
|
@@ -22731,7 +22731,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22731
22731
|
climate_preset_key?: string | undefined;
|
|
22732
22732
|
can_edit?: boolean | undefined;
|
|
22733
22733
|
can_delete?: boolean | undefined;
|
|
22734
|
-
|
|
22734
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22735
22735
|
name?: string | null | undefined;
|
|
22736
22736
|
display_name?: string | undefined;
|
|
22737
22737
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22752,7 +22752,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22752
22752
|
climate_preset_key?: string | undefined;
|
|
22753
22753
|
can_edit?: boolean | undefined;
|
|
22754
22754
|
can_delete?: boolean | undefined;
|
|
22755
|
-
|
|
22755
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22756
22756
|
name?: string | null | undefined;
|
|
22757
22757
|
display_name?: string | undefined;
|
|
22758
22758
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22773,7 +22773,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22773
22773
|
climate_preset_key: string;
|
|
22774
22774
|
can_edit: boolean;
|
|
22775
22775
|
can_delete: boolean;
|
|
22776
|
-
|
|
22776
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22777
22777
|
display_name: string;
|
|
22778
22778
|
manual_override_allowed: boolean;
|
|
22779
22779
|
name?: string | null | undefined;
|
|
@@ -23958,7 +23958,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23958
23958
|
climate_preset_key?: string | undefined;
|
|
23959
23959
|
can_edit?: boolean | undefined;
|
|
23960
23960
|
can_delete?: boolean | undefined;
|
|
23961
|
-
|
|
23961
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
23962
23962
|
name?: string | null | undefined;
|
|
23963
23963
|
display_name?: string | undefined;
|
|
23964
23964
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -23979,7 +23979,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23979
23979
|
climate_preset_key?: string | undefined;
|
|
23980
23980
|
can_edit?: boolean | undefined;
|
|
23981
23981
|
can_delete?: boolean | undefined;
|
|
23982
|
-
|
|
23982
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
23983
23983
|
name?: string | null | undefined;
|
|
23984
23984
|
display_name?: string | undefined;
|
|
23985
23985
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -24000,7 +24000,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24000
24000
|
climate_preset_key: string;
|
|
24001
24001
|
can_edit: boolean;
|
|
24002
24002
|
can_delete: boolean;
|
|
24003
|
-
|
|
24003
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
24004
24004
|
display_name: string;
|
|
24005
24005
|
manual_override_allowed: boolean;
|
|
24006
24006
|
name?: string | null | undefined;
|
|
@@ -24617,7 +24617,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24617
24617
|
climate_preset_key?: string | undefined;
|
|
24618
24618
|
can_edit?: boolean | undefined;
|
|
24619
24619
|
can_delete?: boolean | undefined;
|
|
24620
|
-
|
|
24620
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
24621
24621
|
name?: string | null | undefined;
|
|
24622
24622
|
display_name?: string | undefined;
|
|
24623
24623
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -24638,7 +24638,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24638
24638
|
climate_preset_key?: string | undefined;
|
|
24639
24639
|
can_edit?: boolean | undefined;
|
|
24640
24640
|
can_delete?: boolean | undefined;
|
|
24641
|
-
|
|
24641
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
24642
24642
|
name?: string | null | undefined;
|
|
24643
24643
|
display_name?: string | undefined;
|
|
24644
24644
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -24659,7 +24659,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24659
24659
|
climate_preset_key: string;
|
|
24660
24660
|
can_edit: boolean;
|
|
24661
24661
|
can_delete: boolean;
|
|
24662
|
-
|
|
24662
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
24663
24663
|
display_name: string;
|
|
24664
24664
|
manual_override_allowed: boolean;
|
|
24665
24665
|
name?: string | null | undefined;
|
|
@@ -32840,7 +32840,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32840
32840
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
32841
32841
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
32842
32842
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
32843
|
-
|
|
32843
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
32844
32844
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
32845
32845
|
display_name: z.ZodOptional<z.ZodString>;
|
|
32846
32846
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -32868,7 +32868,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32868
32868
|
climate_preset_key?: string | undefined;
|
|
32869
32869
|
can_edit?: boolean | undefined;
|
|
32870
32870
|
can_delete?: boolean | undefined;
|
|
32871
|
-
|
|
32871
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32872
32872
|
name?: string | null | undefined;
|
|
32873
32873
|
display_name?: string | undefined;
|
|
32874
32874
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -32888,7 +32888,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32888
32888
|
climate_preset_key?: string | undefined;
|
|
32889
32889
|
can_edit?: boolean | undefined;
|
|
32890
32890
|
can_delete?: boolean | undefined;
|
|
32891
|
-
|
|
32891
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32892
32892
|
name?: string | null | undefined;
|
|
32893
32893
|
display_name?: string | undefined;
|
|
32894
32894
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -32909,7 +32909,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32909
32909
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
32910
32910
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
32911
32911
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
32912
|
-
|
|
32912
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
32913
32913
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
32914
32914
|
display_name: z.ZodOptional<z.ZodString>;
|
|
32915
32915
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -32937,7 +32937,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32937
32937
|
climate_preset_key?: string | undefined;
|
|
32938
32938
|
can_edit?: boolean | undefined;
|
|
32939
32939
|
can_delete?: boolean | undefined;
|
|
32940
|
-
|
|
32940
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32941
32941
|
name?: string | null | undefined;
|
|
32942
32942
|
display_name?: string | undefined;
|
|
32943
32943
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -32957,7 +32957,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32957
32957
|
climate_preset_key?: string | undefined;
|
|
32958
32958
|
can_edit?: boolean | undefined;
|
|
32959
32959
|
can_delete?: boolean | undefined;
|
|
32960
|
-
|
|
32960
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32961
32961
|
name?: string | null | undefined;
|
|
32962
32962
|
display_name?: string | undefined;
|
|
32963
32963
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -32978,7 +32978,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32978
32978
|
climate_preset_key: z.ZodString;
|
|
32979
32979
|
can_edit: z.ZodBoolean;
|
|
32980
32980
|
can_delete: z.ZodBoolean;
|
|
32981
|
-
|
|
32981
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
32982
32982
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
32983
32983
|
display_name: z.ZodString;
|
|
32984
32984
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -33006,7 +33006,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33006
33006
|
climate_preset_key: string;
|
|
33007
33007
|
can_edit: boolean;
|
|
33008
33008
|
can_delete: boolean;
|
|
33009
|
-
|
|
33009
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
33010
33010
|
display_name: string;
|
|
33011
33011
|
manual_override_allowed: boolean;
|
|
33012
33012
|
name?: string | null | undefined;
|
|
@@ -33026,7 +33026,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33026
33026
|
climate_preset_key: string;
|
|
33027
33027
|
can_edit: boolean;
|
|
33028
33028
|
can_delete: boolean;
|
|
33029
|
-
|
|
33029
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
33030
33030
|
display_name: string;
|
|
33031
33031
|
manual_override_allowed: boolean;
|
|
33032
33032
|
name?: string | null | undefined;
|
|
@@ -33207,7 +33207,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33207
33207
|
climate_preset_key?: string | undefined;
|
|
33208
33208
|
can_edit?: boolean | undefined;
|
|
33209
33209
|
can_delete?: boolean | undefined;
|
|
33210
|
-
|
|
33210
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33211
33211
|
name?: string | null | undefined;
|
|
33212
33212
|
display_name?: string | undefined;
|
|
33213
33213
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -33228,7 +33228,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33228
33228
|
climate_preset_key?: string | undefined;
|
|
33229
33229
|
can_edit?: boolean | undefined;
|
|
33230
33230
|
can_delete?: boolean | undefined;
|
|
33231
|
-
|
|
33231
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33232
33232
|
name?: string | null | undefined;
|
|
33233
33233
|
display_name?: string | undefined;
|
|
33234
33234
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -33249,7 +33249,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33249
33249
|
climate_preset_key: string;
|
|
33250
33250
|
can_edit: boolean;
|
|
33251
33251
|
can_delete: boolean;
|
|
33252
|
-
|
|
33252
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
33253
33253
|
display_name: string;
|
|
33254
33254
|
manual_override_allowed: boolean;
|
|
33255
33255
|
name?: string | null | undefined;
|
|
@@ -33340,7 +33340,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33340
33340
|
climate_preset_key?: string | undefined;
|
|
33341
33341
|
can_edit?: boolean | undefined;
|
|
33342
33342
|
can_delete?: boolean | undefined;
|
|
33343
|
-
|
|
33343
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33344
33344
|
name?: string | null | undefined;
|
|
33345
33345
|
display_name?: string | undefined;
|
|
33346
33346
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -33361,7 +33361,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33361
33361
|
climate_preset_key?: string | undefined;
|
|
33362
33362
|
can_edit?: boolean | undefined;
|
|
33363
33363
|
can_delete?: boolean | undefined;
|
|
33364
|
-
|
|
33364
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33365
33365
|
name?: string | null | undefined;
|
|
33366
33366
|
display_name?: string | undefined;
|
|
33367
33367
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -33382,7 +33382,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33382
33382
|
climate_preset_key: string;
|
|
33383
33383
|
can_edit: boolean;
|
|
33384
33384
|
can_delete: boolean;
|
|
33385
|
-
|
|
33385
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
33386
33386
|
display_name: string;
|
|
33387
33387
|
manual_override_allowed: boolean;
|
|
33388
33388
|
name?: string | null | undefined;
|
|
@@ -37957,7 +37957,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37957
37957
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
37958
37958
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
37959
37959
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
37960
|
-
|
|
37960
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
37961
37961
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
37962
37962
|
display_name: z.ZodOptional<z.ZodString>;
|
|
37963
37963
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -42043,7 +42043,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42043
42043
|
climate_preset_key?: string | undefined;
|
|
42044
42044
|
can_edit?: boolean | undefined;
|
|
42045
42045
|
can_delete?: boolean | undefined;
|
|
42046
|
-
|
|
42046
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42047
42047
|
name?: string | null | undefined;
|
|
42048
42048
|
display_name?: string | undefined;
|
|
42049
42049
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -42064,7 +42064,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42064
42064
|
climate_preset_key?: string | undefined;
|
|
42065
42065
|
can_edit?: boolean | undefined;
|
|
42066
42066
|
can_delete?: boolean | undefined;
|
|
42067
|
-
|
|
42067
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42068
42068
|
name?: string | null | undefined;
|
|
42069
42069
|
display_name?: string | undefined;
|
|
42070
42070
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -42085,7 +42085,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42085
42085
|
climate_preset_key: string;
|
|
42086
42086
|
can_edit: boolean;
|
|
42087
42087
|
can_delete: boolean;
|
|
42088
|
-
|
|
42088
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
42089
42089
|
display_name: string;
|
|
42090
42090
|
manual_override_allowed: boolean;
|
|
42091
42091
|
name?: string | null | undefined;
|
|
@@ -46019,7 +46019,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46019
46019
|
climate_preset_key?: string | undefined;
|
|
46020
46020
|
can_edit?: boolean | undefined;
|
|
46021
46021
|
can_delete?: boolean | undefined;
|
|
46022
|
-
|
|
46022
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46023
46023
|
name?: string | null | undefined;
|
|
46024
46024
|
display_name?: string | undefined;
|
|
46025
46025
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46040,7 +46040,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46040
46040
|
climate_preset_key?: string | undefined;
|
|
46041
46041
|
can_edit?: boolean | undefined;
|
|
46042
46042
|
can_delete?: boolean | undefined;
|
|
46043
|
-
|
|
46043
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46044
46044
|
name?: string | null | undefined;
|
|
46045
46045
|
display_name?: string | undefined;
|
|
46046
46046
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46061,7 +46061,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46061
46061
|
climate_preset_key: string;
|
|
46062
46062
|
can_edit: boolean;
|
|
46063
46063
|
can_delete: boolean;
|
|
46064
|
-
|
|
46064
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
46065
46065
|
display_name: string;
|
|
46066
46066
|
manual_override_allowed: boolean;
|
|
46067
46067
|
name?: string | null | undefined;
|
|
@@ -51284,7 +51284,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51284
51284
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
51285
51285
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
51286
51286
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
51287
|
-
|
|
51287
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
51288
51288
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
51289
51289
|
display_name: z.ZodOptional<z.ZodString>;
|
|
51290
51290
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -51312,7 +51312,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51312
51312
|
climate_preset_key?: string | undefined;
|
|
51313
51313
|
can_edit?: boolean | undefined;
|
|
51314
51314
|
can_delete?: boolean | undefined;
|
|
51315
|
-
|
|
51315
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51316
51316
|
name?: string | null | undefined;
|
|
51317
51317
|
display_name?: string | undefined;
|
|
51318
51318
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51332,7 +51332,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51332
51332
|
climate_preset_key?: string | undefined;
|
|
51333
51333
|
can_edit?: boolean | undefined;
|
|
51334
51334
|
can_delete?: boolean | undefined;
|
|
51335
|
-
|
|
51335
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51336
51336
|
name?: string | null | undefined;
|
|
51337
51337
|
display_name?: string | undefined;
|
|
51338
51338
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51353,7 +51353,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51353
51353
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
51354
51354
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
51355
51355
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
51356
|
-
|
|
51356
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
51357
51357
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
51358
51358
|
display_name: z.ZodOptional<z.ZodString>;
|
|
51359
51359
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -51381,7 +51381,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51381
51381
|
climate_preset_key?: string | undefined;
|
|
51382
51382
|
can_edit?: boolean | undefined;
|
|
51383
51383
|
can_delete?: boolean | undefined;
|
|
51384
|
-
|
|
51384
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51385
51385
|
name?: string | null | undefined;
|
|
51386
51386
|
display_name?: string | undefined;
|
|
51387
51387
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51401,7 +51401,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51401
51401
|
climate_preset_key?: string | undefined;
|
|
51402
51402
|
can_edit?: boolean | undefined;
|
|
51403
51403
|
can_delete?: boolean | undefined;
|
|
51404
|
-
|
|
51404
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51405
51405
|
name?: string | null | undefined;
|
|
51406
51406
|
display_name?: string | undefined;
|
|
51407
51407
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51422,7 +51422,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51422
51422
|
climate_preset_key: z.ZodString;
|
|
51423
51423
|
can_edit: z.ZodBoolean;
|
|
51424
51424
|
can_delete: z.ZodBoolean;
|
|
51425
|
-
|
|
51425
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
51426
51426
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
51427
51427
|
display_name: z.ZodString;
|
|
51428
51428
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -51450,7 +51450,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51450
51450
|
climate_preset_key: string;
|
|
51451
51451
|
can_edit: boolean;
|
|
51452
51452
|
can_delete: boolean;
|
|
51453
|
-
|
|
51453
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51454
51454
|
display_name: string;
|
|
51455
51455
|
manual_override_allowed: boolean;
|
|
51456
51456
|
name?: string | null | undefined;
|
|
@@ -51470,7 +51470,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51470
51470
|
climate_preset_key: string;
|
|
51471
51471
|
can_edit: boolean;
|
|
51472
51472
|
can_delete: boolean;
|
|
51473
|
-
|
|
51473
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51474
51474
|
display_name: string;
|
|
51475
51475
|
manual_override_allowed: boolean;
|
|
51476
51476
|
name?: string | null | undefined;
|
|
@@ -51651,7 +51651,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51651
51651
|
climate_preset_key?: string | undefined;
|
|
51652
51652
|
can_edit?: boolean | undefined;
|
|
51653
51653
|
can_delete?: boolean | undefined;
|
|
51654
|
-
|
|
51654
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51655
51655
|
name?: string | null | undefined;
|
|
51656
51656
|
display_name?: string | undefined;
|
|
51657
51657
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51672,7 +51672,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51672
51672
|
climate_preset_key?: string | undefined;
|
|
51673
51673
|
can_edit?: boolean | undefined;
|
|
51674
51674
|
can_delete?: boolean | undefined;
|
|
51675
|
-
|
|
51675
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51676
51676
|
name?: string | null | undefined;
|
|
51677
51677
|
display_name?: string | undefined;
|
|
51678
51678
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51693,7 +51693,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51693
51693
|
climate_preset_key: string;
|
|
51694
51694
|
can_edit: boolean;
|
|
51695
51695
|
can_delete: boolean;
|
|
51696
|
-
|
|
51696
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51697
51697
|
display_name: string;
|
|
51698
51698
|
manual_override_allowed: boolean;
|
|
51699
51699
|
name?: string | null | undefined;
|
|
@@ -51784,7 +51784,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51784
51784
|
climate_preset_key?: string | undefined;
|
|
51785
51785
|
can_edit?: boolean | undefined;
|
|
51786
51786
|
can_delete?: boolean | undefined;
|
|
51787
|
-
|
|
51787
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51788
51788
|
name?: string | null | undefined;
|
|
51789
51789
|
display_name?: string | undefined;
|
|
51790
51790
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51805,7 +51805,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51805
51805
|
climate_preset_key?: string | undefined;
|
|
51806
51806
|
can_edit?: boolean | undefined;
|
|
51807
51807
|
can_delete?: boolean | undefined;
|
|
51808
|
-
|
|
51808
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51809
51809
|
name?: string | null | undefined;
|
|
51810
51810
|
display_name?: string | undefined;
|
|
51811
51811
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51826,7 +51826,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51826
51826
|
climate_preset_key: string;
|
|
51827
51827
|
can_edit: boolean;
|
|
51828
51828
|
can_delete: boolean;
|
|
51829
|
-
|
|
51829
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51830
51830
|
display_name: string;
|
|
51831
51831
|
manual_override_allowed: boolean;
|
|
51832
51832
|
name?: string | null | undefined;
|
|
@@ -53011,7 +53011,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53011
53011
|
climate_preset_key?: string | undefined;
|
|
53012
53012
|
can_edit?: boolean | undefined;
|
|
53013
53013
|
can_delete?: boolean | undefined;
|
|
53014
|
-
|
|
53014
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
53015
53015
|
name?: string | null | undefined;
|
|
53016
53016
|
display_name?: string | undefined;
|
|
53017
53017
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -53032,7 +53032,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53032
53032
|
climate_preset_key?: string | undefined;
|
|
53033
53033
|
can_edit?: boolean | undefined;
|
|
53034
53034
|
can_delete?: boolean | undefined;
|
|
53035
|
-
|
|
53035
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
53036
53036
|
name?: string | null | undefined;
|
|
53037
53037
|
display_name?: string | undefined;
|
|
53038
53038
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -53053,7 +53053,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53053
53053
|
climate_preset_key: string;
|
|
53054
53054
|
can_edit: boolean;
|
|
53055
53055
|
can_delete: boolean;
|
|
53056
|
-
|
|
53056
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
53057
53057
|
display_name: string;
|
|
53058
53058
|
manual_override_allowed: boolean;
|
|
53059
53059
|
name?: string | null | undefined;
|
|
@@ -53670,7 +53670,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53670
53670
|
climate_preset_key?: string | undefined;
|
|
53671
53671
|
can_edit?: boolean | undefined;
|
|
53672
53672
|
can_delete?: boolean | undefined;
|
|
53673
|
-
|
|
53673
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
53674
53674
|
name?: string | null | undefined;
|
|
53675
53675
|
display_name?: string | undefined;
|
|
53676
53676
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -53691,7 +53691,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53691
53691
|
climate_preset_key?: string | undefined;
|
|
53692
53692
|
can_edit?: boolean | undefined;
|
|
53693
53693
|
can_delete?: boolean | undefined;
|
|
53694
|
-
|
|
53694
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
53695
53695
|
name?: string | null | undefined;
|
|
53696
53696
|
display_name?: string | undefined;
|
|
53697
53697
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -53712,7 +53712,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53712
53712
|
climate_preset_key: string;
|
|
53713
53713
|
can_edit: boolean;
|
|
53714
53714
|
can_delete: boolean;
|
|
53715
|
-
|
|
53715
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
53716
53716
|
display_name: string;
|
|
53717
53717
|
manual_override_allowed: boolean;
|
|
53718
53718
|
name?: string | null | undefined;
|
|
@@ -61893,7 +61893,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61893
61893
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
61894
61894
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
61895
61895
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
61896
|
-
|
|
61896
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
61897
61897
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
61898
61898
|
display_name: z.ZodOptional<z.ZodString>;
|
|
61899
61899
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -61921,7 +61921,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61921
61921
|
climate_preset_key?: string | undefined;
|
|
61922
61922
|
can_edit?: boolean | undefined;
|
|
61923
61923
|
can_delete?: boolean | undefined;
|
|
61924
|
-
|
|
61924
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
61925
61925
|
name?: string | null | undefined;
|
|
61926
61926
|
display_name?: string | undefined;
|
|
61927
61927
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -61941,7 +61941,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61941
61941
|
climate_preset_key?: string | undefined;
|
|
61942
61942
|
can_edit?: boolean | undefined;
|
|
61943
61943
|
can_delete?: boolean | undefined;
|
|
61944
|
-
|
|
61944
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
61945
61945
|
name?: string | null | undefined;
|
|
61946
61946
|
display_name?: string | undefined;
|
|
61947
61947
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -61962,7 +61962,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61962
61962
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
61963
61963
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
61964
61964
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
61965
|
-
|
|
61965
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
61966
61966
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
61967
61967
|
display_name: z.ZodOptional<z.ZodString>;
|
|
61968
61968
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -61990,7 +61990,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61990
61990
|
climate_preset_key?: string | undefined;
|
|
61991
61991
|
can_edit?: boolean | undefined;
|
|
61992
61992
|
can_delete?: boolean | undefined;
|
|
61993
|
-
|
|
61993
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
61994
61994
|
name?: string | null | undefined;
|
|
61995
61995
|
display_name?: string | undefined;
|
|
61996
61996
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62010,7 +62010,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62010
62010
|
climate_preset_key?: string | undefined;
|
|
62011
62011
|
can_edit?: boolean | undefined;
|
|
62012
62012
|
can_delete?: boolean | undefined;
|
|
62013
|
-
|
|
62013
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62014
62014
|
name?: string | null | undefined;
|
|
62015
62015
|
display_name?: string | undefined;
|
|
62016
62016
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62031,7 +62031,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62031
62031
|
climate_preset_key: z.ZodString;
|
|
62032
62032
|
can_edit: z.ZodBoolean;
|
|
62033
62033
|
can_delete: z.ZodBoolean;
|
|
62034
|
-
|
|
62034
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
62035
62035
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
62036
62036
|
display_name: z.ZodString;
|
|
62037
62037
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -62059,7 +62059,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62059
62059
|
climate_preset_key: string;
|
|
62060
62060
|
can_edit: boolean;
|
|
62061
62061
|
can_delete: boolean;
|
|
62062
|
-
|
|
62062
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
62063
62063
|
display_name: string;
|
|
62064
62064
|
manual_override_allowed: boolean;
|
|
62065
62065
|
name?: string | null | undefined;
|
|
@@ -62079,7 +62079,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62079
62079
|
climate_preset_key: string;
|
|
62080
62080
|
can_edit: boolean;
|
|
62081
62081
|
can_delete: boolean;
|
|
62082
|
-
|
|
62082
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
62083
62083
|
display_name: string;
|
|
62084
62084
|
manual_override_allowed: boolean;
|
|
62085
62085
|
name?: string | null | undefined;
|
|
@@ -62260,7 +62260,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62260
62260
|
climate_preset_key?: string | undefined;
|
|
62261
62261
|
can_edit?: boolean | undefined;
|
|
62262
62262
|
can_delete?: boolean | undefined;
|
|
62263
|
-
|
|
62263
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62264
62264
|
name?: string | null | undefined;
|
|
62265
62265
|
display_name?: string | undefined;
|
|
62266
62266
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62281,7 +62281,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62281
62281
|
climate_preset_key?: string | undefined;
|
|
62282
62282
|
can_edit?: boolean | undefined;
|
|
62283
62283
|
can_delete?: boolean | undefined;
|
|
62284
|
-
|
|
62284
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62285
62285
|
name?: string | null | undefined;
|
|
62286
62286
|
display_name?: string | undefined;
|
|
62287
62287
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62302,7 +62302,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62302
62302
|
climate_preset_key: string;
|
|
62303
62303
|
can_edit: boolean;
|
|
62304
62304
|
can_delete: boolean;
|
|
62305
|
-
|
|
62305
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
62306
62306
|
display_name: string;
|
|
62307
62307
|
manual_override_allowed: boolean;
|
|
62308
62308
|
name?: string | null | undefined;
|
|
@@ -62393,7 +62393,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62393
62393
|
climate_preset_key?: string | undefined;
|
|
62394
62394
|
can_edit?: boolean | undefined;
|
|
62395
62395
|
can_delete?: boolean | undefined;
|
|
62396
|
-
|
|
62396
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62397
62397
|
name?: string | null | undefined;
|
|
62398
62398
|
display_name?: string | undefined;
|
|
62399
62399
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62414,7 +62414,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62414
62414
|
climate_preset_key?: string | undefined;
|
|
62415
62415
|
can_edit?: boolean | undefined;
|
|
62416
62416
|
can_delete?: boolean | undefined;
|
|
62417
|
-
|
|
62417
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62418
62418
|
name?: string | null | undefined;
|
|
62419
62419
|
display_name?: string | undefined;
|
|
62420
62420
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62435,7 +62435,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62435
62435
|
climate_preset_key: string;
|
|
62436
62436
|
can_edit: boolean;
|
|
62437
62437
|
can_delete: boolean;
|
|
62438
|
-
|
|
62438
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
62439
62439
|
display_name: string;
|
|
62440
62440
|
manual_override_allowed: boolean;
|
|
62441
62441
|
name?: string | null | undefined;
|
|
@@ -66638,7 +66638,7 @@ export declare const batch: z.ZodObject<{
|
|
|
66638
66638
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
66639
66639
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
66640
66640
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
66641
|
-
|
|
66641
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
66642
66642
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
66643
66643
|
display_name: z.ZodOptional<z.ZodString>;
|
|
66644
66644
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -70724,7 +70724,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70724
70724
|
climate_preset_key?: string | undefined;
|
|
70725
70725
|
can_edit?: boolean | undefined;
|
|
70726
70726
|
can_delete?: boolean | undefined;
|
|
70727
|
-
|
|
70727
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
70728
70728
|
name?: string | null | undefined;
|
|
70729
70729
|
display_name?: string | undefined;
|
|
70730
70730
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -70745,7 +70745,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70745
70745
|
climate_preset_key?: string | undefined;
|
|
70746
70746
|
can_edit?: boolean | undefined;
|
|
70747
70747
|
can_delete?: boolean | undefined;
|
|
70748
|
-
|
|
70748
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
70749
70749
|
name?: string | null | undefined;
|
|
70750
70750
|
display_name?: string | undefined;
|
|
70751
70751
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -70766,7 +70766,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70766
70766
|
climate_preset_key: string;
|
|
70767
70767
|
can_edit: boolean;
|
|
70768
70768
|
can_delete: boolean;
|
|
70769
|
-
|
|
70769
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
70770
70770
|
display_name: string;
|
|
70771
70771
|
manual_override_allowed: boolean;
|
|
70772
70772
|
name?: string | null | undefined;
|
|
@@ -74631,7 +74631,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74631
74631
|
climate_preset_key?: string | undefined;
|
|
74632
74632
|
can_edit?: boolean | undefined;
|
|
74633
74633
|
can_delete?: boolean | undefined;
|
|
74634
|
-
|
|
74634
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
74635
74635
|
name?: string | null | undefined;
|
|
74636
74636
|
display_name?: string | undefined;
|
|
74637
74637
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -74652,7 +74652,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74652
74652
|
climate_preset_key?: string | undefined;
|
|
74653
74653
|
can_edit?: boolean | undefined;
|
|
74654
74654
|
can_delete?: boolean | undefined;
|
|
74655
|
-
|
|
74655
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
74656
74656
|
name?: string | null | undefined;
|
|
74657
74657
|
display_name?: string | undefined;
|
|
74658
74658
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -74673,7 +74673,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74673
74673
|
climate_preset_key: string;
|
|
74674
74674
|
can_edit: boolean;
|
|
74675
74675
|
can_delete: boolean;
|
|
74676
|
-
|
|
74676
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
74677
74677
|
display_name: string;
|
|
74678
74678
|
manual_override_allowed: boolean;
|
|
74679
74679
|
name?: string | null | undefined;
|