@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
package/dist/connect.d.cts
CHANGED
|
@@ -12435,6 +12435,7 @@ declare const batch: z.ZodObject<{
|
|
|
12435
12435
|
upper_limit_fahrenheit: number | null;
|
|
12436
12436
|
}>>>;
|
|
12437
12437
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
12438
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
12438
12439
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
12439
12440
|
}, "strip", z.ZodTypeAny, {
|
|
12440
12441
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -12567,6 +12568,7 @@ declare const batch: z.ZodObject<{
|
|
|
12567
12568
|
upper_limit_fahrenheit: number | null;
|
|
12568
12569
|
} | undefined;
|
|
12569
12570
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
12571
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
12570
12572
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
12571
12573
|
}, {
|
|
12572
12574
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -12699,6 +12701,7 @@ declare const batch: z.ZodObject<{
|
|
|
12699
12701
|
upper_limit_fahrenheit: number | null;
|
|
12700
12702
|
} | undefined;
|
|
12701
12703
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
12704
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
12702
12705
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
12703
12706
|
}>>>;
|
|
12704
12707
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -13288,6 +13291,9 @@ declare const batch: z.ZodObject<{
|
|
|
13288
13291
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
13289
13292
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
13290
13293
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
13294
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
13295
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
13296
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
13291
13297
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
13292
13298
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
13293
13299
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13922,6 +13928,7 @@ declare const batch: z.ZodObject<{
|
|
|
13922
13928
|
upper_limit_fahrenheit: number | null;
|
|
13923
13929
|
} | undefined;
|
|
13924
13930
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
13931
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
13925
13932
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
13926
13933
|
};
|
|
13927
13934
|
location: {
|
|
@@ -13942,6 +13949,9 @@ declare const batch: z.ZodObject<{
|
|
|
13942
13949
|
can_simulate_disconnection?: boolean | undefined;
|
|
13943
13950
|
can_unlock_with_code?: boolean | undefined;
|
|
13944
13951
|
can_run_thermostat_programs?: boolean | undefined;
|
|
13952
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
13953
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
13954
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
13945
13955
|
can_simulate_hub_connection?: boolean | undefined;
|
|
13946
13956
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
13947
13957
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -14577,6 +14587,7 @@ declare const batch: z.ZodObject<{
|
|
|
14577
14587
|
upper_limit_fahrenheit: number | null;
|
|
14578
14588
|
} | undefined;
|
|
14579
14589
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
14590
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
14580
14591
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
14581
14592
|
};
|
|
14582
14593
|
location: {
|
|
@@ -14597,6 +14608,9 @@ declare const batch: z.ZodObject<{
|
|
|
14597
14608
|
can_simulate_disconnection?: boolean | undefined;
|
|
14598
14609
|
can_unlock_with_code?: boolean | undefined;
|
|
14599
14610
|
can_run_thermostat_programs?: boolean | undefined;
|
|
14611
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
14612
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
14613
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
14600
14614
|
can_simulate_hub_connection?: boolean | undefined;
|
|
14601
14615
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
14602
14616
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -23030,6 +23044,7 @@ declare const batch: z.ZodObject<{
|
|
|
23030
23044
|
upper_limit_fahrenheit: number | null;
|
|
23031
23045
|
}>>>;
|
|
23032
23046
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
23047
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
23033
23048
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
23034
23049
|
}, "strip", z.ZodTypeAny, {
|
|
23035
23050
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -23162,6 +23177,7 @@ declare const batch: z.ZodObject<{
|
|
|
23162
23177
|
upper_limit_fahrenheit: number | null;
|
|
23163
23178
|
} | undefined;
|
|
23164
23179
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
23180
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
23165
23181
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
23166
23182
|
}, {
|
|
23167
23183
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -23294,6 +23310,7 @@ declare const batch: z.ZodObject<{
|
|
|
23294
23310
|
upper_limit_fahrenheit: number | null;
|
|
23295
23311
|
} | undefined;
|
|
23296
23312
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
23313
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
23297
23314
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
23298
23315
|
}>>>;
|
|
23299
23316
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -23883,6 +23900,9 @@ declare const batch: z.ZodObject<{
|
|
|
23883
23900
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23884
23901
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
23885
23902
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
23903
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
23904
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
23905
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
23886
23906
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23887
23907
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23888
23908
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24036,6 +24056,9 @@ declare const batch: z.ZodObject<{
|
|
|
24036
24056
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
24037
24057
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
24038
24058
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
24059
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
24060
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
24061
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
24039
24062
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
24040
24063
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
24041
24064
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24262,6 +24285,9 @@ declare const batch: z.ZodObject<{
|
|
|
24262
24285
|
can_simulate_disconnection?: boolean | undefined;
|
|
24263
24286
|
can_unlock_with_code?: boolean | undefined;
|
|
24264
24287
|
can_run_thermostat_programs?: boolean | undefined;
|
|
24288
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
24289
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
24290
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
24265
24291
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24266
24292
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24267
24293
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -24488,6 +24514,9 @@ declare const batch: z.ZodObject<{
|
|
|
24488
24514
|
can_simulate_disconnection?: boolean | undefined;
|
|
24489
24515
|
can_unlock_with_code?: boolean | undefined;
|
|
24490
24516
|
can_run_thermostat_programs?: boolean | undefined;
|
|
24517
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
24518
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
24519
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
24491
24520
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24492
24521
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24493
24522
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -31612,6 +31641,7 @@ declare const batch: z.ZodObject<{
|
|
|
31612
31641
|
upper_limit_fahrenheit: number | null;
|
|
31613
31642
|
} | undefined;
|
|
31614
31643
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
31644
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
31615
31645
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
31616
31646
|
};
|
|
31617
31647
|
location: {
|
|
@@ -31632,6 +31662,9 @@ declare const batch: z.ZodObject<{
|
|
|
31632
31662
|
can_simulate_disconnection?: boolean | undefined;
|
|
31633
31663
|
can_unlock_with_code?: boolean | undefined;
|
|
31634
31664
|
can_run_thermostat_programs?: boolean | undefined;
|
|
31665
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
31666
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
31667
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
31635
31668
|
can_simulate_hub_connection?: boolean | undefined;
|
|
31636
31669
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
31637
31670
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -33275,6 +33308,9 @@ declare const batch: z.ZodObject<{
|
|
|
33275
33308
|
can_simulate_disconnection?: boolean | undefined;
|
|
33276
33309
|
can_unlock_with_code?: boolean | undefined;
|
|
33277
33310
|
can_run_thermostat_programs?: boolean | undefined;
|
|
33311
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
33312
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
33313
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
33278
33314
|
can_simulate_hub_connection?: boolean | undefined;
|
|
33279
33315
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
33280
33316
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -35512,6 +35548,7 @@ declare const batch: z.ZodObject<{
|
|
|
35512
35548
|
upper_limit_fahrenheit: number | null;
|
|
35513
35549
|
} | undefined;
|
|
35514
35550
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
35551
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
35515
35552
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
35516
35553
|
};
|
|
35517
35554
|
location: {
|
|
@@ -35532,6 +35569,9 @@ declare const batch: z.ZodObject<{
|
|
|
35532
35569
|
can_simulate_disconnection?: boolean | undefined;
|
|
35533
35570
|
can_unlock_with_code?: boolean | undefined;
|
|
35534
35571
|
can_run_thermostat_programs?: boolean | undefined;
|
|
35572
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
35573
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
35574
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
35535
35575
|
can_simulate_hub_connection?: boolean | undefined;
|
|
35536
35576
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
35537
35577
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -37175,6 +37215,9 @@ declare const batch: z.ZodObject<{
|
|
|
37175
37215
|
can_simulate_disconnection?: boolean | undefined;
|
|
37176
37216
|
can_unlock_with_code?: boolean | undefined;
|
|
37177
37217
|
can_run_thermostat_programs?: boolean | undefined;
|
|
37218
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
37219
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
37220
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
37178
37221
|
can_simulate_hub_connection?: boolean | undefined;
|
|
37179
37222
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
37180
37223
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -42044,6 +42087,7 @@ declare const device: z.ZodObject<{
|
|
|
42044
42087
|
upper_limit_fahrenheit: number | null;
|
|
42045
42088
|
}>>>;
|
|
42046
42089
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
42090
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
42047
42091
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
42048
42092
|
}, "strip", z.ZodTypeAny, {
|
|
42049
42093
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -42176,6 +42220,7 @@ declare const device: z.ZodObject<{
|
|
|
42176
42220
|
upper_limit_fahrenheit: number | null;
|
|
42177
42221
|
} | undefined;
|
|
42178
42222
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
42223
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
42179
42224
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
42180
42225
|
}, {
|
|
42181
42226
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -42308,6 +42353,7 @@ declare const device: z.ZodObject<{
|
|
|
42308
42353
|
upper_limit_fahrenheit: number | null;
|
|
42309
42354
|
} | undefined;
|
|
42310
42355
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
42356
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
42311
42357
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
42312
42358
|
}>>>;
|
|
42313
42359
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -42897,6 +42943,9 @@ declare const device: z.ZodObject<{
|
|
|
42897
42943
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
42898
42944
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
42899
42945
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
42946
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
42947
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
42948
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
42900
42949
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
42901
42950
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
42902
42951
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -43531,6 +43580,7 @@ declare const device: z.ZodObject<{
|
|
|
43531
43580
|
upper_limit_fahrenheit: number | null;
|
|
43532
43581
|
} | undefined;
|
|
43533
43582
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
43583
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
43534
43584
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
43535
43585
|
};
|
|
43536
43586
|
location: {
|
|
@@ -43551,6 +43601,9 @@ declare const device: z.ZodObject<{
|
|
|
43551
43601
|
can_simulate_disconnection?: boolean | undefined;
|
|
43552
43602
|
can_unlock_with_code?: boolean | undefined;
|
|
43553
43603
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43604
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
43605
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
43606
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
43554
43607
|
can_simulate_hub_connection?: boolean | undefined;
|
|
43555
43608
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43556
43609
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -44186,6 +44239,7 @@ declare const device: z.ZodObject<{
|
|
|
44186
44239
|
upper_limit_fahrenheit: number | null;
|
|
44187
44240
|
} | undefined;
|
|
44188
44241
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
44242
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
44189
44243
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
44190
44244
|
};
|
|
44191
44245
|
location: {
|
|
@@ -44206,6 +44260,9 @@ declare const device: z.ZodObject<{
|
|
|
44206
44260
|
can_simulate_disconnection?: boolean | undefined;
|
|
44207
44261
|
can_unlock_with_code?: boolean | undefined;
|
|
44208
44262
|
can_run_thermostat_programs?: boolean | undefined;
|
|
44263
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
44264
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
44265
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
44209
44266
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44210
44267
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44211
44268
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -44284,6 +44341,9 @@ declare const device_provider: z.ZodObject<{
|
|
|
44284
44341
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
44285
44342
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
44286
44343
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
44344
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
44345
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
44346
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
44287
44347
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
44288
44348
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
44289
44349
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44305,6 +44365,9 @@ declare const device_provider: z.ZodObject<{
|
|
|
44305
44365
|
can_simulate_disconnection?: boolean | undefined;
|
|
44306
44366
|
can_unlock_with_code?: boolean | undefined;
|
|
44307
44367
|
can_run_thermostat_programs?: boolean | undefined;
|
|
44368
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
44369
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
44370
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
44308
44371
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44309
44372
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44310
44373
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -44326,6 +44389,9 @@ declare const device_provider: z.ZodObject<{
|
|
|
44326
44389
|
can_simulate_disconnection?: boolean | undefined;
|
|
44327
44390
|
can_unlock_with_code?: boolean | undefined;
|
|
44328
44391
|
can_run_thermostat_programs?: boolean | undefined;
|
|
44392
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
44393
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
44394
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
44329
44395
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44330
44396
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44331
44397
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -46307,6 +46373,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46307
46373
|
upper_limit_fahrenheit: number | null;
|
|
46308
46374
|
}>>>;
|
|
46309
46375
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
46376
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
46310
46377
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
46311
46378
|
}, "strip", z.ZodTypeAny, {
|
|
46312
46379
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -46439,6 +46506,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46439
46506
|
upper_limit_fahrenheit: number | null;
|
|
46440
46507
|
} | undefined;
|
|
46441
46508
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
46509
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
46442
46510
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
46443
46511
|
}, {
|
|
46444
46512
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -46571,6 +46639,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46571
46639
|
upper_limit_fahrenheit: number | null;
|
|
46572
46640
|
} | undefined;
|
|
46573
46641
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
46642
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
46574
46643
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
46575
46644
|
}>>>;
|
|
46576
46645
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -47160,6 +47229,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47160
47229
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
47161
47230
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
47162
47231
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
47232
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
47233
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
47234
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
47163
47235
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
47164
47236
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
47165
47237
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -47313,6 +47385,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47313
47385
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
47314
47386
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
47315
47387
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
47388
|
+
can_program_thermostat_programs_as_weekday_weekend: z.ZodOptional<z.ZodBoolean>;
|
|
47389
|
+
can_program_thermostat_programs_as_different_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
47390
|
+
can_program_thermostat_programs_as_same_each_day: z.ZodOptional<z.ZodBoolean>;
|
|
47316
47391
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
47317
47392
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
47318
47393
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -47539,6 +47614,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47539
47614
|
can_simulate_disconnection?: boolean | undefined;
|
|
47540
47615
|
can_unlock_with_code?: boolean | undefined;
|
|
47541
47616
|
can_run_thermostat_programs?: boolean | undefined;
|
|
47617
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
47618
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
47619
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
47542
47620
|
can_simulate_hub_connection?: boolean | undefined;
|
|
47543
47621
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47544
47622
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -47765,6 +47843,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47765
47843
|
can_simulate_disconnection?: boolean | undefined;
|
|
47766
47844
|
can_unlock_with_code?: boolean | undefined;
|
|
47767
47845
|
can_run_thermostat_programs?: boolean | undefined;
|
|
47846
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
47847
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
47848
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
47768
47849
|
can_simulate_hub_connection?: boolean | undefined;
|
|
47769
47850
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47770
47851
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -55785,6 +55866,15 @@ declare const _default: {
|
|
|
55785
55866
|
can_program_online_access_codes: {
|
|
55786
55867
|
type: string;
|
|
55787
55868
|
};
|
|
55869
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
55870
|
+
type: string;
|
|
55871
|
+
};
|
|
55872
|
+
can_program_thermostat_programs_as_same_each_day: {
|
|
55873
|
+
type: string;
|
|
55874
|
+
};
|
|
55875
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
55876
|
+
type: string;
|
|
55877
|
+
};
|
|
55788
55878
|
can_remotely_lock: {
|
|
55789
55879
|
type: string;
|
|
55790
55880
|
};
|
|
@@ -57496,6 +57586,7 @@ declare const _default: {
|
|
|
57496
57586
|
max_heating_set_point_celsius?: never;
|
|
57497
57587
|
max_heating_set_point_fahrenheit?: never;
|
|
57498
57588
|
max_thermostat_daily_program_periods_per_day?: never;
|
|
57589
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: never;
|
|
57499
57590
|
min_cooling_set_point_celsius?: never;
|
|
57500
57591
|
min_cooling_set_point_fahrenheit?: never;
|
|
57501
57592
|
min_heating_cooling_delta_celsius?: never;
|
|
@@ -57979,6 +58070,12 @@ declare const _default: {
|
|
|
57979
58070
|
type: string;
|
|
57980
58071
|
'x-property-group-key': string;
|
|
57981
58072
|
};
|
|
58073
|
+
max_unique_climate_presets_per_thermostat_weekly_program: {
|
|
58074
|
+
description: string;
|
|
58075
|
+
format: string;
|
|
58076
|
+
type: string;
|
|
58077
|
+
'x-property-group-key': string;
|
|
58078
|
+
};
|
|
57982
58079
|
min_cooling_set_point_celsius: {
|
|
57983
58080
|
description: string;
|
|
57984
58081
|
format: string;
|
|
@@ -58358,6 +58455,15 @@ declare const _default: {
|
|
|
58358
58455
|
can_program_online_access_codes: {
|
|
58359
58456
|
type: string;
|
|
58360
58457
|
};
|
|
58458
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
58459
|
+
type: string;
|
|
58460
|
+
};
|
|
58461
|
+
can_program_thermostat_programs_as_same_each_day: {
|
|
58462
|
+
type: string;
|
|
58463
|
+
};
|
|
58464
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
58465
|
+
type: string;
|
|
58466
|
+
};
|
|
58361
58467
|
can_remotely_lock: {
|
|
58362
58468
|
type: string;
|
|
58363
58469
|
};
|
|
@@ -64821,6 +64927,15 @@ declare const _default: {
|
|
|
64821
64927
|
can_program_online_access_codes: {
|
|
64822
64928
|
type: string;
|
|
64823
64929
|
};
|
|
64930
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
64931
|
+
type: string;
|
|
64932
|
+
};
|
|
64933
|
+
can_program_thermostat_programs_as_same_each_day: {
|
|
64934
|
+
type: string;
|
|
64935
|
+
};
|
|
64936
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
64937
|
+
type: string;
|
|
64938
|
+
};
|
|
64824
64939
|
can_remotely_lock: {
|
|
64825
64940
|
type: string;
|
|
64826
64941
|
};
|
|
@@ -115336,6 +115451,8 @@ type Routes = {
|
|
|
115336
115451
|
} | undefined) | undefined;
|
|
115337
115452
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
115338
115453
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
115454
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
115455
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
115339
115456
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
115340
115457
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
115341
115458
|
});
|
|
@@ -115637,6 +115754,9 @@ type Routes = {
|
|
|
115637
115754
|
can_simulate_disconnection?: boolean | undefined;
|
|
115638
115755
|
can_unlock_with_code?: boolean | undefined;
|
|
115639
115756
|
can_run_thermostat_programs?: boolean | undefined;
|
|
115757
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
115758
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
115759
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
115640
115760
|
can_simulate_hub_connection?: boolean | undefined;
|
|
115641
115761
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
115642
115762
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -118517,6 +118637,8 @@ type Routes = {
|
|
|
118517
118637
|
} | undefined) | undefined;
|
|
118518
118638
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
118519
118639
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
118640
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
118641
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
118520
118642
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
118521
118643
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
118522
118644
|
});
|
|
@@ -118818,6 +118940,9 @@ type Routes = {
|
|
|
118818
118940
|
can_simulate_disconnection?: boolean | undefined;
|
|
118819
118941
|
can_unlock_with_code?: boolean | undefined;
|
|
118820
118942
|
can_run_thermostat_programs?: boolean | undefined;
|
|
118943
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
118944
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
118945
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
118821
118946
|
can_simulate_hub_connection?: boolean | undefined;
|
|
118822
118947
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
118823
118948
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -121473,6 +121598,9 @@ type Routes = {
|
|
|
121473
121598
|
can_simulate_disconnection?: boolean | undefined;
|
|
121474
121599
|
can_unlock_with_code?: boolean | undefined;
|
|
121475
121600
|
can_run_thermostat_programs?: boolean | undefined;
|
|
121601
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
121602
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
121603
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
121476
121604
|
can_simulate_hub_connection?: boolean | undefined;
|
|
121477
121605
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
121478
121606
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -137011,6 +137139,8 @@ type Routes = {
|
|
|
137011
137139
|
} | undefined) | undefined;
|
|
137012
137140
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
137013
137141
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
137142
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
137143
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
137014
137144
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
137015
137145
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
137016
137146
|
});
|
|
@@ -137312,6 +137442,9 @@ type Routes = {
|
|
|
137312
137442
|
can_simulate_disconnection?: boolean | undefined;
|
|
137313
137443
|
can_unlock_with_code?: boolean | undefined;
|
|
137314
137444
|
can_run_thermostat_programs?: boolean | undefined;
|
|
137445
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
137446
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
137447
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
137315
137448
|
can_simulate_hub_connection?: boolean | undefined;
|
|
137316
137449
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
137317
137450
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -137353,9 +137486,9 @@ type Routes = {
|
|
|
137353
137486
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
137354
137487
|
page_cursor?: (string | undefined) | null;
|
|
137355
137488
|
/** */
|
|
137356
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
137489
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
137357
137490
|
/** */
|
|
137358
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
137491
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
137359
137492
|
/**
|
|
137360
137493
|
* @deprecated Use `space_id`.*/
|
|
137361
137494
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -138262,6 +138395,8 @@ type Routes = {
|
|
|
138262
138395
|
} | undefined) | undefined;
|
|
138263
138396
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
138264
138397
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
138398
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
138399
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
138265
138400
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
138266
138401
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
138267
138402
|
});
|
|
@@ -138563,6 +138698,9 @@ type Routes = {
|
|
|
138563
138698
|
can_simulate_disconnection?: boolean | undefined;
|
|
138564
138699
|
can_unlock_with_code?: boolean | undefined;
|
|
138565
138700
|
can_run_thermostat_programs?: boolean | undefined;
|
|
138701
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
138702
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
138703
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
138566
138704
|
can_simulate_hub_connection?: boolean | undefined;
|
|
138567
138705
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
138568
138706
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -138607,6 +138745,9 @@ type Routes = {
|
|
|
138607
138745
|
can_simulate_disconnection?: boolean | undefined;
|
|
138608
138746
|
can_unlock_with_code?: boolean | undefined;
|
|
138609
138747
|
can_run_thermostat_programs?: boolean | undefined;
|
|
138748
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
138749
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
138750
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
138610
138751
|
can_simulate_hub_connection?: boolean | undefined;
|
|
138611
138752
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
138612
138753
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -139075,6 +139216,9 @@ type Routes = {
|
|
|
139075
139216
|
can_simulate_disconnection?: boolean | undefined;
|
|
139076
139217
|
can_unlock_with_code?: boolean | undefined;
|
|
139077
139218
|
can_run_thermostat_programs?: boolean | undefined;
|
|
139219
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
139220
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
139221
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
139078
139222
|
can_simulate_hub_connection?: boolean | undefined;
|
|
139079
139223
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
139080
139224
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -139114,9 +139258,9 @@ type Routes = {
|
|
|
139114
139258
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
139115
139259
|
page_cursor?: (string | undefined) | null;
|
|
139116
139260
|
/** */
|
|
139117
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
139261
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
139118
139262
|
/** */
|
|
139119
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
139263
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
139120
139264
|
/**
|
|
139121
139265
|
* @deprecated Use `space_id`.*/
|
|
139122
139266
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -139505,6 +139649,9 @@ type Routes = {
|
|
|
139505
139649
|
can_simulate_disconnection?: boolean | undefined;
|
|
139506
139650
|
can_unlock_with_code?: boolean | undefined;
|
|
139507
139651
|
can_run_thermostat_programs?: boolean | undefined;
|
|
139652
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
139653
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
139654
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
139508
139655
|
can_simulate_hub_connection?: boolean | undefined;
|
|
139509
139656
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
139510
139657
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -144425,6 +144572,8 @@ type Routes = {
|
|
|
144425
144572
|
} | undefined) | undefined;
|
|
144426
144573
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
144427
144574
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
144575
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
144576
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
144428
144577
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
144429
144578
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
144430
144579
|
});
|
|
@@ -144726,6 +144875,9 @@ type Routes = {
|
|
|
144726
144875
|
can_simulate_disconnection?: boolean | undefined;
|
|
144727
144876
|
can_unlock_with_code?: boolean | undefined;
|
|
144728
144877
|
can_run_thermostat_programs?: boolean | undefined;
|
|
144878
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
144879
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
144880
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
144729
144881
|
can_simulate_hub_connection?: boolean | undefined;
|
|
144730
144882
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
144731
144883
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -145627,6 +145779,8 @@ type Routes = {
|
|
|
145627
145779
|
} | undefined) | undefined;
|
|
145628
145780
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
145629
145781
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
145782
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
145783
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
145630
145784
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
145631
145785
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
145632
145786
|
});
|
|
@@ -145928,6 +146082,9 @@ type Routes = {
|
|
|
145928
146082
|
can_simulate_disconnection?: boolean | undefined;
|
|
145929
146083
|
can_unlock_with_code?: boolean | undefined;
|
|
145930
146084
|
can_run_thermostat_programs?: boolean | undefined;
|
|
146085
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
146086
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
146087
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
145931
146088
|
can_simulate_hub_connection?: boolean | undefined;
|
|
145932
146089
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
145933
146090
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -145969,9 +146126,9 @@ type Routes = {
|
|
|
145969
146126
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
145970
146127
|
page_cursor?: (string | undefined) | null;
|
|
145971
146128
|
/** */
|
|
145972
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
146129
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
145973
146130
|
/** */
|
|
145974
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
146131
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
145975
146132
|
/**
|
|
145976
146133
|
* @deprecated Use `space_id`.*/
|
|
145977
146134
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -146878,6 +147035,8 @@ type Routes = {
|
|
|
146878
147035
|
} | undefined) | undefined;
|
|
146879
147036
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
146880
147037
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
147038
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
147039
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
146881
147040
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
146882
147041
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
146883
147042
|
});
|
|
@@ -147179,6 +147338,9 @@ type Routes = {
|
|
|
147179
147338
|
can_simulate_disconnection?: boolean | undefined;
|
|
147180
147339
|
can_unlock_with_code?: boolean | undefined;
|
|
147181
147340
|
can_run_thermostat_programs?: boolean | undefined;
|
|
147341
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
147342
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
147343
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
147182
147344
|
can_simulate_hub_connection?: boolean | undefined;
|
|
147183
147345
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
147184
147346
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -148079,6 +148241,8 @@ type Routes = {
|
|
|
148079
148241
|
} | undefined) | undefined;
|
|
148080
148242
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
148081
148243
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
148244
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
148245
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
148082
148246
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
148083
148247
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
148084
148248
|
});
|
|
@@ -148380,6 +148544,9 @@ type Routes = {
|
|
|
148380
148544
|
can_simulate_disconnection?: boolean | undefined;
|
|
148381
148545
|
can_unlock_with_code?: boolean | undefined;
|
|
148382
148546
|
can_run_thermostat_programs?: boolean | undefined;
|
|
148547
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
148548
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
148549
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
148383
148550
|
can_simulate_hub_connection?: boolean | undefined;
|
|
148384
148551
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
148385
148552
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -153459,9 +153626,9 @@ type Routes = {
|
|
|
153459
153626
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
153460
153627
|
page_cursor?: (string | undefined) | null;
|
|
153461
153628
|
/** */
|
|
153462
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
153629
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
153463
153630
|
/** */
|
|
153464
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
153631
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
153465
153632
|
/**
|
|
153466
153633
|
* @deprecated Use `space_id`.*/
|
|
153467
153634
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -154368,6 +154535,8 @@ type Routes = {
|
|
|
154368
154535
|
} | undefined) | undefined;
|
|
154369
154536
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
154370
154537
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
154538
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
154539
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
154371
154540
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
154372
154541
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
154373
154542
|
});
|
|
@@ -154669,6 +154838,9 @@ type Routes = {
|
|
|
154669
154838
|
can_simulate_disconnection?: boolean | undefined;
|
|
154670
154839
|
can_unlock_with_code?: boolean | undefined;
|
|
154671
154840
|
can_run_thermostat_programs?: boolean | undefined;
|
|
154841
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
154842
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
154843
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
154672
154844
|
can_simulate_hub_connection?: boolean | undefined;
|
|
154673
154845
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
154674
154846
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -155569,6 +155741,8 @@ type Routes = {
|
|
|
155569
155741
|
} | undefined) | undefined;
|
|
155570
155742
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
155571
155743
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
155744
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
155745
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
155572
155746
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
155573
155747
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
155574
155748
|
});
|
|
@@ -155870,6 +156044,9 @@ type Routes = {
|
|
|
155870
156044
|
can_simulate_disconnection?: boolean | undefined;
|
|
155871
156045
|
can_unlock_with_code?: boolean | undefined;
|
|
155872
156046
|
can_run_thermostat_programs?: boolean | undefined;
|
|
156047
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
156048
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
156049
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
155873
156050
|
can_simulate_hub_connection?: boolean | undefined;
|
|
155874
156051
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
155875
156052
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -164290,6 +164467,8 @@ type Routes = {
|
|
|
164290
164467
|
} | undefined) | undefined;
|
|
164291
164468
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
164292
164469
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
164470
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
164471
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
164293
164472
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
164294
164473
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
164295
164474
|
});
|
|
@@ -164591,6 +164770,9 @@ type Routes = {
|
|
|
164591
164770
|
can_simulate_disconnection?: boolean | undefined;
|
|
164592
164771
|
can_unlock_with_code?: boolean | undefined;
|
|
164593
164772
|
can_run_thermostat_programs?: boolean | undefined;
|
|
164773
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
164774
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
164775
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
164594
164776
|
can_simulate_hub_connection?: boolean | undefined;
|
|
164595
164777
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
164596
164778
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -169881,6 +170063,8 @@ type Routes = {
|
|
|
169881
170063
|
} | undefined) | undefined;
|
|
169882
170064
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
169883
170065
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
170066
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
170067
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
169884
170068
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
169885
170069
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
169886
170070
|
});
|
|
@@ -170182,6 +170366,9 @@ type Routes = {
|
|
|
170182
170366
|
can_simulate_disconnection?: boolean | undefined;
|
|
170183
170367
|
can_unlock_with_code?: boolean | undefined;
|
|
170184
170368
|
can_run_thermostat_programs?: boolean | undefined;
|
|
170369
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
170370
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
170371
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
170185
170372
|
can_simulate_hub_connection?: boolean | undefined;
|
|
170186
170373
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
170187
170374
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -172755,9 +172942,9 @@ type Routes = {
|
|
|
172755
172942
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
172756
172943
|
page_cursor?: (string | undefined) | null;
|
|
172757
172944
|
/** */
|
|
172758
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
172945
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
172759
172946
|
/** */
|
|
172760
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
172947
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription')[] | undefined;
|
|
172761
172948
|
/**
|
|
172762
172949
|
* @deprecated Use `space_id`.*/
|
|
172763
172950
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -173664,6 +173851,8 @@ type Routes = {
|
|
|
173664
173851
|
} | undefined) | undefined;
|
|
173665
173852
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
173666
173853
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
173854
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
173855
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
173667
173856
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
173668
173857
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
173669
173858
|
});
|
|
@@ -173965,6 +174154,9 @@ type Routes = {
|
|
|
173965
174154
|
can_simulate_disconnection?: boolean | undefined;
|
|
173966
174155
|
can_unlock_with_code?: boolean | undefined;
|
|
173967
174156
|
can_run_thermostat_programs?: boolean | undefined;
|
|
174157
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
174158
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
174159
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
173968
174160
|
can_simulate_hub_connection?: boolean | undefined;
|
|
173969
174161
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
173970
174162
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -174865,6 +175057,8 @@ type Routes = {
|
|
|
174865
175057
|
} | undefined) | undefined;
|
|
174866
175058
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
174867
175059
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
175060
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
175061
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
174868
175062
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
174869
175063
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
174870
175064
|
});
|
|
@@ -175166,6 +175360,9 @@ type Routes = {
|
|
|
175166
175360
|
can_simulate_disconnection?: boolean | undefined;
|
|
175167
175361
|
can_unlock_with_code?: boolean | undefined;
|
|
175168
175362
|
can_run_thermostat_programs?: boolean | undefined;
|
|
175363
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
175364
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
175365
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
175169
175366
|
can_simulate_hub_connection?: boolean | undefined;
|
|
175170
175367
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
175171
175368
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -182009,6 +182206,8 @@ type Routes = {
|
|
|
182009
182206
|
} | undefined) | undefined;
|
|
182010
182207
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
182011
182208
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
182209
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
182210
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
182012
182211
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
182013
182212
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
182014
182213
|
});
|
|
@@ -182310,6 +182509,9 @@ type Routes = {
|
|
|
182310
182509
|
can_simulate_disconnection?: boolean | undefined;
|
|
182311
182510
|
can_unlock_with_code?: boolean | undefined;
|
|
182312
182511
|
can_run_thermostat_programs?: boolean | undefined;
|
|
182512
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
182513
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
182514
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
182313
182515
|
can_simulate_hub_connection?: boolean | undefined;
|
|
182314
182516
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
182315
182517
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -183212,6 +183414,8 @@ type Routes = {
|
|
|
183212
183414
|
} | undefined) | undefined;
|
|
183213
183415
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
183214
183416
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
183417
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
183418
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
183215
183419
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
183216
183420
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
183217
183421
|
});
|
|
@@ -183513,6 +183717,9 @@ type Routes = {
|
|
|
183513
183717
|
can_simulate_disconnection?: boolean | undefined;
|
|
183514
183718
|
can_unlock_with_code?: boolean | undefined;
|
|
183515
183719
|
can_run_thermostat_programs?: boolean | undefined;
|
|
183720
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
183721
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
183722
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
183516
183723
|
can_simulate_hub_connection?: boolean | undefined;
|
|
183517
183724
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
183518
183725
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -185185,6 +185392,8 @@ type Routes = {
|
|
|
185185
185392
|
} | undefined) | undefined;
|
|
185186
185393
|
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
185187
185394
|
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
185395
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
185396
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
|
|
185188
185397
|
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
185189
185398
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
185190
185399
|
});
|
|
@@ -185486,6 +185695,9 @@ type Routes = {
|
|
|
185486
185695
|
can_simulate_disconnection?: boolean | undefined;
|
|
185487
185696
|
can_unlock_with_code?: boolean | undefined;
|
|
185488
185697
|
can_run_thermostat_programs?: boolean | undefined;
|
|
185698
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
185699
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
185700
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
185489
185701
|
can_simulate_hub_connection?: boolean | undefined;
|
|
185490
185702
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
185491
185703
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -188141,6 +188353,9 @@ type Routes = {
|
|
|
188141
188353
|
can_simulate_disconnection?: boolean | undefined;
|
|
188142
188354
|
can_unlock_with_code?: boolean | undefined;
|
|
188143
188355
|
can_run_thermostat_programs?: boolean | undefined;
|
|
188356
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
188357
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
188358
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
188144
188359
|
can_simulate_hub_connection?: boolean | undefined;
|
|
188145
188360
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
188146
188361
|
can_simulate_paid_subscription?: boolean | undefined;
|