@seamapi/types 1.578.0 → 1.580.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 +96 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +225 -10
- package/dist/index.cjs +96 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +152 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +3 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +3 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +9 -0
- package/lib/seam/connect/models/devices/device.d.ts +23 -0
- 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 +15 -0
- package/lib/seam/connect/openapi.d.ts +34 -0
- package/lib/seam/connect/openapi.js +87 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +110 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +89 -0
- package/src/lib/seam/connect/route-types.ts +232 -0
|
@@ -2004,6 +2004,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2004
2004
|
upper_limit_fahrenheit: number | null;
|
|
2005
2005
|
}>>>;
|
|
2006
2006
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2007
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2007
2008
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2008
2009
|
}, "strip", z.ZodTypeAny, {
|
|
2009
2010
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -2136,6 +2137,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2136
2137
|
upper_limit_fahrenheit: number | null;
|
|
2137
2138
|
} | undefined;
|
|
2138
2139
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
2140
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
2139
2141
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
2140
2142
|
}, {
|
|
2141
2143
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -2268,6 +2270,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2268
2270
|
upper_limit_fahrenheit: number | null;
|
|
2269
2271
|
} | undefined;
|
|
2270
2272
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
2273
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
2271
2274
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
2272
2275
|
}>>>;
|
|
2273
2276
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -2857,6 +2860,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2857
2860
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2858
2861
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
2859
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>;
|
|
2860
2866
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2861
2867
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2862
2868
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3491,6 +3497,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3491
3497
|
upper_limit_fahrenheit: number | null;
|
|
3492
3498
|
} | undefined;
|
|
3493
3499
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
3500
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
3494
3501
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
3495
3502
|
};
|
|
3496
3503
|
location: {
|
|
@@ -3511,6 +3518,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3511
3518
|
can_simulate_disconnection?: boolean | undefined;
|
|
3512
3519
|
can_unlock_with_code?: boolean | undefined;
|
|
3513
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;
|
|
3514
3524
|
can_simulate_hub_connection?: boolean | undefined;
|
|
3515
3525
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
3516
3526
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -4146,6 +4156,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4146
4156
|
upper_limit_fahrenheit: number | null;
|
|
4147
4157
|
} | undefined;
|
|
4148
4158
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
4159
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
4149
4160
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
4150
4161
|
};
|
|
4151
4162
|
location: {
|
|
@@ -4166,6 +4177,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4166
4177
|
can_simulate_disconnection?: boolean | undefined;
|
|
4167
4178
|
can_unlock_with_code?: boolean | undefined;
|
|
4168
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;
|
|
4169
4183
|
can_simulate_hub_connection?: boolean | undefined;
|
|
4170
4184
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
4171
4185
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -5769,6 +5783,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5769
5783
|
upper_limit_fahrenheit: number | null;
|
|
5770
5784
|
} | undefined;
|
|
5771
5785
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
5786
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
5772
5787
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
5773
5788
|
};
|
|
5774
5789
|
location: {
|
|
@@ -5789,6 +5804,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5789
5804
|
can_simulate_disconnection?: boolean | undefined;
|
|
5790
5805
|
can_unlock_with_code?: boolean | undefined;
|
|
5791
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;
|
|
5792
5810
|
can_simulate_hub_connection?: boolean | undefined;
|
|
5793
5811
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
5794
5812
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -6637,6 +6655,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6637
6655
|
upper_limit_fahrenheit: number | null;
|
|
6638
6656
|
} | undefined;
|
|
6639
6657
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
6658
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
6640
6659
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
6641
6660
|
};
|
|
6642
6661
|
location: {
|
|
@@ -6657,6 +6676,9 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6657
6676
|
can_simulate_disconnection?: boolean | undefined;
|
|
6658
6677
|
can_unlock_with_code?: boolean | undefined;
|
|
6659
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;
|
|
6660
6682
|
can_simulate_hub_connection?: boolean | undefined;
|
|
6661
6683
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
6662
6684
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -8868,6 +8890,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8868
8890
|
upper_limit_fahrenheit: number | null;
|
|
8869
8891
|
}>>>;
|
|
8870
8892
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8893
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8871
8894
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8872
8895
|
}, "strip", z.ZodTypeAny, {
|
|
8873
8896
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -9000,6 +9023,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9000
9023
|
upper_limit_fahrenheit: number | null;
|
|
9001
9024
|
} | undefined;
|
|
9002
9025
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
9026
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
9003
9027
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
9004
9028
|
}, {
|
|
9005
9029
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -9132,6 +9156,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9132
9156
|
upper_limit_fahrenheit: number | null;
|
|
9133
9157
|
} | undefined;
|
|
9134
9158
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
9159
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
9135
9160
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
9136
9161
|
}>>>;
|
|
9137
9162
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -9721,6 +9746,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9721
9746
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
9722
9747
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
9723
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>;
|
|
9724
9752
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
9725
9753
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
9726
9754
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10355,6 +10383,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10355
10383
|
upper_limit_fahrenheit: number | null;
|
|
10356
10384
|
} | undefined;
|
|
10357
10385
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
10386
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
10358
10387
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
10359
10388
|
};
|
|
10360
10389
|
location: {
|
|
@@ -10375,6 +10404,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10375
10404
|
can_simulate_disconnection?: boolean | undefined;
|
|
10376
10405
|
can_unlock_with_code?: boolean | undefined;
|
|
10377
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;
|
|
10378
10410
|
can_simulate_hub_connection?: boolean | undefined;
|
|
10379
10411
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
10380
10412
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -11010,6 +11042,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11010
11042
|
upper_limit_fahrenheit: number | null;
|
|
11011
11043
|
} | undefined;
|
|
11012
11044
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
11045
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
11013
11046
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
11014
11047
|
};
|
|
11015
11048
|
location: {
|
|
@@ -11030,6 +11063,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11030
11063
|
can_simulate_disconnection?: boolean | undefined;
|
|
11031
11064
|
can_unlock_with_code?: boolean | undefined;
|
|
11032
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;
|
|
11033
11069
|
can_simulate_hub_connection?: boolean | undefined;
|
|
11034
11070
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
11035
11071
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -12808,6 +12844,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12808
12844
|
upper_limit_fahrenheit: number | null;
|
|
12809
12845
|
} | undefined;
|
|
12810
12846
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
12847
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
12811
12848
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
12812
12849
|
};
|
|
12813
12850
|
location: {
|
|
@@ -12828,6 +12865,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12828
12865
|
can_simulate_disconnection?: boolean | undefined;
|
|
12829
12866
|
can_unlock_with_code?: boolean | undefined;
|
|
12830
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;
|
|
12831
12871
|
can_simulate_hub_connection?: boolean | undefined;
|
|
12832
12872
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
12833
12873
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -13722,6 +13762,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13722
13762
|
upper_limit_fahrenheit: number | null;
|
|
13723
13763
|
} | undefined;
|
|
13724
13764
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
13765
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
13725
13766
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
13726
13767
|
};
|
|
13727
13768
|
location: {
|
|
@@ -13742,6 +13783,9 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13742
13783
|
can_simulate_disconnection?: boolean | undefined;
|
|
13743
13784
|
can_unlock_with_code?: boolean | undefined;
|
|
13744
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;
|
|
13745
13789
|
can_simulate_hub_connection?: boolean | undefined;
|
|
13746
13790
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
13747
13791
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -15999,6 +16043,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15999
16043
|
upper_limit_fahrenheit: number | null;
|
|
16000
16044
|
}>>>;
|
|
16001
16045
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
16046
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
16002
16047
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
16003
16048
|
}, "strip", z.ZodTypeAny, {
|
|
16004
16049
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -16131,6 +16176,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16131
16176
|
upper_limit_fahrenheit: number | null;
|
|
16132
16177
|
} | undefined;
|
|
16133
16178
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
16179
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
16134
16180
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
16135
16181
|
}, {
|
|
16136
16182
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -16263,6 +16309,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16263
16309
|
upper_limit_fahrenheit: number | null;
|
|
16264
16310
|
} | undefined;
|
|
16265
16311
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
16312
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
16266
16313
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
16267
16314
|
}>>>;
|
|
16268
16315
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -16852,6 +16899,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16852
16899
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
16853
16900
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
16854
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>;
|
|
16855
16905
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
16856
16906
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
16857
16907
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17486,6 +17536,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17486
17536
|
upper_limit_fahrenheit: number | null;
|
|
17487
17537
|
} | undefined;
|
|
17488
17538
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
17539
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
17489
17540
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
17490
17541
|
};
|
|
17491
17542
|
location: {
|
|
@@ -17506,6 +17557,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17506
17557
|
can_simulate_disconnection?: boolean | undefined;
|
|
17507
17558
|
can_unlock_with_code?: boolean | undefined;
|
|
17508
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;
|
|
17509
17563
|
can_simulate_hub_connection?: boolean | undefined;
|
|
17510
17564
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
17511
17565
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -18141,6 +18195,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18141
18195
|
upper_limit_fahrenheit: number | null;
|
|
18142
18196
|
} | undefined;
|
|
18143
18197
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
18198
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
18144
18199
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
18145
18200
|
};
|
|
18146
18201
|
location: {
|
|
@@ -18161,6 +18216,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18161
18216
|
can_simulate_disconnection?: boolean | undefined;
|
|
18162
18217
|
can_unlock_with_code?: boolean | undefined;
|
|
18163
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;
|
|
18164
18222
|
can_simulate_hub_connection?: boolean | undefined;
|
|
18165
18223
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
18166
18224
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -19360,6 +19418,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19360
19418
|
upper_limit_fahrenheit: number | null;
|
|
19361
19419
|
} | undefined;
|
|
19362
19420
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
19421
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
19363
19422
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
19364
19423
|
};
|
|
19365
19424
|
location: {
|
|
@@ -19380,6 +19439,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19380
19439
|
can_simulate_disconnection?: boolean | undefined;
|
|
19381
19440
|
can_unlock_with_code?: boolean | undefined;
|
|
19382
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;
|
|
19383
19445
|
can_simulate_hub_connection?: boolean | undefined;
|
|
19384
19446
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
19385
19447
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -20170,6 +20232,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20170
20232
|
upper_limit_fahrenheit: number | null;
|
|
20171
20233
|
} | undefined;
|
|
20172
20234
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
20235
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
20173
20236
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
20174
20237
|
};
|
|
20175
20238
|
location: {
|
|
@@ -20190,6 +20253,9 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20190
20253
|
can_simulate_disconnection?: boolean | undefined;
|
|
20191
20254
|
can_unlock_with_code?: boolean | undefined;
|
|
20192
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;
|
|
20193
20259
|
can_simulate_hub_connection?: boolean | undefined;
|
|
20194
20260
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
20195
20261
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -22514,6 +22580,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22514
22580
|
upper_limit_fahrenheit: number | null;
|
|
22515
22581
|
}>>>;
|
|
22516
22582
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22583
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22517
22584
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22518
22585
|
}, "strip", z.ZodTypeAny, {
|
|
22519
22586
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -22646,6 +22713,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22646
22713
|
upper_limit_fahrenheit: number | null;
|
|
22647
22714
|
} | undefined;
|
|
22648
22715
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
22716
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
22649
22717
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
22650
22718
|
}, {
|
|
22651
22719
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -22778,6 +22846,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22778
22846
|
upper_limit_fahrenheit: number | null;
|
|
22779
22847
|
} | undefined;
|
|
22780
22848
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
22849
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
22781
22850
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
22782
22851
|
}>>>;
|
|
22783
22852
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -23367,6 +23436,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23367
23436
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23368
23437
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
23369
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>;
|
|
23370
23442
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23371
23443
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23372
23444
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24001,6 +24073,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24001
24073
|
upper_limit_fahrenheit: number | null;
|
|
24002
24074
|
} | undefined;
|
|
24003
24075
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
24076
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
24004
24077
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
24005
24078
|
};
|
|
24006
24079
|
location: {
|
|
@@ -24021,6 +24094,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24021
24094
|
can_simulate_disconnection?: boolean | undefined;
|
|
24022
24095
|
can_unlock_with_code?: boolean | undefined;
|
|
24023
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;
|
|
24024
24100
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24025
24101
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24026
24102
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -24656,6 +24732,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24656
24732
|
upper_limit_fahrenheit: number | null;
|
|
24657
24733
|
} | undefined;
|
|
24658
24734
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
24735
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
24659
24736
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
24660
24737
|
};
|
|
24661
24738
|
location: {
|
|
@@ -24676,6 +24753,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24676
24753
|
can_simulate_disconnection?: boolean | undefined;
|
|
24677
24754
|
can_unlock_with_code?: boolean | undefined;
|
|
24678
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;
|
|
24679
24759
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24680
24760
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24681
24761
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -33109,6 +33189,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33109
33189
|
upper_limit_fahrenheit: number | null;
|
|
33110
33190
|
}>>>;
|
|
33111
33191
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
33192
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
33112
33193
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
33113
33194
|
}, "strip", z.ZodTypeAny, {
|
|
33114
33195
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -33241,6 +33322,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33241
33322
|
upper_limit_fahrenheit: number | null;
|
|
33242
33323
|
} | undefined;
|
|
33243
33324
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
33325
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
33244
33326
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
33245
33327
|
}, {
|
|
33246
33328
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -33373,6 +33455,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33373
33455
|
upper_limit_fahrenheit: number | null;
|
|
33374
33456
|
} | undefined;
|
|
33375
33457
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
33458
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
33376
33459
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
33377
33460
|
}>>>;
|
|
33378
33461
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -33962,6 +34045,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33962
34045
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
33963
34046
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
33964
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>;
|
|
33965
34051
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
33966
34052
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
33967
34053
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34115,6 +34201,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34115
34201
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
34116
34202
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
34117
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>;
|
|
34118
34207
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
34119
34208
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
34120
34209
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34341,6 +34430,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34341
34430
|
can_simulate_disconnection?: boolean | undefined;
|
|
34342
34431
|
can_unlock_with_code?: boolean | undefined;
|
|
34343
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;
|
|
34344
34436
|
can_simulate_hub_connection?: boolean | undefined;
|
|
34345
34437
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34346
34438
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -34567,6 +34659,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
34567
34659
|
can_simulate_disconnection?: boolean | undefined;
|
|
34568
34660
|
can_unlock_with_code?: boolean | undefined;
|
|
34569
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;
|
|
34570
34665
|
can_simulate_hub_connection?: boolean | undefined;
|
|
34571
34666
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34572
34667
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -42063,6 +42158,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42063
42158
|
upper_limit_fahrenheit: number | null;
|
|
42064
42159
|
} | undefined;
|
|
42065
42160
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
42161
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
42066
42162
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
42067
42163
|
};
|
|
42068
42164
|
location: {
|
|
@@ -42083,6 +42179,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42083
42179
|
can_simulate_disconnection?: boolean | undefined;
|
|
42084
42180
|
can_unlock_with_code?: boolean | undefined;
|
|
42085
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;
|
|
42086
42185
|
can_simulate_hub_connection?: boolean | undefined;
|
|
42087
42186
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
42088
42187
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -43795,6 +43894,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
43795
43894
|
can_simulate_disconnection?: boolean | undefined;
|
|
43796
43895
|
can_unlock_with_code?: boolean | undefined;
|
|
43797
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;
|
|
43798
43900
|
can_simulate_hub_connection?: boolean | undefined;
|
|
43799
43901
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43800
43902
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -46032,6 +46134,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46032
46134
|
upper_limit_fahrenheit: number | null;
|
|
46033
46135
|
} | undefined;
|
|
46034
46136
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
46137
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
46035
46138
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
46036
46139
|
};
|
|
46037
46140
|
location: {
|
|
@@ -46052,6 +46155,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46052
46155
|
can_simulate_disconnection?: boolean | undefined;
|
|
46053
46156
|
can_unlock_with_code?: boolean | undefined;
|
|
46054
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;
|
|
46055
46161
|
can_simulate_hub_connection?: boolean | undefined;
|
|
46056
46162
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
46057
46163
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -47764,6 +47870,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
47764
47870
|
can_simulate_disconnection?: boolean | undefined;
|
|
47765
47871
|
can_unlock_with_code?: boolean | undefined;
|
|
47766
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;
|
|
47767
47876
|
can_simulate_hub_connection?: boolean | undefined;
|
|
47768
47877
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47769
47878
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -51524,6 +51633,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51524
51633
|
upper_limit_fahrenheit: number | null;
|
|
51525
51634
|
}>>>;
|
|
51526
51635
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
51636
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
51527
51637
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
51528
51638
|
}, "strip", z.ZodTypeAny, {
|
|
51529
51639
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -51656,6 +51766,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51656
51766
|
upper_limit_fahrenheit: number | null;
|
|
51657
51767
|
} | undefined;
|
|
51658
51768
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
51769
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
51659
51770
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
51660
51771
|
}, {
|
|
51661
51772
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -51788,6 +51899,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51788
51899
|
upper_limit_fahrenheit: number | null;
|
|
51789
51900
|
} | undefined;
|
|
51790
51901
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
51902
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
51791
51903
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
51792
51904
|
}>>>;
|
|
51793
51905
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -52377,6 +52489,9 @@ export declare const batch: z.ZodObject<{
|
|
|
52377
52489
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
52378
52490
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
52379
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>;
|
|
52380
52495
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
52381
52496
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
52382
52497
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -53011,6 +53126,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53011
53126
|
upper_limit_fahrenheit: number | null;
|
|
53012
53127
|
} | undefined;
|
|
53013
53128
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
53129
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
53014
53130
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
53015
53131
|
};
|
|
53016
53132
|
location: {
|
|
@@ -53031,6 +53147,9 @@ export declare const batch: z.ZodObject<{
|
|
|
53031
53147
|
can_simulate_disconnection?: boolean | undefined;
|
|
53032
53148
|
can_unlock_with_code?: boolean | undefined;
|
|
53033
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;
|
|
53034
53153
|
can_simulate_hub_connection?: boolean | undefined;
|
|
53035
53154
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
53036
53155
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -53666,6 +53785,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53666
53785
|
upper_limit_fahrenheit: number | null;
|
|
53667
53786
|
} | undefined;
|
|
53668
53787
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
53788
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
53669
53789
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
53670
53790
|
};
|
|
53671
53791
|
location: {
|
|
@@ -53686,6 +53806,9 @@ export declare const batch: z.ZodObject<{
|
|
|
53686
53806
|
can_simulate_disconnection?: boolean | undefined;
|
|
53687
53807
|
can_unlock_with_code?: boolean | undefined;
|
|
53688
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;
|
|
53689
53812
|
can_simulate_hub_connection?: boolean | undefined;
|
|
53690
53813
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
53691
53814
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -62119,6 +62242,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62119
62242
|
upper_limit_fahrenheit: number | null;
|
|
62120
62243
|
}>>>;
|
|
62121
62244
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
62245
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
62122
62246
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
62123
62247
|
}, "strip", z.ZodTypeAny, {
|
|
62124
62248
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -62251,6 +62375,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62251
62375
|
upper_limit_fahrenheit: number | null;
|
|
62252
62376
|
} | undefined;
|
|
62253
62377
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
62378
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
62254
62379
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
62255
62380
|
}, {
|
|
62256
62381
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -62383,6 +62508,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62383
62508
|
upper_limit_fahrenheit: number | null;
|
|
62384
62509
|
} | undefined;
|
|
62385
62510
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
62511
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
62386
62512
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
62387
62513
|
}>>>;
|
|
62388
62514
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -62972,6 +63098,9 @@ export declare const batch: z.ZodObject<{
|
|
|
62972
63098
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
62973
63099
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
62974
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>;
|
|
62975
63104
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
62976
63105
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
62977
63106
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -63125,6 +63254,9 @@ export declare const batch: z.ZodObject<{
|
|
|
63125
63254
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
63126
63255
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
63127
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>;
|
|
63128
63260
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
63129
63261
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
63130
63262
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -63351,6 +63483,9 @@ export declare const batch: z.ZodObject<{
|
|
|
63351
63483
|
can_simulate_disconnection?: boolean | undefined;
|
|
63352
63484
|
can_unlock_with_code?: boolean | undefined;
|
|
63353
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;
|
|
63354
63489
|
can_simulate_hub_connection?: boolean | undefined;
|
|
63355
63490
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
63356
63491
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -63577,6 +63712,9 @@ export declare const batch: z.ZodObject<{
|
|
|
63577
63712
|
can_simulate_disconnection?: boolean | undefined;
|
|
63578
63713
|
can_unlock_with_code?: boolean | undefined;
|
|
63579
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;
|
|
63580
63718
|
can_simulate_hub_connection?: boolean | undefined;
|
|
63581
63719
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
63582
63720
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -70701,6 +70839,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70701
70839
|
upper_limit_fahrenheit: number | null;
|
|
70702
70840
|
} | undefined;
|
|
70703
70841
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
70842
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
70704
70843
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
70705
70844
|
};
|
|
70706
70845
|
location: {
|
|
@@ -70721,6 +70860,9 @@ export declare const batch: z.ZodObject<{
|
|
|
70721
70860
|
can_simulate_disconnection?: boolean | undefined;
|
|
70722
70861
|
can_unlock_with_code?: boolean | undefined;
|
|
70723
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;
|
|
70724
70866
|
can_simulate_hub_connection?: boolean | undefined;
|
|
70725
70867
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
70726
70868
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -72364,6 +72506,9 @@ export declare const batch: z.ZodObject<{
|
|
|
72364
72506
|
can_simulate_disconnection?: boolean | undefined;
|
|
72365
72507
|
can_unlock_with_code?: boolean | undefined;
|
|
72366
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;
|
|
72367
72512
|
can_simulate_hub_connection?: boolean | undefined;
|
|
72368
72513
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
72369
72514
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -74601,6 +74746,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74601
74746
|
upper_limit_fahrenheit: number | null;
|
|
74602
74747
|
} | undefined;
|
|
74603
74748
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
74749
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
74604
74750
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
74605
74751
|
};
|
|
74606
74752
|
location: {
|
|
@@ -74621,6 +74767,9 @@ export declare const batch: z.ZodObject<{
|
|
|
74621
74767
|
can_simulate_disconnection?: boolean | undefined;
|
|
74622
74768
|
can_unlock_with_code?: boolean | undefined;
|
|
74623
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;
|
|
74624
74773
|
can_simulate_hub_connection?: boolean | undefined;
|
|
74625
74774
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
74626
74775
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -76264,6 +76413,9 @@ export declare const batch: z.ZodObject<{
|
|
|
76264
76413
|
can_simulate_disconnection?: boolean | undefined;
|
|
76265
76414
|
can_unlock_with_code?: boolean | undefined;
|
|
76266
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;
|
|
76267
76419
|
can_simulate_hub_connection?: boolean | undefined;
|
|
76268
76420
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
76269
76421
|
can_simulate_paid_subscription?: boolean | undefined;
|