@seamapi/types 1.579.0 → 1.581.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 +89 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +303 -147
- package/dist/index.cjs +89 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +278 -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-provider.d.ts +9 -0
- package/lib/seam/connect/models/devices/device.d.ts +39 -21
- package/lib/seam/connect/models/devices/device.js +3 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +27 -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 +30 -3
- package/lib/seam/connect/openapi.js +85 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +127 -61
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +85 -4
- package/src/lib/seam/connect/route-types.ts +231 -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;
|
|
@@ -2860,6 +2860,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2860
2860
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2861
2861
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
2862
2862
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
2863
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
2864
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
2865
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
2863
2866
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2864
2867
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2865
2868
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3379,7 +3382,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3379
3382
|
climate_preset_key?: string | undefined;
|
|
3380
3383
|
can_edit?: boolean | undefined;
|
|
3381
3384
|
can_delete?: boolean | undefined;
|
|
3382
|
-
|
|
3385
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
3383
3386
|
name?: string | null | undefined;
|
|
3384
3387
|
display_name?: string | undefined;
|
|
3385
3388
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -3400,7 +3403,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3400
3403
|
climate_preset_key?: string | undefined;
|
|
3401
3404
|
can_edit?: boolean | undefined;
|
|
3402
3405
|
can_delete?: boolean | undefined;
|
|
3403
|
-
|
|
3406
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
3404
3407
|
name?: string | null | undefined;
|
|
3405
3408
|
display_name?: string | undefined;
|
|
3406
3409
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -3421,7 +3424,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3421
3424
|
climate_preset_key: string;
|
|
3422
3425
|
can_edit: boolean;
|
|
3423
3426
|
can_delete: boolean;
|
|
3424
|
-
|
|
3427
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
3425
3428
|
display_name: string;
|
|
3426
3429
|
manual_override_allowed: boolean;
|
|
3427
3430
|
name?: string | null | undefined;
|
|
@@ -3515,6 +3518,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3515
3518
|
can_simulate_disconnection?: boolean | undefined;
|
|
3516
3519
|
can_unlock_with_code?: boolean | undefined;
|
|
3517
3520
|
can_run_thermostat_programs?: boolean | undefined;
|
|
3521
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
3522
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
3523
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
3518
3524
|
can_simulate_hub_connection?: boolean | undefined;
|
|
3519
3525
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
3520
3526
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -4035,7 +4041,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4035
4041
|
climate_preset_key?: string | undefined;
|
|
4036
4042
|
can_edit?: boolean | undefined;
|
|
4037
4043
|
can_delete?: boolean | undefined;
|
|
4038
|
-
|
|
4044
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
4039
4045
|
name?: string | null | undefined;
|
|
4040
4046
|
display_name?: string | undefined;
|
|
4041
4047
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -4056,7 +4062,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4056
4062
|
climate_preset_key?: string | undefined;
|
|
4057
4063
|
can_edit?: boolean | undefined;
|
|
4058
4064
|
can_delete?: boolean | undefined;
|
|
4059
|
-
|
|
4065
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
4060
4066
|
name?: string | null | undefined;
|
|
4061
4067
|
display_name?: string | undefined;
|
|
4062
4068
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -4077,7 +4083,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4077
4083
|
climate_preset_key: string;
|
|
4078
4084
|
can_edit: boolean;
|
|
4079
4085
|
can_delete: boolean;
|
|
4080
|
-
|
|
4086
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
4081
4087
|
display_name: string;
|
|
4082
4088
|
manual_override_allowed: boolean;
|
|
4083
4089
|
name?: string | null | undefined;
|
|
@@ -4171,6 +4177,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4171
4177
|
can_simulate_disconnection?: boolean | undefined;
|
|
4172
4178
|
can_unlock_with_code?: boolean | undefined;
|
|
4173
4179
|
can_run_thermostat_programs?: boolean | undefined;
|
|
4180
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
4181
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
4182
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
4174
4183
|
can_simulate_hub_connection?: boolean | undefined;
|
|
4175
4184
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
4176
4185
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -5659,7 +5668,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5659
5668
|
climate_preset_key?: string | undefined;
|
|
5660
5669
|
can_edit?: boolean | undefined;
|
|
5661
5670
|
can_delete?: boolean | undefined;
|
|
5662
|
-
|
|
5671
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
5663
5672
|
name?: string | null | undefined;
|
|
5664
5673
|
display_name?: string | undefined;
|
|
5665
5674
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -5680,7 +5689,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5680
5689
|
climate_preset_key?: string | undefined;
|
|
5681
5690
|
can_edit?: boolean | undefined;
|
|
5682
5691
|
can_delete?: boolean | undefined;
|
|
5683
|
-
|
|
5692
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
5684
5693
|
name?: string | null | undefined;
|
|
5685
5694
|
display_name?: string | undefined;
|
|
5686
5695
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -5701,7 +5710,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5701
5710
|
climate_preset_key: string;
|
|
5702
5711
|
can_edit: boolean;
|
|
5703
5712
|
can_delete: boolean;
|
|
5704
|
-
|
|
5713
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
5705
5714
|
display_name: string;
|
|
5706
5715
|
manual_override_allowed: boolean;
|
|
5707
5716
|
name?: string | null | undefined;
|
|
@@ -5795,6 +5804,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5795
5804
|
can_simulate_disconnection?: boolean | undefined;
|
|
5796
5805
|
can_unlock_with_code?: boolean | undefined;
|
|
5797
5806
|
can_run_thermostat_programs?: boolean | undefined;
|
|
5807
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
5808
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
5809
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
5798
5810
|
can_simulate_hub_connection?: boolean | undefined;
|
|
5799
5811
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
5800
5812
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -6528,7 +6540,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6528
6540
|
climate_preset_key?: string | undefined;
|
|
6529
6541
|
can_edit?: boolean | undefined;
|
|
6530
6542
|
can_delete?: boolean | undefined;
|
|
6531
|
-
|
|
6543
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
6532
6544
|
name?: string | null | undefined;
|
|
6533
6545
|
display_name?: string | undefined;
|
|
6534
6546
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -6549,7 +6561,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6549
6561
|
climate_preset_key?: string | undefined;
|
|
6550
6562
|
can_edit?: boolean | undefined;
|
|
6551
6563
|
can_delete?: boolean | undefined;
|
|
6552
|
-
|
|
6564
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
6553
6565
|
name?: string | null | undefined;
|
|
6554
6566
|
display_name?: string | undefined;
|
|
6555
6567
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -6570,7 +6582,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6570
6582
|
climate_preset_key: string;
|
|
6571
6583
|
can_edit: boolean;
|
|
6572
6584
|
can_delete: boolean;
|
|
6573
|
-
|
|
6585
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
6574
6586
|
display_name: string;
|
|
6575
6587
|
manual_override_allowed: boolean;
|
|
6576
6588
|
name?: string | null | undefined;
|
|
@@ -6664,6 +6676,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6664
6676
|
can_simulate_disconnection?: boolean | undefined;
|
|
6665
6677
|
can_unlock_with_code?: boolean | undefined;
|
|
6666
6678
|
can_run_thermostat_programs?: boolean | undefined;
|
|
6679
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
6680
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
6681
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
6667
6682
|
can_simulate_hub_connection?: boolean | undefined;
|
|
6668
6683
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
6669
6684
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -8526,7 +8541,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8526
8541
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
8527
8542
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
8528
8543
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
8529
|
-
|
|
8544
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
8530
8545
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
8531
8546
|
display_name: z.ZodOptional<z.ZodString>;
|
|
8532
8547
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -8554,7 +8569,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8554
8569
|
climate_preset_key?: string | undefined;
|
|
8555
8570
|
can_edit?: boolean | undefined;
|
|
8556
8571
|
can_delete?: boolean | undefined;
|
|
8557
|
-
|
|
8572
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8558
8573
|
name?: string | null | undefined;
|
|
8559
8574
|
display_name?: string | undefined;
|
|
8560
8575
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8574,7 +8589,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8574
8589
|
climate_preset_key?: string | undefined;
|
|
8575
8590
|
can_edit?: boolean | undefined;
|
|
8576
8591
|
can_delete?: boolean | undefined;
|
|
8577
|
-
|
|
8592
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8578
8593
|
name?: string | null | undefined;
|
|
8579
8594
|
display_name?: string | undefined;
|
|
8580
8595
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8595,7 +8610,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8595
8610
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
8596
8611
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
8597
8612
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
8598
|
-
|
|
8613
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
8599
8614
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
8600
8615
|
display_name: z.ZodOptional<z.ZodString>;
|
|
8601
8616
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -8623,7 +8638,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8623
8638
|
climate_preset_key?: string | undefined;
|
|
8624
8639
|
can_edit?: boolean | undefined;
|
|
8625
8640
|
can_delete?: boolean | undefined;
|
|
8626
|
-
|
|
8641
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8627
8642
|
name?: string | null | undefined;
|
|
8628
8643
|
display_name?: string | undefined;
|
|
8629
8644
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8643,7 +8658,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8643
8658
|
climate_preset_key?: string | undefined;
|
|
8644
8659
|
can_edit?: boolean | undefined;
|
|
8645
8660
|
can_delete?: boolean | undefined;
|
|
8646
|
-
|
|
8661
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8647
8662
|
name?: string | null | undefined;
|
|
8648
8663
|
display_name?: string | undefined;
|
|
8649
8664
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8664,7 +8679,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8664
8679
|
climate_preset_key: z.ZodString;
|
|
8665
8680
|
can_edit: z.ZodBoolean;
|
|
8666
8681
|
can_delete: z.ZodBoolean;
|
|
8667
|
-
|
|
8682
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
8668
8683
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
8669
8684
|
display_name: z.ZodString;
|
|
8670
8685
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -8692,7 +8707,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8692
8707
|
climate_preset_key: string;
|
|
8693
8708
|
can_edit: boolean;
|
|
8694
8709
|
can_delete: boolean;
|
|
8695
|
-
|
|
8710
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
8696
8711
|
display_name: string;
|
|
8697
8712
|
manual_override_allowed: boolean;
|
|
8698
8713
|
name?: string | null | undefined;
|
|
@@ -8712,7 +8727,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8712
8727
|
climate_preset_key: string;
|
|
8713
8728
|
can_edit: boolean;
|
|
8714
8729
|
can_delete: boolean;
|
|
8715
|
-
|
|
8730
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
8716
8731
|
display_name: string;
|
|
8717
8732
|
manual_override_allowed: boolean;
|
|
8718
8733
|
name?: string | null | undefined;
|
|
@@ -8893,7 +8908,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8893
8908
|
climate_preset_key?: string | undefined;
|
|
8894
8909
|
can_edit?: boolean | undefined;
|
|
8895
8910
|
can_delete?: boolean | undefined;
|
|
8896
|
-
|
|
8911
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8897
8912
|
name?: string | null | undefined;
|
|
8898
8913
|
display_name?: string | undefined;
|
|
8899
8914
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8914,7 +8929,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8914
8929
|
climate_preset_key?: string | undefined;
|
|
8915
8930
|
can_edit?: boolean | undefined;
|
|
8916
8931
|
can_delete?: boolean | undefined;
|
|
8917
|
-
|
|
8932
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
8918
8933
|
name?: string | null | undefined;
|
|
8919
8934
|
display_name?: string | undefined;
|
|
8920
8935
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -8935,7 +8950,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8935
8950
|
climate_preset_key: string;
|
|
8936
8951
|
can_edit: boolean;
|
|
8937
8952
|
can_delete: boolean;
|
|
8938
|
-
|
|
8953
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
8939
8954
|
display_name: string;
|
|
8940
8955
|
manual_override_allowed: boolean;
|
|
8941
8956
|
name?: string | null | undefined;
|
|
@@ -9026,7 +9041,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9026
9041
|
climate_preset_key?: string | undefined;
|
|
9027
9042
|
can_edit?: boolean | undefined;
|
|
9028
9043
|
can_delete?: boolean | undefined;
|
|
9029
|
-
|
|
9044
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
9030
9045
|
name?: string | null | undefined;
|
|
9031
9046
|
display_name?: string | undefined;
|
|
9032
9047
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -9047,7 +9062,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9047
9062
|
climate_preset_key?: string | undefined;
|
|
9048
9063
|
can_edit?: boolean | undefined;
|
|
9049
9064
|
can_delete?: boolean | undefined;
|
|
9050
|
-
|
|
9065
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
9051
9066
|
name?: string | null | undefined;
|
|
9052
9067
|
display_name?: string | undefined;
|
|
9053
9068
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -9068,7 +9083,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9068
9083
|
climate_preset_key: string;
|
|
9069
9084
|
can_edit: boolean;
|
|
9070
9085
|
can_delete: boolean;
|
|
9071
|
-
|
|
9086
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
9072
9087
|
display_name: string;
|
|
9073
9088
|
manual_override_allowed: boolean;
|
|
9074
9089
|
name?: string | null | undefined;
|
|
@@ -9731,6 +9746,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9731
9746
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
9732
9747
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
9733
9748
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
9749
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
9750
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
9751
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
9734
9752
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
9735
9753
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
9736
9754
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10250,7 +10268,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10250
10268
|
climate_preset_key?: string | undefined;
|
|
10251
10269
|
can_edit?: boolean | undefined;
|
|
10252
10270
|
can_delete?: boolean | undefined;
|
|
10253
|
-
|
|
10271
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10254
10272
|
name?: string | null | undefined;
|
|
10255
10273
|
display_name?: string | undefined;
|
|
10256
10274
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -10271,7 +10289,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10271
10289
|
climate_preset_key?: string | undefined;
|
|
10272
10290
|
can_edit?: boolean | undefined;
|
|
10273
10291
|
can_delete?: boolean | undefined;
|
|
10274
|
-
|
|
10292
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10275
10293
|
name?: string | null | undefined;
|
|
10276
10294
|
display_name?: string | undefined;
|
|
10277
10295
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -10292,7 +10310,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10292
10310
|
climate_preset_key: string;
|
|
10293
10311
|
can_edit: boolean;
|
|
10294
10312
|
can_delete: boolean;
|
|
10295
|
-
|
|
10313
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
10296
10314
|
display_name: string;
|
|
10297
10315
|
manual_override_allowed: boolean;
|
|
10298
10316
|
name?: string | null | undefined;
|
|
@@ -10386,6 +10404,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10386
10404
|
can_simulate_disconnection?: boolean | undefined;
|
|
10387
10405
|
can_unlock_with_code?: boolean | undefined;
|
|
10388
10406
|
can_run_thermostat_programs?: boolean | undefined;
|
|
10407
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
10408
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
10409
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
10389
10410
|
can_simulate_hub_connection?: boolean | undefined;
|
|
10390
10411
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
10391
10412
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -10906,7 +10927,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10906
10927
|
climate_preset_key?: string | undefined;
|
|
10907
10928
|
can_edit?: boolean | undefined;
|
|
10908
10929
|
can_delete?: boolean | undefined;
|
|
10909
|
-
|
|
10930
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10910
10931
|
name?: string | null | undefined;
|
|
10911
10932
|
display_name?: string | undefined;
|
|
10912
10933
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -10927,7 +10948,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10927
10948
|
climate_preset_key?: string | undefined;
|
|
10928
10949
|
can_edit?: boolean | undefined;
|
|
10929
10950
|
can_delete?: boolean | undefined;
|
|
10930
|
-
|
|
10951
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10931
10952
|
name?: string | null | undefined;
|
|
10932
10953
|
display_name?: string | undefined;
|
|
10933
10954
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -10948,7 +10969,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10948
10969
|
climate_preset_key: string;
|
|
10949
10970
|
can_edit: boolean;
|
|
10950
10971
|
can_delete: boolean;
|
|
10951
|
-
|
|
10972
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
10952
10973
|
display_name: string;
|
|
10953
10974
|
manual_override_allowed: boolean;
|
|
10954
10975
|
name?: string | null | undefined;
|
|
@@ -11042,6 +11063,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11042
11063
|
can_simulate_disconnection?: boolean | undefined;
|
|
11043
11064
|
can_unlock_with_code?: boolean | undefined;
|
|
11044
11065
|
can_run_thermostat_programs?: boolean | undefined;
|
|
11066
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
11067
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
11068
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
11045
11069
|
can_simulate_hub_connection?: boolean | undefined;
|
|
11046
11070
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
11047
11071
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -12705,7 +12729,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12705
12729
|
climate_preset_key?: string | undefined;
|
|
12706
12730
|
can_edit?: boolean | undefined;
|
|
12707
12731
|
can_delete?: boolean | undefined;
|
|
12708
|
-
|
|
12732
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12709
12733
|
name?: string | null | undefined;
|
|
12710
12734
|
display_name?: string | undefined;
|
|
12711
12735
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12726,7 +12750,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12726
12750
|
climate_preset_key?: string | undefined;
|
|
12727
12751
|
can_edit?: boolean | undefined;
|
|
12728
12752
|
can_delete?: boolean | undefined;
|
|
12729
|
-
|
|
12753
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12730
12754
|
name?: string | null | undefined;
|
|
12731
12755
|
display_name?: string | undefined;
|
|
12732
12756
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12747,7 +12771,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12747
12771
|
climate_preset_key: string;
|
|
12748
12772
|
can_edit: boolean;
|
|
12749
12773
|
can_delete: boolean;
|
|
12750
|
-
|
|
12774
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
12751
12775
|
display_name: string;
|
|
12752
12776
|
manual_override_allowed: boolean;
|
|
12753
12777
|
name?: string | null | undefined;
|
|
@@ -12841,6 +12865,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12841
12865
|
can_simulate_disconnection?: boolean | undefined;
|
|
12842
12866
|
can_unlock_with_code?: boolean | undefined;
|
|
12843
12867
|
can_run_thermostat_programs?: boolean | undefined;
|
|
12868
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
12869
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
12870
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
12844
12871
|
can_simulate_hub_connection?: boolean | undefined;
|
|
12845
12872
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
12846
12873
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -13620,7 +13647,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13620
13647
|
climate_preset_key?: string | undefined;
|
|
13621
13648
|
can_edit?: boolean | undefined;
|
|
13622
13649
|
can_delete?: boolean | undefined;
|
|
13623
|
-
|
|
13650
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
13624
13651
|
name?: string | null | undefined;
|
|
13625
13652
|
display_name?: string | undefined;
|
|
13626
13653
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -13641,7 +13668,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13641
13668
|
climate_preset_key?: string | undefined;
|
|
13642
13669
|
can_edit?: boolean | undefined;
|
|
13643
13670
|
can_delete?: boolean | undefined;
|
|
13644
|
-
|
|
13671
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
13645
13672
|
name?: string | null | undefined;
|
|
13646
13673
|
display_name?: string | undefined;
|
|
13647
13674
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -13662,7 +13689,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13662
13689
|
climate_preset_key: string;
|
|
13663
13690
|
can_edit: boolean;
|
|
13664
13691
|
can_delete: boolean;
|
|
13665
|
-
|
|
13692
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
13666
13693
|
display_name: string;
|
|
13667
13694
|
manual_override_allowed: boolean;
|
|
13668
13695
|
name?: string | null | undefined;
|
|
@@ -13756,6 +13783,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13756
13783
|
can_simulate_disconnection?: boolean | undefined;
|
|
13757
13784
|
can_unlock_with_code?: boolean | undefined;
|
|
13758
13785
|
can_run_thermostat_programs?: boolean | undefined;
|
|
13786
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
13787
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
13788
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
13759
13789
|
can_simulate_hub_connection?: boolean | undefined;
|
|
13760
13790
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
13761
13791
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -15664,7 +15694,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15664
15694
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
15665
15695
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
15666
15696
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
15667
|
-
|
|
15697
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
15668
15698
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
15669
15699
|
display_name: z.ZodOptional<z.ZodString>;
|
|
15670
15700
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -15692,7 +15722,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15692
15722
|
climate_preset_key?: string | undefined;
|
|
15693
15723
|
can_edit?: boolean | undefined;
|
|
15694
15724
|
can_delete?: boolean | undefined;
|
|
15695
|
-
|
|
15725
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
15696
15726
|
name?: string | null | undefined;
|
|
15697
15727
|
display_name?: string | undefined;
|
|
15698
15728
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -15712,7 +15742,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15712
15742
|
climate_preset_key?: string | undefined;
|
|
15713
15743
|
can_edit?: boolean | undefined;
|
|
15714
15744
|
can_delete?: boolean | undefined;
|
|
15715
|
-
|
|
15745
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
15716
15746
|
name?: string | null | undefined;
|
|
15717
15747
|
display_name?: string | undefined;
|
|
15718
15748
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -15733,7 +15763,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15733
15763
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
15734
15764
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
15735
15765
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
15736
|
-
|
|
15766
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
15737
15767
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
15738
15768
|
display_name: z.ZodOptional<z.ZodString>;
|
|
15739
15769
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -15761,7 +15791,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15761
15791
|
climate_preset_key?: string | undefined;
|
|
15762
15792
|
can_edit?: boolean | undefined;
|
|
15763
15793
|
can_delete?: boolean | undefined;
|
|
15764
|
-
|
|
15794
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
15765
15795
|
name?: string | null | undefined;
|
|
15766
15796
|
display_name?: string | undefined;
|
|
15767
15797
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -15781,7 +15811,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15781
15811
|
climate_preset_key?: string | undefined;
|
|
15782
15812
|
can_edit?: boolean | undefined;
|
|
15783
15813
|
can_delete?: boolean | undefined;
|
|
15784
|
-
|
|
15814
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
15785
15815
|
name?: string | null | undefined;
|
|
15786
15816
|
display_name?: string | undefined;
|
|
15787
15817
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -15802,7 +15832,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15802
15832
|
climate_preset_key: z.ZodString;
|
|
15803
15833
|
can_edit: z.ZodBoolean;
|
|
15804
15834
|
can_delete: z.ZodBoolean;
|
|
15805
|
-
|
|
15835
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
15806
15836
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
15807
15837
|
display_name: z.ZodString;
|
|
15808
15838
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -15830,7 +15860,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15830
15860
|
climate_preset_key: string;
|
|
15831
15861
|
can_edit: boolean;
|
|
15832
15862
|
can_delete: boolean;
|
|
15833
|
-
|
|
15863
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
15834
15864
|
display_name: string;
|
|
15835
15865
|
manual_override_allowed: boolean;
|
|
15836
15866
|
name?: string | null | undefined;
|
|
@@ -15850,7 +15880,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15850
15880
|
climate_preset_key: string;
|
|
15851
15881
|
can_edit: boolean;
|
|
15852
15882
|
can_delete: boolean;
|
|
15853
|
-
|
|
15883
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
15854
15884
|
display_name: string;
|
|
15855
15885
|
manual_override_allowed: boolean;
|
|
15856
15886
|
name?: string | null | undefined;
|
|
@@ -16031,7 +16061,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16031
16061
|
climate_preset_key?: string | undefined;
|
|
16032
16062
|
can_edit?: boolean | undefined;
|
|
16033
16063
|
can_delete?: boolean | undefined;
|
|
16034
|
-
|
|
16064
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
16035
16065
|
name?: string | null | undefined;
|
|
16036
16066
|
display_name?: string | undefined;
|
|
16037
16067
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -16052,7 +16082,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16052
16082
|
climate_preset_key?: string | undefined;
|
|
16053
16083
|
can_edit?: boolean | undefined;
|
|
16054
16084
|
can_delete?: boolean | undefined;
|
|
16055
|
-
|
|
16085
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
16056
16086
|
name?: string | null | undefined;
|
|
16057
16087
|
display_name?: string | undefined;
|
|
16058
16088
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -16073,7 +16103,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16073
16103
|
climate_preset_key: string;
|
|
16074
16104
|
can_edit: boolean;
|
|
16075
16105
|
can_delete: boolean;
|
|
16076
|
-
|
|
16106
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
16077
16107
|
display_name: string;
|
|
16078
16108
|
manual_override_allowed: boolean;
|
|
16079
16109
|
name?: string | null | undefined;
|
|
@@ -16164,7 +16194,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16164
16194
|
climate_preset_key?: string | undefined;
|
|
16165
16195
|
can_edit?: boolean | undefined;
|
|
16166
16196
|
can_delete?: boolean | undefined;
|
|
16167
|
-
|
|
16197
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
16168
16198
|
name?: string | null | undefined;
|
|
16169
16199
|
display_name?: string | undefined;
|
|
16170
16200
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -16185,7 +16215,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16185
16215
|
climate_preset_key?: string | undefined;
|
|
16186
16216
|
can_edit?: boolean | undefined;
|
|
16187
16217
|
can_delete?: boolean | undefined;
|
|
16188
|
-
|
|
16218
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
16189
16219
|
name?: string | null | undefined;
|
|
16190
16220
|
display_name?: string | undefined;
|
|
16191
16221
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -16206,7 +16236,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16206
16236
|
climate_preset_key: string;
|
|
16207
16237
|
can_edit: boolean;
|
|
16208
16238
|
can_delete: boolean;
|
|
16209
|
-
|
|
16239
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
16210
16240
|
display_name: string;
|
|
16211
16241
|
manual_override_allowed: boolean;
|
|
16212
16242
|
name?: string | null | undefined;
|
|
@@ -16869,6 +16899,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16869
16899
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
16870
16900
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
16871
16901
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
16902
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
16903
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
16904
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
16872
16905
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
16873
16906
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
16874
16907
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17388,7 +17421,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17388
17421
|
climate_preset_key?: string | undefined;
|
|
17389
17422
|
can_edit?: boolean | undefined;
|
|
17390
17423
|
can_delete?: boolean | undefined;
|
|
17391
|
-
|
|
17424
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
17392
17425
|
name?: string | null | undefined;
|
|
17393
17426
|
display_name?: string | undefined;
|
|
17394
17427
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -17409,7 +17442,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17409
17442
|
climate_preset_key?: string | undefined;
|
|
17410
17443
|
can_edit?: boolean | undefined;
|
|
17411
17444
|
can_delete?: boolean | undefined;
|
|
17412
|
-
|
|
17445
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
17413
17446
|
name?: string | null | undefined;
|
|
17414
17447
|
display_name?: string | undefined;
|
|
17415
17448
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -17430,7 +17463,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17430
17463
|
climate_preset_key: string;
|
|
17431
17464
|
can_edit: boolean;
|
|
17432
17465
|
can_delete: boolean;
|
|
17433
|
-
|
|
17466
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
17434
17467
|
display_name: string;
|
|
17435
17468
|
manual_override_allowed: boolean;
|
|
17436
17469
|
name?: string | null | undefined;
|
|
@@ -17524,6 +17557,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17524
17557
|
can_simulate_disconnection?: boolean | undefined;
|
|
17525
17558
|
can_unlock_with_code?: boolean | undefined;
|
|
17526
17559
|
can_run_thermostat_programs?: boolean | undefined;
|
|
17560
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
17561
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
17562
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
17527
17563
|
can_simulate_hub_connection?: boolean | undefined;
|
|
17528
17564
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
17529
17565
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -18044,7 +18080,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18044
18080
|
climate_preset_key?: string | undefined;
|
|
18045
18081
|
can_edit?: boolean | undefined;
|
|
18046
18082
|
can_delete?: boolean | undefined;
|
|
18047
|
-
|
|
18083
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
18048
18084
|
name?: string | null | undefined;
|
|
18049
18085
|
display_name?: string | undefined;
|
|
18050
18086
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -18065,7 +18101,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18065
18101
|
climate_preset_key?: string | undefined;
|
|
18066
18102
|
can_edit?: boolean | undefined;
|
|
18067
18103
|
can_delete?: boolean | undefined;
|
|
18068
|
-
|
|
18104
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
18069
18105
|
name?: string | null | undefined;
|
|
18070
18106
|
display_name?: string | undefined;
|
|
18071
18107
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -18086,7 +18122,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18086
18122
|
climate_preset_key: string;
|
|
18087
18123
|
can_edit: boolean;
|
|
18088
18124
|
can_delete: boolean;
|
|
18089
|
-
|
|
18125
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
18090
18126
|
display_name: string;
|
|
18091
18127
|
manual_override_allowed: boolean;
|
|
18092
18128
|
name?: string | null | undefined;
|
|
@@ -18180,6 +18216,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18180
18216
|
can_simulate_disconnection?: boolean | undefined;
|
|
18181
18217
|
can_unlock_with_code?: boolean | undefined;
|
|
18182
18218
|
can_run_thermostat_programs?: boolean | undefined;
|
|
18219
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
18220
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
18221
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
18183
18222
|
can_simulate_hub_connection?: boolean | undefined;
|
|
18184
18223
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
18185
18224
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -19264,7 +19303,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19264
19303
|
climate_preset_key?: string | undefined;
|
|
19265
19304
|
can_edit?: boolean | undefined;
|
|
19266
19305
|
can_delete?: boolean | undefined;
|
|
19267
|
-
|
|
19306
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
19268
19307
|
name?: string | null | undefined;
|
|
19269
19308
|
display_name?: string | undefined;
|
|
19270
19309
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -19285,7 +19324,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19285
19324
|
climate_preset_key?: string | undefined;
|
|
19286
19325
|
can_edit?: boolean | undefined;
|
|
19287
19326
|
can_delete?: boolean | undefined;
|
|
19288
|
-
|
|
19327
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
19289
19328
|
name?: string | null | undefined;
|
|
19290
19329
|
display_name?: string | undefined;
|
|
19291
19330
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -19306,7 +19345,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19306
19345
|
climate_preset_key: string;
|
|
19307
19346
|
can_edit: boolean;
|
|
19308
19347
|
can_delete: boolean;
|
|
19309
|
-
|
|
19348
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
19310
19349
|
display_name: string;
|
|
19311
19350
|
manual_override_allowed: boolean;
|
|
19312
19351
|
name?: string | null | undefined;
|
|
@@ -19400,6 +19439,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19400
19439
|
can_simulate_disconnection?: boolean | undefined;
|
|
19401
19440
|
can_unlock_with_code?: boolean | undefined;
|
|
19402
19441
|
can_run_thermostat_programs?: boolean | undefined;
|
|
19442
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
19443
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
19444
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
19403
19445
|
can_simulate_hub_connection?: boolean | undefined;
|
|
19404
19446
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
19405
19447
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -20075,7 +20117,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20075
20117
|
climate_preset_key?: string | undefined;
|
|
20076
20118
|
can_edit?: boolean | undefined;
|
|
20077
20119
|
can_delete?: boolean | undefined;
|
|
20078
|
-
|
|
20120
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
20079
20121
|
name?: string | null | undefined;
|
|
20080
20122
|
display_name?: string | undefined;
|
|
20081
20123
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -20096,7 +20138,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20096
20138
|
climate_preset_key?: string | undefined;
|
|
20097
20139
|
can_edit?: boolean | undefined;
|
|
20098
20140
|
can_delete?: boolean | undefined;
|
|
20099
|
-
|
|
20141
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
20100
20142
|
name?: string | null | undefined;
|
|
20101
20143
|
display_name?: string | undefined;
|
|
20102
20144
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -20117,7 +20159,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20117
20159
|
climate_preset_key: string;
|
|
20118
20160
|
can_edit: boolean;
|
|
20119
20161
|
can_delete: boolean;
|
|
20120
|
-
|
|
20162
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
20121
20163
|
display_name: string;
|
|
20122
20164
|
manual_override_allowed: boolean;
|
|
20123
20165
|
name?: string | null | undefined;
|
|
@@ -20211,6 +20253,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20211
20253
|
can_simulate_disconnection?: boolean | undefined;
|
|
20212
20254
|
can_unlock_with_code?: boolean | undefined;
|
|
20213
20255
|
can_run_thermostat_programs?: boolean | undefined;
|
|
20256
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
20257
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
20258
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
20214
20259
|
can_simulate_hub_connection?: boolean | undefined;
|
|
20215
20260
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
20216
20261
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -22186,7 +22231,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22186
22231
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
22187
22232
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
22188
22233
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
22189
|
-
|
|
22234
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
22190
22235
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
22191
22236
|
display_name: z.ZodOptional<z.ZodString>;
|
|
22192
22237
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -22214,7 +22259,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22214
22259
|
climate_preset_key?: string | undefined;
|
|
22215
22260
|
can_edit?: boolean | undefined;
|
|
22216
22261
|
can_delete?: boolean | undefined;
|
|
22217
|
-
|
|
22262
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22218
22263
|
name?: string | null | undefined;
|
|
22219
22264
|
display_name?: string | undefined;
|
|
22220
22265
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22234,7 +22279,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22234
22279
|
climate_preset_key?: string | undefined;
|
|
22235
22280
|
can_edit?: boolean | undefined;
|
|
22236
22281
|
can_delete?: boolean | undefined;
|
|
22237
|
-
|
|
22282
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22238
22283
|
name?: string | null | undefined;
|
|
22239
22284
|
display_name?: string | undefined;
|
|
22240
22285
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22255,7 +22300,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22255
22300
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
22256
22301
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
22257
22302
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
22258
|
-
|
|
22303
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
22259
22304
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
22260
22305
|
display_name: z.ZodOptional<z.ZodString>;
|
|
22261
22306
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -22283,7 +22328,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22283
22328
|
climate_preset_key?: string | undefined;
|
|
22284
22329
|
can_edit?: boolean | undefined;
|
|
22285
22330
|
can_delete?: boolean | undefined;
|
|
22286
|
-
|
|
22331
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22287
22332
|
name?: string | null | undefined;
|
|
22288
22333
|
display_name?: string | undefined;
|
|
22289
22334
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22303,7 +22348,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22303
22348
|
climate_preset_key?: string | undefined;
|
|
22304
22349
|
can_edit?: boolean | undefined;
|
|
22305
22350
|
can_delete?: boolean | undefined;
|
|
22306
|
-
|
|
22351
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22307
22352
|
name?: string | null | undefined;
|
|
22308
22353
|
display_name?: string | undefined;
|
|
22309
22354
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22324,7 +22369,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22324
22369
|
climate_preset_key: z.ZodString;
|
|
22325
22370
|
can_edit: z.ZodBoolean;
|
|
22326
22371
|
can_delete: z.ZodBoolean;
|
|
22327
|
-
|
|
22372
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
22328
22373
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
22329
22374
|
display_name: z.ZodString;
|
|
22330
22375
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -22352,7 +22397,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22352
22397
|
climate_preset_key: string;
|
|
22353
22398
|
can_edit: boolean;
|
|
22354
22399
|
can_delete: boolean;
|
|
22355
|
-
|
|
22400
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22356
22401
|
display_name: string;
|
|
22357
22402
|
manual_override_allowed: boolean;
|
|
22358
22403
|
name?: string | null | undefined;
|
|
@@ -22372,7 +22417,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22372
22417
|
climate_preset_key: string;
|
|
22373
22418
|
can_edit: boolean;
|
|
22374
22419
|
can_delete: boolean;
|
|
22375
|
-
|
|
22420
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22376
22421
|
display_name: string;
|
|
22377
22422
|
manual_override_allowed: boolean;
|
|
22378
22423
|
name?: string | null | undefined;
|
|
@@ -22553,7 +22598,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22553
22598
|
climate_preset_key?: string | undefined;
|
|
22554
22599
|
can_edit?: boolean | undefined;
|
|
22555
22600
|
can_delete?: boolean | undefined;
|
|
22556
|
-
|
|
22601
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22557
22602
|
name?: string | null | undefined;
|
|
22558
22603
|
display_name?: string | undefined;
|
|
22559
22604
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22574,7 +22619,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22574
22619
|
climate_preset_key?: string | undefined;
|
|
22575
22620
|
can_edit?: boolean | undefined;
|
|
22576
22621
|
can_delete?: boolean | undefined;
|
|
22577
|
-
|
|
22622
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22578
22623
|
name?: string | null | undefined;
|
|
22579
22624
|
display_name?: string | undefined;
|
|
22580
22625
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22595,7 +22640,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22595
22640
|
climate_preset_key: string;
|
|
22596
22641
|
can_edit: boolean;
|
|
22597
22642
|
can_delete: boolean;
|
|
22598
|
-
|
|
22643
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22599
22644
|
display_name: string;
|
|
22600
22645
|
manual_override_allowed: boolean;
|
|
22601
22646
|
name?: string | null | undefined;
|
|
@@ -22686,7 +22731,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22686
22731
|
climate_preset_key?: string | undefined;
|
|
22687
22732
|
can_edit?: boolean | undefined;
|
|
22688
22733
|
can_delete?: boolean | undefined;
|
|
22689
|
-
|
|
22734
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22690
22735
|
name?: string | null | undefined;
|
|
22691
22736
|
display_name?: string | undefined;
|
|
22692
22737
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22707,7 +22752,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22707
22752
|
climate_preset_key?: string | undefined;
|
|
22708
22753
|
can_edit?: boolean | undefined;
|
|
22709
22754
|
can_delete?: boolean | undefined;
|
|
22710
|
-
|
|
22755
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22711
22756
|
name?: string | null | undefined;
|
|
22712
22757
|
display_name?: string | undefined;
|
|
22713
22758
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22728,7 +22773,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22728
22773
|
climate_preset_key: string;
|
|
22729
22774
|
can_edit: boolean;
|
|
22730
22775
|
can_delete: boolean;
|
|
22731
|
-
|
|
22776
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22732
22777
|
display_name: string;
|
|
22733
22778
|
manual_override_allowed: boolean;
|
|
22734
22779
|
name?: string | null | undefined;
|
|
@@ -23391,6 +23436,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23391
23436
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23392
23437
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
23393
23438
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
23439
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
23440
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
23441
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
23394
23442
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23395
23443
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23396
23444
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23910,7 +23958,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23910
23958
|
climate_preset_key?: string | undefined;
|
|
23911
23959
|
can_edit?: boolean | undefined;
|
|
23912
23960
|
can_delete?: boolean | undefined;
|
|
23913
|
-
|
|
23961
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
23914
23962
|
name?: string | null | undefined;
|
|
23915
23963
|
display_name?: string | undefined;
|
|
23916
23964
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -23931,7 +23979,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23931
23979
|
climate_preset_key?: string | undefined;
|
|
23932
23980
|
can_edit?: boolean | undefined;
|
|
23933
23981
|
can_delete?: boolean | undefined;
|
|
23934
|
-
|
|
23982
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
23935
23983
|
name?: string | null | undefined;
|
|
23936
23984
|
display_name?: string | undefined;
|
|
23937
23985
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -23952,7 +24000,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23952
24000
|
climate_preset_key: string;
|
|
23953
24001
|
can_edit: boolean;
|
|
23954
24002
|
can_delete: boolean;
|
|
23955
|
-
|
|
24003
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
23956
24004
|
display_name: string;
|
|
23957
24005
|
manual_override_allowed: boolean;
|
|
23958
24006
|
name?: string | null | undefined;
|
|
@@ -24046,6 +24094,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24046
24094
|
can_simulate_disconnection?: boolean | undefined;
|
|
24047
24095
|
can_unlock_with_code?: boolean | undefined;
|
|
24048
24096
|
can_run_thermostat_programs?: boolean | undefined;
|
|
24097
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
24098
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
24099
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
24049
24100
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24050
24101
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24051
24102
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -24566,7 +24617,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24566
24617
|
climate_preset_key?: string | undefined;
|
|
24567
24618
|
can_edit?: boolean | undefined;
|
|
24568
24619
|
can_delete?: boolean | undefined;
|
|
24569
|
-
|
|
24620
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
24570
24621
|
name?: string | null | undefined;
|
|
24571
24622
|
display_name?: string | undefined;
|
|
24572
24623
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -24587,7 +24638,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24587
24638
|
climate_preset_key?: string | undefined;
|
|
24588
24639
|
can_edit?: boolean | undefined;
|
|
24589
24640
|
can_delete?: boolean | undefined;
|
|
24590
|
-
|
|
24641
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
24591
24642
|
name?: string | null | undefined;
|
|
24592
24643
|
display_name?: string | undefined;
|
|
24593
24644
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -24608,7 +24659,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24608
24659
|
climate_preset_key: string;
|
|
24609
24660
|
can_edit: boolean;
|
|
24610
24661
|
can_delete: boolean;
|
|
24611
|
-
|
|
24662
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
24612
24663
|
display_name: string;
|
|
24613
24664
|
manual_override_allowed: boolean;
|
|
24614
24665
|
name?: string | null | undefined;
|
|
@@ -24702,6 +24753,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24702
24753
|
can_simulate_disconnection?: boolean | undefined;
|
|
24703
24754
|
can_unlock_with_code?: boolean | undefined;
|
|
24704
24755
|
can_run_thermostat_programs?: boolean | undefined;
|
|
24756
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
24757
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
24758
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
24705
24759
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24706
24760
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24707
24761
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -32786,7 +32840,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32786
32840
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
32787
32841
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
32788
32842
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
32789
|
-
|
|
32843
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
32790
32844
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
32791
32845
|
display_name: z.ZodOptional<z.ZodString>;
|
|
32792
32846
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -32814,7 +32868,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32814
32868
|
climate_preset_key?: string | undefined;
|
|
32815
32869
|
can_edit?: boolean | undefined;
|
|
32816
32870
|
can_delete?: boolean | undefined;
|
|
32817
|
-
|
|
32871
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32818
32872
|
name?: string | null | undefined;
|
|
32819
32873
|
display_name?: string | undefined;
|
|
32820
32874
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -32834,7 +32888,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32834
32888
|
climate_preset_key?: string | undefined;
|
|
32835
32889
|
can_edit?: boolean | undefined;
|
|
32836
32890
|
can_delete?: boolean | undefined;
|
|
32837
|
-
|
|
32891
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32838
32892
|
name?: string | null | undefined;
|
|
32839
32893
|
display_name?: string | undefined;
|
|
32840
32894
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -32855,7 +32909,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32855
32909
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
32856
32910
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
32857
32911
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
32858
|
-
|
|
32912
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
32859
32913
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
32860
32914
|
display_name: z.ZodOptional<z.ZodString>;
|
|
32861
32915
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -32883,7 +32937,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32883
32937
|
climate_preset_key?: string | undefined;
|
|
32884
32938
|
can_edit?: boolean | undefined;
|
|
32885
32939
|
can_delete?: boolean | undefined;
|
|
32886
|
-
|
|
32940
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32887
32941
|
name?: string | null | undefined;
|
|
32888
32942
|
display_name?: string | undefined;
|
|
32889
32943
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -32903,7 +32957,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32903
32957
|
climate_preset_key?: string | undefined;
|
|
32904
32958
|
can_edit?: boolean | undefined;
|
|
32905
32959
|
can_delete?: boolean | undefined;
|
|
32906
|
-
|
|
32960
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32907
32961
|
name?: string | null | undefined;
|
|
32908
32962
|
display_name?: string | undefined;
|
|
32909
32963
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -32924,7 +32978,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32924
32978
|
climate_preset_key: z.ZodString;
|
|
32925
32979
|
can_edit: z.ZodBoolean;
|
|
32926
32980
|
can_delete: z.ZodBoolean;
|
|
32927
|
-
|
|
32981
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
32928
32982
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
32929
32983
|
display_name: z.ZodString;
|
|
32930
32984
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -32952,7 +33006,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32952
33006
|
climate_preset_key: string;
|
|
32953
33007
|
can_edit: boolean;
|
|
32954
33008
|
can_delete: boolean;
|
|
32955
|
-
|
|
33009
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
32956
33010
|
display_name: string;
|
|
32957
33011
|
manual_override_allowed: boolean;
|
|
32958
33012
|
name?: string | null | undefined;
|
|
@@ -32972,7 +33026,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32972
33026
|
climate_preset_key: string;
|
|
32973
33027
|
can_edit: boolean;
|
|
32974
33028
|
can_delete: boolean;
|
|
32975
|
-
|
|
33029
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
32976
33030
|
display_name: string;
|
|
32977
33031
|
manual_override_allowed: boolean;
|
|
32978
33032
|
name?: string | null | undefined;
|
|
@@ -33153,7 +33207,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33153
33207
|
climate_preset_key?: string | undefined;
|
|
33154
33208
|
can_edit?: boolean | undefined;
|
|
33155
33209
|
can_delete?: boolean | undefined;
|
|
33156
|
-
|
|
33210
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33157
33211
|
name?: string | null | undefined;
|
|
33158
33212
|
display_name?: string | undefined;
|
|
33159
33213
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -33174,7 +33228,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33174
33228
|
climate_preset_key?: string | undefined;
|
|
33175
33229
|
can_edit?: boolean | undefined;
|
|
33176
33230
|
can_delete?: boolean | undefined;
|
|
33177
|
-
|
|
33231
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33178
33232
|
name?: string | null | undefined;
|
|
33179
33233
|
display_name?: string | undefined;
|
|
33180
33234
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -33195,7 +33249,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33195
33249
|
climate_preset_key: string;
|
|
33196
33250
|
can_edit: boolean;
|
|
33197
33251
|
can_delete: boolean;
|
|
33198
|
-
|
|
33252
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
33199
33253
|
display_name: string;
|
|
33200
33254
|
manual_override_allowed: boolean;
|
|
33201
33255
|
name?: string | null | undefined;
|
|
@@ -33286,7 +33340,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33286
33340
|
climate_preset_key?: string | undefined;
|
|
33287
33341
|
can_edit?: boolean | undefined;
|
|
33288
33342
|
can_delete?: boolean | undefined;
|
|
33289
|
-
|
|
33343
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33290
33344
|
name?: string | null | undefined;
|
|
33291
33345
|
display_name?: string | undefined;
|
|
33292
33346
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -33307,7 +33361,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33307
33361
|
climate_preset_key?: string | undefined;
|
|
33308
33362
|
can_edit?: boolean | undefined;
|
|
33309
33363
|
can_delete?: boolean | undefined;
|
|
33310
|
-
|
|
33364
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33311
33365
|
name?: string | null | undefined;
|
|
33312
33366
|
display_name?: string | undefined;
|
|
33313
33367
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -33328,7 +33382,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33328
33382
|
climate_preset_key: string;
|
|
33329
33383
|
can_edit: boolean;
|
|
33330
33384
|
can_delete: boolean;
|
|
33331
|
-
|
|
33385
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
33332
33386
|
display_name: string;
|
|
33333
33387
|
manual_override_allowed: boolean;
|
|
33334
33388
|
name?: string | null | undefined;
|
|
@@ -33991,6 +34045,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33991
34045
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
33992
34046
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
33993
34047
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
34048
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
34049
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
34050
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
33994
34051
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
33995
34052
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
33996
34053
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34144,6 +34201,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34144
34201
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
34145
34202
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
34146
34203
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
34204
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
34205
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
34206
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
34147
34207
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
34148
34208
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
34149
34209
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34370,6 +34430,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34370
34430
|
can_simulate_disconnection?: boolean | undefined;
|
|
34371
34431
|
can_unlock_with_code?: boolean | undefined;
|
|
34372
34432
|
can_run_thermostat_programs?: boolean | undefined;
|
|
34433
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
34434
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
34435
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
34373
34436
|
can_simulate_hub_connection?: boolean | undefined;
|
|
34374
34437
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34375
34438
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -34596,6 +34659,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34596
34659
|
can_simulate_disconnection?: boolean | undefined;
|
|
34597
34660
|
can_unlock_with_code?: boolean | undefined;
|
|
34598
34661
|
can_run_thermostat_programs?: boolean | undefined;
|
|
34662
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
34663
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
34664
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
34599
34665
|
can_simulate_hub_connection?: boolean | undefined;
|
|
34600
34666
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34601
34667
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -37891,7 +37957,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37891
37957
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
37892
37958
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
37893
37959
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
37894
|
-
|
|
37960
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
37895
37961
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
37896
37962
|
display_name: z.ZodOptional<z.ZodString>;
|
|
37897
37963
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -41977,7 +42043,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41977
42043
|
climate_preset_key?: string | undefined;
|
|
41978
42044
|
can_edit?: boolean | undefined;
|
|
41979
42045
|
can_delete?: boolean | undefined;
|
|
41980
|
-
|
|
42046
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
41981
42047
|
name?: string | null | undefined;
|
|
41982
42048
|
display_name?: string | undefined;
|
|
41983
42049
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -41998,7 +42064,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41998
42064
|
climate_preset_key?: string | undefined;
|
|
41999
42065
|
can_edit?: boolean | undefined;
|
|
42000
42066
|
can_delete?: boolean | undefined;
|
|
42001
|
-
|
|
42067
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42002
42068
|
name?: string | null | undefined;
|
|
42003
42069
|
display_name?: string | undefined;
|
|
42004
42070
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -42019,7 +42085,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42019
42085
|
climate_preset_key: string;
|
|
42020
42086
|
can_edit: boolean;
|
|
42021
42087
|
can_delete: boolean;
|
|
42022
|
-
|
|
42088
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
42023
42089
|
display_name: string;
|
|
42024
42090
|
manual_override_allowed: boolean;
|
|
42025
42091
|
name?: string | null | undefined;
|
|
@@ -42113,6 +42179,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42113
42179
|
can_simulate_disconnection?: boolean | undefined;
|
|
42114
42180
|
can_unlock_with_code?: boolean | undefined;
|
|
42115
42181
|
can_run_thermostat_programs?: boolean | undefined;
|
|
42182
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
42183
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
42184
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
42116
42185
|
can_simulate_hub_connection?: boolean | undefined;
|
|
42117
42186
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
42118
42187
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -43825,6 +43894,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
43825
43894
|
can_simulate_disconnection?: boolean | undefined;
|
|
43826
43895
|
can_unlock_with_code?: boolean | undefined;
|
|
43827
43896
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43897
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
43898
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
43899
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
43828
43900
|
can_simulate_hub_connection?: boolean | undefined;
|
|
43829
43901
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43830
43902
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -45947,7 +46019,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45947
46019
|
climate_preset_key?: string | undefined;
|
|
45948
46020
|
can_edit?: boolean | undefined;
|
|
45949
46021
|
can_delete?: boolean | undefined;
|
|
45950
|
-
|
|
46022
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
45951
46023
|
name?: string | null | undefined;
|
|
45952
46024
|
display_name?: string | undefined;
|
|
45953
46025
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -45968,7 +46040,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45968
46040
|
climate_preset_key?: string | undefined;
|
|
45969
46041
|
can_edit?: boolean | undefined;
|
|
45970
46042
|
can_delete?: boolean | undefined;
|
|
45971
|
-
|
|
46043
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
45972
46044
|
name?: string | null | undefined;
|
|
45973
46045
|
display_name?: string | undefined;
|
|
45974
46046
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -45989,7 +46061,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45989
46061
|
climate_preset_key: string;
|
|
45990
46062
|
can_edit: boolean;
|
|
45991
46063
|
can_delete: boolean;
|
|
45992
|
-
|
|
46064
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
45993
46065
|
display_name: string;
|
|
45994
46066
|
manual_override_allowed: boolean;
|
|
45995
46067
|
name?: string | null | undefined;
|
|
@@ -46083,6 +46155,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46083
46155
|
can_simulate_disconnection?: boolean | undefined;
|
|
46084
46156
|
can_unlock_with_code?: boolean | undefined;
|
|
46085
46157
|
can_run_thermostat_programs?: boolean | undefined;
|
|
46158
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
46159
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
46160
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
46086
46161
|
can_simulate_hub_connection?: boolean | undefined;
|
|
46087
46162
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
46088
46163
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -47795,6 +47870,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
47795
47870
|
can_simulate_disconnection?: boolean | undefined;
|
|
47796
47871
|
can_unlock_with_code?: boolean | undefined;
|
|
47797
47872
|
can_run_thermostat_programs?: boolean | undefined;
|
|
47873
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
47874
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
47875
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
47798
47876
|
can_simulate_hub_connection?: boolean | undefined;
|
|
47799
47877
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47800
47878
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -51206,7 +51284,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51206
51284
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
51207
51285
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
51208
51286
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
51209
|
-
|
|
51287
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
51210
51288
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
51211
51289
|
display_name: z.ZodOptional<z.ZodString>;
|
|
51212
51290
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -51234,7 +51312,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51234
51312
|
climate_preset_key?: string | undefined;
|
|
51235
51313
|
can_edit?: boolean | undefined;
|
|
51236
51314
|
can_delete?: boolean | undefined;
|
|
51237
|
-
|
|
51315
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51238
51316
|
name?: string | null | undefined;
|
|
51239
51317
|
display_name?: string | undefined;
|
|
51240
51318
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51254,7 +51332,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51254
51332
|
climate_preset_key?: string | undefined;
|
|
51255
51333
|
can_edit?: boolean | undefined;
|
|
51256
51334
|
can_delete?: boolean | undefined;
|
|
51257
|
-
|
|
51335
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51258
51336
|
name?: string | null | undefined;
|
|
51259
51337
|
display_name?: string | undefined;
|
|
51260
51338
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51275,7 +51353,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51275
51353
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
51276
51354
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
51277
51355
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
51278
|
-
|
|
51356
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
51279
51357
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
51280
51358
|
display_name: z.ZodOptional<z.ZodString>;
|
|
51281
51359
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -51303,7 +51381,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51303
51381
|
climate_preset_key?: string | undefined;
|
|
51304
51382
|
can_edit?: boolean | undefined;
|
|
51305
51383
|
can_delete?: boolean | undefined;
|
|
51306
|
-
|
|
51384
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51307
51385
|
name?: string | null | undefined;
|
|
51308
51386
|
display_name?: string | undefined;
|
|
51309
51387
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51323,7 +51401,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51323
51401
|
climate_preset_key?: string | undefined;
|
|
51324
51402
|
can_edit?: boolean | undefined;
|
|
51325
51403
|
can_delete?: boolean | undefined;
|
|
51326
|
-
|
|
51404
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51327
51405
|
name?: string | null | undefined;
|
|
51328
51406
|
display_name?: string | undefined;
|
|
51329
51407
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51344,7 +51422,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51344
51422
|
climate_preset_key: z.ZodString;
|
|
51345
51423
|
can_edit: z.ZodBoolean;
|
|
51346
51424
|
can_delete: z.ZodBoolean;
|
|
51347
|
-
|
|
51425
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
51348
51426
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
51349
51427
|
display_name: z.ZodString;
|
|
51350
51428
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -51372,7 +51450,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51372
51450
|
climate_preset_key: string;
|
|
51373
51451
|
can_edit: boolean;
|
|
51374
51452
|
can_delete: boolean;
|
|
51375
|
-
|
|
51453
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51376
51454
|
display_name: string;
|
|
51377
51455
|
manual_override_allowed: boolean;
|
|
51378
51456
|
name?: string | null | undefined;
|
|
@@ -51392,7 +51470,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51392
51470
|
climate_preset_key: string;
|
|
51393
51471
|
can_edit: boolean;
|
|
51394
51472
|
can_delete: boolean;
|
|
51395
|
-
|
|
51473
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51396
51474
|
display_name: string;
|
|
51397
51475
|
manual_override_allowed: boolean;
|
|
51398
51476
|
name?: string | null | undefined;
|
|
@@ -51573,7 +51651,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51573
51651
|
climate_preset_key?: string | undefined;
|
|
51574
51652
|
can_edit?: boolean | undefined;
|
|
51575
51653
|
can_delete?: boolean | undefined;
|
|
51576
|
-
|
|
51654
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51577
51655
|
name?: string | null | undefined;
|
|
51578
51656
|
display_name?: string | undefined;
|
|
51579
51657
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51594,7 +51672,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51594
51672
|
climate_preset_key?: string | undefined;
|
|
51595
51673
|
can_edit?: boolean | undefined;
|
|
51596
51674
|
can_delete?: boolean | undefined;
|
|
51597
|
-
|
|
51675
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51598
51676
|
name?: string | null | undefined;
|
|
51599
51677
|
display_name?: string | undefined;
|
|
51600
51678
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51615,7 +51693,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51615
51693
|
climate_preset_key: string;
|
|
51616
51694
|
can_edit: boolean;
|
|
51617
51695
|
can_delete: boolean;
|
|
51618
|
-
|
|
51696
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51619
51697
|
display_name: string;
|
|
51620
51698
|
manual_override_allowed: boolean;
|
|
51621
51699
|
name?: string | null | undefined;
|
|
@@ -51706,7 +51784,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51706
51784
|
climate_preset_key?: string | undefined;
|
|
51707
51785
|
can_edit?: boolean | undefined;
|
|
51708
51786
|
can_delete?: boolean | undefined;
|
|
51709
|
-
|
|
51787
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51710
51788
|
name?: string | null | undefined;
|
|
51711
51789
|
display_name?: string | undefined;
|
|
51712
51790
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51727,7 +51805,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51727
51805
|
climate_preset_key?: string | undefined;
|
|
51728
51806
|
can_edit?: boolean | undefined;
|
|
51729
51807
|
can_delete?: boolean | undefined;
|
|
51730
|
-
|
|
51808
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51731
51809
|
name?: string | null | undefined;
|
|
51732
51810
|
display_name?: string | undefined;
|
|
51733
51811
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -51748,7 +51826,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51748
51826
|
climate_preset_key: string;
|
|
51749
51827
|
can_edit: boolean;
|
|
51750
51828
|
can_delete: boolean;
|
|
51751
|
-
|
|
51829
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51752
51830
|
display_name: string;
|
|
51753
51831
|
manual_override_allowed: boolean;
|
|
51754
51832
|
name?: string | null | undefined;
|
|
@@ -52411,6 +52489,9 @@ export declare const batch: z.ZodObject<{
|
|
|
52411
52489
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
52412
52490
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
52413
52491
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
52492
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
52493
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
52494
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
52414
52495
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
52415
52496
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
52416
52497
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -52930,7 +53011,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52930
53011
|
climate_preset_key?: string | undefined;
|
|
52931
53012
|
can_edit?: boolean | undefined;
|
|
52932
53013
|
can_delete?: boolean | undefined;
|
|
52933
|
-
|
|
53014
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
52934
53015
|
name?: string | null | undefined;
|
|
52935
53016
|
display_name?: string | undefined;
|
|
52936
53017
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -52951,7 +53032,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52951
53032
|
climate_preset_key?: string | undefined;
|
|
52952
53033
|
can_edit?: boolean | undefined;
|
|
52953
53034
|
can_delete?: boolean | undefined;
|
|
52954
|
-
|
|
53035
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
52955
53036
|
name?: string | null | undefined;
|
|
52956
53037
|
display_name?: string | undefined;
|
|
52957
53038
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -52972,7 +53053,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52972
53053
|
climate_preset_key: string;
|
|
52973
53054
|
can_edit: boolean;
|
|
52974
53055
|
can_delete: boolean;
|
|
52975
|
-
|
|
53056
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
52976
53057
|
display_name: string;
|
|
52977
53058
|
manual_override_allowed: boolean;
|
|
52978
53059
|
name?: string | null | undefined;
|
|
@@ -53066,6 +53147,9 @@ export declare const batch: z.ZodObject<{
|
|
|
53066
53147
|
can_simulate_disconnection?: boolean | undefined;
|
|
53067
53148
|
can_unlock_with_code?: boolean | undefined;
|
|
53068
53149
|
can_run_thermostat_programs?: boolean | undefined;
|
|
53150
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
53151
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
53152
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
53069
53153
|
can_simulate_hub_connection?: boolean | undefined;
|
|
53070
53154
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
53071
53155
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -53586,7 +53670,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53586
53670
|
climate_preset_key?: string | undefined;
|
|
53587
53671
|
can_edit?: boolean | undefined;
|
|
53588
53672
|
can_delete?: boolean | undefined;
|
|
53589
|
-
|
|
53673
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
53590
53674
|
name?: string | null | undefined;
|
|
53591
53675
|
display_name?: string | undefined;
|
|
53592
53676
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -53607,7 +53691,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53607
53691
|
climate_preset_key?: string | undefined;
|
|
53608
53692
|
can_edit?: boolean | undefined;
|
|
53609
53693
|
can_delete?: boolean | undefined;
|
|
53610
|
-
|
|
53694
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
53611
53695
|
name?: string | null | undefined;
|
|
53612
53696
|
display_name?: string | undefined;
|
|
53613
53697
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -53628,7 +53712,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53628
53712
|
climate_preset_key: string;
|
|
53629
53713
|
can_edit: boolean;
|
|
53630
53714
|
can_delete: boolean;
|
|
53631
|
-
|
|
53715
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
53632
53716
|
display_name: string;
|
|
53633
53717
|
manual_override_allowed: boolean;
|
|
53634
53718
|
name?: string | null | undefined;
|
|
@@ -53722,6 +53806,9 @@ export declare const batch: z.ZodObject<{
|
|
|
53722
53806
|
can_simulate_disconnection?: boolean | undefined;
|
|
53723
53807
|
can_unlock_with_code?: boolean | undefined;
|
|
53724
53808
|
can_run_thermostat_programs?: boolean | undefined;
|
|
53809
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
53810
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
53811
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
53725
53812
|
can_simulate_hub_connection?: boolean | undefined;
|
|
53726
53813
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
53727
53814
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -61806,7 +61893,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61806
61893
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
61807
61894
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
61808
61895
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
61809
|
-
|
|
61896
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
61810
61897
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
61811
61898
|
display_name: z.ZodOptional<z.ZodString>;
|
|
61812
61899
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -61834,7 +61921,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61834
61921
|
climate_preset_key?: string | undefined;
|
|
61835
61922
|
can_edit?: boolean | undefined;
|
|
61836
61923
|
can_delete?: boolean | undefined;
|
|
61837
|
-
|
|
61924
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
61838
61925
|
name?: string | null | undefined;
|
|
61839
61926
|
display_name?: string | undefined;
|
|
61840
61927
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -61854,7 +61941,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61854
61941
|
climate_preset_key?: string | undefined;
|
|
61855
61942
|
can_edit?: boolean | undefined;
|
|
61856
61943
|
can_delete?: boolean | undefined;
|
|
61857
|
-
|
|
61944
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
61858
61945
|
name?: string | null | undefined;
|
|
61859
61946
|
display_name?: string | undefined;
|
|
61860
61947
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -61875,7 +61962,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61875
61962
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
61876
61963
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
61877
61964
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
61878
|
-
|
|
61965
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
61879
61966
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
61880
61967
|
display_name: z.ZodOptional<z.ZodString>;
|
|
61881
61968
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -61903,7 +61990,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61903
61990
|
climate_preset_key?: string | undefined;
|
|
61904
61991
|
can_edit?: boolean | undefined;
|
|
61905
61992
|
can_delete?: boolean | undefined;
|
|
61906
|
-
|
|
61993
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
61907
61994
|
name?: string | null | undefined;
|
|
61908
61995
|
display_name?: string | undefined;
|
|
61909
61996
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -61923,7 +62010,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61923
62010
|
climate_preset_key?: string | undefined;
|
|
61924
62011
|
can_edit?: boolean | undefined;
|
|
61925
62012
|
can_delete?: boolean | undefined;
|
|
61926
|
-
|
|
62013
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
61927
62014
|
name?: string | null | undefined;
|
|
61928
62015
|
display_name?: string | undefined;
|
|
61929
62016
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -61944,7 +62031,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61944
62031
|
climate_preset_key: z.ZodString;
|
|
61945
62032
|
can_edit: z.ZodBoolean;
|
|
61946
62033
|
can_delete: z.ZodBoolean;
|
|
61947
|
-
|
|
62034
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
61948
62035
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
61949
62036
|
display_name: z.ZodString;
|
|
61950
62037
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -61972,7 +62059,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61972
62059
|
climate_preset_key: string;
|
|
61973
62060
|
can_edit: boolean;
|
|
61974
62061
|
can_delete: boolean;
|
|
61975
|
-
|
|
62062
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
61976
62063
|
display_name: string;
|
|
61977
62064
|
manual_override_allowed: boolean;
|
|
61978
62065
|
name?: string | null | undefined;
|
|
@@ -61992,7 +62079,7 @@ export declare const batch: z.ZodObject<{
|
|
|
61992
62079
|
climate_preset_key: string;
|
|
61993
62080
|
can_edit: boolean;
|
|
61994
62081
|
can_delete: boolean;
|
|
61995
|
-
|
|
62082
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
61996
62083
|
display_name: string;
|
|
61997
62084
|
manual_override_allowed: boolean;
|
|
61998
62085
|
name?: string | null | undefined;
|
|
@@ -62173,7 +62260,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62173
62260
|
climate_preset_key?: string | undefined;
|
|
62174
62261
|
can_edit?: boolean | undefined;
|
|
62175
62262
|
can_delete?: boolean | undefined;
|
|
62176
|
-
|
|
62263
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62177
62264
|
name?: string | null | undefined;
|
|
62178
62265
|
display_name?: string | undefined;
|
|
62179
62266
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62194,7 +62281,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62194
62281
|
climate_preset_key?: string | undefined;
|
|
62195
62282
|
can_edit?: boolean | undefined;
|
|
62196
62283
|
can_delete?: boolean | undefined;
|
|
62197
|
-
|
|
62284
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62198
62285
|
name?: string | null | undefined;
|
|
62199
62286
|
display_name?: string | undefined;
|
|
62200
62287
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62215,7 +62302,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62215
62302
|
climate_preset_key: string;
|
|
62216
62303
|
can_edit: boolean;
|
|
62217
62304
|
can_delete: boolean;
|
|
62218
|
-
|
|
62305
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
62219
62306
|
display_name: string;
|
|
62220
62307
|
manual_override_allowed: boolean;
|
|
62221
62308
|
name?: string | null | undefined;
|
|
@@ -62306,7 +62393,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62306
62393
|
climate_preset_key?: string | undefined;
|
|
62307
62394
|
can_edit?: boolean | undefined;
|
|
62308
62395
|
can_delete?: boolean | undefined;
|
|
62309
|
-
|
|
62396
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62310
62397
|
name?: string | null | undefined;
|
|
62311
62398
|
display_name?: string | undefined;
|
|
62312
62399
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62327,7 +62414,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62327
62414
|
climate_preset_key?: string | undefined;
|
|
62328
62415
|
can_edit?: boolean | undefined;
|
|
62329
62416
|
can_delete?: boolean | undefined;
|
|
62330
|
-
|
|
62417
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
62331
62418
|
name?: string | null | undefined;
|
|
62332
62419
|
display_name?: string | undefined;
|
|
62333
62420
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -62348,7 +62435,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62348
62435
|
climate_preset_key: string;
|
|
62349
62436
|
can_edit: boolean;
|
|
62350
62437
|
can_delete: boolean;
|
|
62351
|
-
|
|
62438
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
62352
62439
|
display_name: string;
|
|
62353
62440
|
manual_override_allowed: boolean;
|
|
62354
62441
|
name?: string | null | undefined;
|
|
@@ -63011,6 +63098,9 @@ export declare const batch: z.ZodObject<{
|
|
|
63011
63098
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
63012
63099
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
63013
63100
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
63101
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
63102
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
63103
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
63014
63104
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
63015
63105
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
63016
63106
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -63164,6 +63254,9 @@ export declare const batch: z.ZodObject<{
|
|
|
63164
63254
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
63165
63255
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
63166
63256
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
63257
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
63258
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
63259
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
63167
63260
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
63168
63261
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
63169
63262
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -63390,6 +63483,9 @@ export declare const batch: z.ZodObject<{
|
|
|
63390
63483
|
can_simulate_disconnection?: boolean | undefined;
|
|
63391
63484
|
can_unlock_with_code?: boolean | undefined;
|
|
63392
63485
|
can_run_thermostat_programs?: boolean | undefined;
|
|
63486
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
63487
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
63488
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
63393
63489
|
can_simulate_hub_connection?: boolean | undefined;
|
|
63394
63490
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
63395
63491
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -63616,6 +63712,9 @@ export declare const batch: z.ZodObject<{
|
|
|
63616
63712
|
can_simulate_disconnection?: boolean | undefined;
|
|
63617
63713
|
can_unlock_with_code?: boolean | undefined;
|
|
63618
63714
|
can_run_thermostat_programs?: boolean | undefined;
|
|
63715
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
63716
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
63717
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
63619
63718
|
can_simulate_hub_connection?: boolean | undefined;
|
|
63620
63719
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
63621
63720
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -66539,7 +66638,7 @@ export declare const batch: z.ZodObject<{
|
|
|
66539
66638
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
66540
66639
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
66541
66640
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
66542
|
-
|
|
66641
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
66543
66642
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
66544
66643
|
display_name: z.ZodOptional<z.ZodString>;
|
|
66545
66644
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -70625,7 +70724,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70625
70724
|
climate_preset_key?: string | undefined;
|
|
70626
70725
|
can_edit?: boolean | undefined;
|
|
70627
70726
|
can_delete?: boolean | undefined;
|
|
70628
|
-
|
|
70727
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
70629
70728
|
name?: string | null | undefined;
|
|
70630
70729
|
display_name?: string | undefined;
|
|
70631
70730
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -70646,7 +70745,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70646
70745
|
climate_preset_key?: string | undefined;
|
|
70647
70746
|
can_edit?: boolean | undefined;
|
|
70648
70747
|
can_delete?: boolean | undefined;
|
|
70649
|
-
|
|
70748
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
70650
70749
|
name?: string | null | undefined;
|
|
70651
70750
|
display_name?: string | undefined;
|
|
70652
70751
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -70667,7 +70766,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70667
70766
|
climate_preset_key: string;
|
|
70668
70767
|
can_edit: boolean;
|
|
70669
70768
|
can_delete: boolean;
|
|
70670
|
-
|
|
70769
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
70671
70770
|
display_name: string;
|
|
70672
70771
|
manual_override_allowed: boolean;
|
|
70673
70772
|
name?: string | null | undefined;
|
|
@@ -70761,6 +70860,9 @@ export declare const batch: z.ZodObject<{
|
|
|
70761
70860
|
can_simulate_disconnection?: boolean | undefined;
|
|
70762
70861
|
can_unlock_with_code?: boolean | undefined;
|
|
70763
70862
|
can_run_thermostat_programs?: boolean | undefined;
|
|
70863
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
70864
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
70865
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
70764
70866
|
can_simulate_hub_connection?: boolean | undefined;
|
|
70765
70867
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
70766
70868
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -72404,6 +72506,9 @@ export declare const batch: z.ZodObject<{
|
|
|
72404
72506
|
can_simulate_disconnection?: boolean | undefined;
|
|
72405
72507
|
can_unlock_with_code?: boolean | undefined;
|
|
72406
72508
|
can_run_thermostat_programs?: boolean | undefined;
|
|
72509
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
72510
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
72511
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
72407
72512
|
can_simulate_hub_connection?: boolean | undefined;
|
|
72408
72513
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
72409
72514
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -74526,7 +74631,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74526
74631
|
climate_preset_key?: string | undefined;
|
|
74527
74632
|
can_edit?: boolean | undefined;
|
|
74528
74633
|
can_delete?: boolean | undefined;
|
|
74529
|
-
|
|
74634
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
74530
74635
|
name?: string | null | undefined;
|
|
74531
74636
|
display_name?: string | undefined;
|
|
74532
74637
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -74547,7 +74652,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74547
74652
|
climate_preset_key?: string | undefined;
|
|
74548
74653
|
can_edit?: boolean | undefined;
|
|
74549
74654
|
can_delete?: boolean | undefined;
|
|
74550
|
-
|
|
74655
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
74551
74656
|
name?: string | null | undefined;
|
|
74552
74657
|
display_name?: string | undefined;
|
|
74553
74658
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -74568,7 +74673,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74568
74673
|
climate_preset_key: string;
|
|
74569
74674
|
can_edit: boolean;
|
|
74570
74675
|
can_delete: boolean;
|
|
74571
|
-
|
|
74676
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
74572
74677
|
display_name: string;
|
|
74573
74678
|
manual_override_allowed: boolean;
|
|
74574
74679
|
name?: string | null | undefined;
|
|
@@ -74662,6 +74767,9 @@ export declare const batch: z.ZodObject<{
|
|
|
74662
74767
|
can_simulate_disconnection?: boolean | undefined;
|
|
74663
74768
|
can_unlock_with_code?: boolean | undefined;
|
|
74664
74769
|
can_run_thermostat_programs?: boolean | undefined;
|
|
74770
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
74771
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
74772
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
74665
74773
|
can_simulate_hub_connection?: boolean | undefined;
|
|
74666
74774
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
74667
74775
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -76305,6 +76413,9 @@ export declare const batch: z.ZodObject<{
|
|
|
76305
76413
|
can_simulate_disconnection?: boolean | undefined;
|
|
76306
76414
|
can_unlock_with_code?: boolean | undefined;
|
|
76307
76415
|
can_run_thermostat_programs?: boolean | undefined;
|
|
76416
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
76417
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
76418
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
76308
76419
|
can_simulate_hub_connection?: boolean | undefined;
|
|
76309
76420
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
76310
76421
|
can_simulate_paid_subscription?: boolean | undefined;
|