@seamapi/types 1.579.0 → 1.581.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +89 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +303 -147
- package/dist/index.cjs +89 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +278 -167
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +15 -15
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +15 -15
- package/lib/seam/connect/models/devices/device-provider.d.ts +9 -0
- package/lib/seam/connect/models/devices/device.d.ts +39 -21
- package/lib/seam/connect/models/devices/device.js +3 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +27 -15
- package/lib/seam/connect/models/events/devices.d.ts +2 -2
- package/lib/seam/connect/models/events/seam-event.d.ts +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/climate-preset.js +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +30 -3
- package/lib/seam/connect/openapi.js +85 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +127 -61
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +85 -4
- package/src/lib/seam/connect/route-types.ts +231 -51
package/dist/connect.d.cts
CHANGED
|
@@ -12086,7 +12086,7 @@ declare const batch: z.ZodObject<{
|
|
|
12086
12086
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
12087
12087
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
12088
12088
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
12089
|
-
|
|
12089
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
12090
12090
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
12091
12091
|
display_name: z.ZodOptional<z.ZodString>;
|
|
12092
12092
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -12114,7 +12114,7 @@ declare const batch: z.ZodObject<{
|
|
|
12114
12114
|
climate_preset_key?: string | undefined;
|
|
12115
12115
|
can_edit?: boolean | undefined;
|
|
12116
12116
|
can_delete?: boolean | undefined;
|
|
12117
|
-
|
|
12117
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12118
12118
|
name?: string | null | undefined;
|
|
12119
12119
|
display_name?: string | undefined;
|
|
12120
12120
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12134,7 +12134,7 @@ declare const batch: z.ZodObject<{
|
|
|
12134
12134
|
climate_preset_key?: string | undefined;
|
|
12135
12135
|
can_edit?: boolean | undefined;
|
|
12136
12136
|
can_delete?: boolean | undefined;
|
|
12137
|
-
|
|
12137
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12138
12138
|
name?: string | null | undefined;
|
|
12139
12139
|
display_name?: string | undefined;
|
|
12140
12140
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12155,7 +12155,7 @@ declare const batch: z.ZodObject<{
|
|
|
12155
12155
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
12156
12156
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
12157
12157
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
12158
|
-
|
|
12158
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
12159
12159
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
12160
12160
|
display_name: z.ZodOptional<z.ZodString>;
|
|
12161
12161
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -12183,7 +12183,7 @@ declare const batch: z.ZodObject<{
|
|
|
12183
12183
|
climate_preset_key?: string | undefined;
|
|
12184
12184
|
can_edit?: boolean | undefined;
|
|
12185
12185
|
can_delete?: boolean | undefined;
|
|
12186
|
-
|
|
12186
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12187
12187
|
name?: string | null | undefined;
|
|
12188
12188
|
display_name?: string | undefined;
|
|
12189
12189
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12203,7 +12203,7 @@ declare const batch: z.ZodObject<{
|
|
|
12203
12203
|
climate_preset_key?: string | undefined;
|
|
12204
12204
|
can_edit?: boolean | undefined;
|
|
12205
12205
|
can_delete?: boolean | undefined;
|
|
12206
|
-
|
|
12206
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12207
12207
|
name?: string | null | undefined;
|
|
12208
12208
|
display_name?: string | undefined;
|
|
12209
12209
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12224,7 +12224,7 @@ declare const batch: z.ZodObject<{
|
|
|
12224
12224
|
climate_preset_key: z.ZodString;
|
|
12225
12225
|
can_edit: z.ZodBoolean;
|
|
12226
12226
|
can_delete: z.ZodBoolean;
|
|
12227
|
-
|
|
12227
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
12228
12228
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
12229
12229
|
display_name: z.ZodString;
|
|
12230
12230
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -12252,7 +12252,7 @@ declare const batch: z.ZodObject<{
|
|
|
12252
12252
|
climate_preset_key: string;
|
|
12253
12253
|
can_edit: boolean;
|
|
12254
12254
|
can_delete: boolean;
|
|
12255
|
-
|
|
12255
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
12256
12256
|
display_name: string;
|
|
12257
12257
|
manual_override_allowed: boolean;
|
|
12258
12258
|
name?: string | null | undefined;
|
|
@@ -12272,7 +12272,7 @@ declare const batch: z.ZodObject<{
|
|
|
12272
12272
|
climate_preset_key: string;
|
|
12273
12273
|
can_edit: boolean;
|
|
12274
12274
|
can_delete: boolean;
|
|
12275
|
-
|
|
12275
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
12276
12276
|
display_name: string;
|
|
12277
12277
|
manual_override_allowed: boolean;
|
|
12278
12278
|
name?: string | null | undefined;
|
|
@@ -12453,7 +12453,7 @@ declare const batch: z.ZodObject<{
|
|
|
12453
12453
|
climate_preset_key?: string | undefined;
|
|
12454
12454
|
can_edit?: boolean | undefined;
|
|
12455
12455
|
can_delete?: boolean | undefined;
|
|
12456
|
-
|
|
12456
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12457
12457
|
name?: string | null | undefined;
|
|
12458
12458
|
display_name?: string | undefined;
|
|
12459
12459
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12474,7 +12474,7 @@ declare const batch: z.ZodObject<{
|
|
|
12474
12474
|
climate_preset_key?: string | undefined;
|
|
12475
12475
|
can_edit?: boolean | undefined;
|
|
12476
12476
|
can_delete?: boolean | undefined;
|
|
12477
|
-
|
|
12477
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12478
12478
|
name?: string | null | undefined;
|
|
12479
12479
|
display_name?: string | undefined;
|
|
12480
12480
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12495,7 +12495,7 @@ declare const batch: z.ZodObject<{
|
|
|
12495
12495
|
climate_preset_key: string;
|
|
12496
12496
|
can_edit: boolean;
|
|
12497
12497
|
can_delete: boolean;
|
|
12498
|
-
|
|
12498
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
12499
12499
|
display_name: string;
|
|
12500
12500
|
manual_override_allowed: boolean;
|
|
12501
12501
|
name?: string | null | undefined;
|
|
@@ -12586,7 +12586,7 @@ declare const batch: z.ZodObject<{
|
|
|
12586
12586
|
climate_preset_key?: string | undefined;
|
|
12587
12587
|
can_edit?: boolean | undefined;
|
|
12588
12588
|
can_delete?: boolean | undefined;
|
|
12589
|
-
|
|
12589
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12590
12590
|
name?: string | null | undefined;
|
|
12591
12591
|
display_name?: string | undefined;
|
|
12592
12592
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12607,7 +12607,7 @@ declare const batch: z.ZodObject<{
|
|
|
12607
12607
|
climate_preset_key?: string | undefined;
|
|
12608
12608
|
can_edit?: boolean | undefined;
|
|
12609
12609
|
can_delete?: boolean | undefined;
|
|
12610
|
-
|
|
12610
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
12611
12611
|
name?: string | null | undefined;
|
|
12612
12612
|
display_name?: string | undefined;
|
|
12613
12613
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -12628,7 +12628,7 @@ declare const batch: z.ZodObject<{
|
|
|
12628
12628
|
climate_preset_key: string;
|
|
12629
12629
|
can_edit: boolean;
|
|
12630
12630
|
can_delete: boolean;
|
|
12631
|
-
|
|
12631
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
12632
12632
|
display_name: string;
|
|
12633
12633
|
manual_override_allowed: boolean;
|
|
12634
12634
|
name?: string | null | undefined;
|
|
@@ -13291,6 +13291,9 @@ declare const batch: z.ZodObject<{
|
|
|
13291
13291
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
13292
13292
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
13293
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>;
|
|
13294
13297
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
13295
13298
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
13296
13299
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13810,7 +13813,7 @@ declare const batch: z.ZodObject<{
|
|
|
13810
13813
|
climate_preset_key?: string | undefined;
|
|
13811
13814
|
can_edit?: boolean | undefined;
|
|
13812
13815
|
can_delete?: boolean | undefined;
|
|
13813
|
-
|
|
13816
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
13814
13817
|
name?: string | null | undefined;
|
|
13815
13818
|
display_name?: string | undefined;
|
|
13816
13819
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -13831,7 +13834,7 @@ declare const batch: z.ZodObject<{
|
|
|
13831
13834
|
climate_preset_key?: string | undefined;
|
|
13832
13835
|
can_edit?: boolean | undefined;
|
|
13833
13836
|
can_delete?: boolean | undefined;
|
|
13834
|
-
|
|
13837
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
13835
13838
|
name?: string | null | undefined;
|
|
13836
13839
|
display_name?: string | undefined;
|
|
13837
13840
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -13852,7 +13855,7 @@ declare const batch: z.ZodObject<{
|
|
|
13852
13855
|
climate_preset_key: string;
|
|
13853
13856
|
can_edit: boolean;
|
|
13854
13857
|
can_delete: boolean;
|
|
13855
|
-
|
|
13858
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
13856
13859
|
display_name: string;
|
|
13857
13860
|
manual_override_allowed: boolean;
|
|
13858
13861
|
name?: string | null | undefined;
|
|
@@ -13946,6 +13949,9 @@ declare const batch: z.ZodObject<{
|
|
|
13946
13949
|
can_simulate_disconnection?: boolean | undefined;
|
|
13947
13950
|
can_unlock_with_code?: boolean | undefined;
|
|
13948
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;
|
|
13949
13955
|
can_simulate_hub_connection?: boolean | undefined;
|
|
13950
13956
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
13951
13957
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -14466,7 +14472,7 @@ declare const batch: z.ZodObject<{
|
|
|
14466
14472
|
climate_preset_key?: string | undefined;
|
|
14467
14473
|
can_edit?: boolean | undefined;
|
|
14468
14474
|
can_delete?: boolean | undefined;
|
|
14469
|
-
|
|
14475
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
14470
14476
|
name?: string | null | undefined;
|
|
14471
14477
|
display_name?: string | undefined;
|
|
14472
14478
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -14487,7 +14493,7 @@ declare const batch: z.ZodObject<{
|
|
|
14487
14493
|
climate_preset_key?: string | undefined;
|
|
14488
14494
|
can_edit?: boolean | undefined;
|
|
14489
14495
|
can_delete?: boolean | undefined;
|
|
14490
|
-
|
|
14496
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
14491
14497
|
name?: string | null | undefined;
|
|
14492
14498
|
display_name?: string | undefined;
|
|
14493
14499
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -14508,7 +14514,7 @@ declare const batch: z.ZodObject<{
|
|
|
14508
14514
|
climate_preset_key: string;
|
|
14509
14515
|
can_edit: boolean;
|
|
14510
14516
|
can_delete: boolean;
|
|
14511
|
-
|
|
14517
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
14512
14518
|
display_name: string;
|
|
14513
14519
|
manual_override_allowed: boolean;
|
|
14514
14520
|
name?: string | null | undefined;
|
|
@@ -14602,6 +14608,9 @@ declare const batch: z.ZodObject<{
|
|
|
14602
14608
|
can_simulate_disconnection?: boolean | undefined;
|
|
14603
14609
|
can_unlock_with_code?: boolean | undefined;
|
|
14604
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;
|
|
14605
14614
|
can_simulate_hub_connection?: boolean | undefined;
|
|
14606
14615
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
14607
14616
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -22686,7 +22695,7 @@ declare const batch: z.ZodObject<{
|
|
|
22686
22695
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
22687
22696
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
22688
22697
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
22689
|
-
|
|
22698
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
22690
22699
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
22691
22700
|
display_name: z.ZodOptional<z.ZodString>;
|
|
22692
22701
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -22714,7 +22723,7 @@ declare const batch: z.ZodObject<{
|
|
|
22714
22723
|
climate_preset_key?: string | undefined;
|
|
22715
22724
|
can_edit?: boolean | undefined;
|
|
22716
22725
|
can_delete?: boolean | undefined;
|
|
22717
|
-
|
|
22726
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22718
22727
|
name?: string | null | undefined;
|
|
22719
22728
|
display_name?: string | undefined;
|
|
22720
22729
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22734,7 +22743,7 @@ declare const batch: z.ZodObject<{
|
|
|
22734
22743
|
climate_preset_key?: string | undefined;
|
|
22735
22744
|
can_edit?: boolean | undefined;
|
|
22736
22745
|
can_delete?: boolean | undefined;
|
|
22737
|
-
|
|
22746
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22738
22747
|
name?: string | null | undefined;
|
|
22739
22748
|
display_name?: string | undefined;
|
|
22740
22749
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22755,7 +22764,7 @@ declare const batch: z.ZodObject<{
|
|
|
22755
22764
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
22756
22765
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
22757
22766
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
22758
|
-
|
|
22767
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
22759
22768
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
22760
22769
|
display_name: z.ZodOptional<z.ZodString>;
|
|
22761
22770
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -22783,7 +22792,7 @@ declare const batch: z.ZodObject<{
|
|
|
22783
22792
|
climate_preset_key?: string | undefined;
|
|
22784
22793
|
can_edit?: boolean | undefined;
|
|
22785
22794
|
can_delete?: boolean | undefined;
|
|
22786
|
-
|
|
22795
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22787
22796
|
name?: string | null | undefined;
|
|
22788
22797
|
display_name?: string | undefined;
|
|
22789
22798
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22803,7 +22812,7 @@ declare const batch: z.ZodObject<{
|
|
|
22803
22812
|
climate_preset_key?: string | undefined;
|
|
22804
22813
|
can_edit?: boolean | undefined;
|
|
22805
22814
|
can_delete?: boolean | undefined;
|
|
22806
|
-
|
|
22815
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
22807
22816
|
name?: string | null | undefined;
|
|
22808
22817
|
display_name?: string | undefined;
|
|
22809
22818
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -22824,7 +22833,7 @@ declare const batch: z.ZodObject<{
|
|
|
22824
22833
|
climate_preset_key: z.ZodString;
|
|
22825
22834
|
can_edit: z.ZodBoolean;
|
|
22826
22835
|
can_delete: z.ZodBoolean;
|
|
22827
|
-
|
|
22836
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
22828
22837
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
22829
22838
|
display_name: z.ZodString;
|
|
22830
22839
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -22852,7 +22861,7 @@ declare const batch: z.ZodObject<{
|
|
|
22852
22861
|
climate_preset_key: string;
|
|
22853
22862
|
can_edit: boolean;
|
|
22854
22863
|
can_delete: boolean;
|
|
22855
|
-
|
|
22864
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22856
22865
|
display_name: string;
|
|
22857
22866
|
manual_override_allowed: boolean;
|
|
22858
22867
|
name?: string | null | undefined;
|
|
@@ -22872,7 +22881,7 @@ declare const batch: z.ZodObject<{
|
|
|
22872
22881
|
climate_preset_key: string;
|
|
22873
22882
|
can_edit: boolean;
|
|
22874
22883
|
can_delete: boolean;
|
|
22875
|
-
|
|
22884
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
22876
22885
|
display_name: string;
|
|
22877
22886
|
manual_override_allowed: boolean;
|
|
22878
22887
|
name?: string | null | undefined;
|
|
@@ -23053,7 +23062,7 @@ declare const batch: z.ZodObject<{
|
|
|
23053
23062
|
climate_preset_key?: string | undefined;
|
|
23054
23063
|
can_edit?: boolean | undefined;
|
|
23055
23064
|
can_delete?: boolean | undefined;
|
|
23056
|
-
|
|
23065
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
23057
23066
|
name?: string | null | undefined;
|
|
23058
23067
|
display_name?: string | undefined;
|
|
23059
23068
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -23074,7 +23083,7 @@ declare const batch: z.ZodObject<{
|
|
|
23074
23083
|
climate_preset_key?: string | undefined;
|
|
23075
23084
|
can_edit?: boolean | undefined;
|
|
23076
23085
|
can_delete?: boolean | undefined;
|
|
23077
|
-
|
|
23086
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
23078
23087
|
name?: string | null | undefined;
|
|
23079
23088
|
display_name?: string | undefined;
|
|
23080
23089
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -23095,7 +23104,7 @@ declare const batch: z.ZodObject<{
|
|
|
23095
23104
|
climate_preset_key: string;
|
|
23096
23105
|
can_edit: boolean;
|
|
23097
23106
|
can_delete: boolean;
|
|
23098
|
-
|
|
23107
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
23099
23108
|
display_name: string;
|
|
23100
23109
|
manual_override_allowed: boolean;
|
|
23101
23110
|
name?: string | null | undefined;
|
|
@@ -23186,7 +23195,7 @@ declare const batch: z.ZodObject<{
|
|
|
23186
23195
|
climate_preset_key?: string | undefined;
|
|
23187
23196
|
can_edit?: boolean | undefined;
|
|
23188
23197
|
can_delete?: boolean | undefined;
|
|
23189
|
-
|
|
23198
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
23190
23199
|
name?: string | null | undefined;
|
|
23191
23200
|
display_name?: string | undefined;
|
|
23192
23201
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -23207,7 +23216,7 @@ declare const batch: z.ZodObject<{
|
|
|
23207
23216
|
climate_preset_key?: string | undefined;
|
|
23208
23217
|
can_edit?: boolean | undefined;
|
|
23209
23218
|
can_delete?: boolean | undefined;
|
|
23210
|
-
|
|
23219
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
23211
23220
|
name?: string | null | undefined;
|
|
23212
23221
|
display_name?: string | undefined;
|
|
23213
23222
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -23228,7 +23237,7 @@ declare const batch: z.ZodObject<{
|
|
|
23228
23237
|
climate_preset_key: string;
|
|
23229
23238
|
can_edit: boolean;
|
|
23230
23239
|
can_delete: boolean;
|
|
23231
|
-
|
|
23240
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
23232
23241
|
display_name: string;
|
|
23233
23242
|
manual_override_allowed: boolean;
|
|
23234
23243
|
name?: string | null | undefined;
|
|
@@ -23891,6 +23900,9 @@ declare const batch: z.ZodObject<{
|
|
|
23891
23900
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23892
23901
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
23893
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>;
|
|
23894
23906
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23895
23907
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23896
23908
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24044,6 +24056,9 @@ declare const batch: z.ZodObject<{
|
|
|
24044
24056
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
24045
24057
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
24046
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>;
|
|
24047
24062
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
24048
24063
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
24049
24064
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24270,6 +24285,9 @@ declare const batch: z.ZodObject<{
|
|
|
24270
24285
|
can_simulate_disconnection?: boolean | undefined;
|
|
24271
24286
|
can_unlock_with_code?: boolean | undefined;
|
|
24272
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;
|
|
24273
24291
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24274
24292
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24275
24293
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -24496,6 +24514,9 @@ declare const batch: z.ZodObject<{
|
|
|
24496
24514
|
can_simulate_disconnection?: boolean | undefined;
|
|
24497
24515
|
can_unlock_with_code?: boolean | undefined;
|
|
24498
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;
|
|
24499
24520
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24500
24521
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24501
24522
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -27419,7 +27440,7 @@ declare const batch: z.ZodObject<{
|
|
|
27419
27440
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
27420
27441
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
27421
27442
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
27422
|
-
|
|
27443
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
27423
27444
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
27424
27445
|
display_name: z.ZodOptional<z.ZodString>;
|
|
27425
27446
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -31505,7 +31526,7 @@ declare const batch: z.ZodObject<{
|
|
|
31505
31526
|
climate_preset_key?: string | undefined;
|
|
31506
31527
|
can_edit?: boolean | undefined;
|
|
31507
31528
|
can_delete?: boolean | undefined;
|
|
31508
|
-
|
|
31529
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
31509
31530
|
name?: string | null | undefined;
|
|
31510
31531
|
display_name?: string | undefined;
|
|
31511
31532
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -31526,7 +31547,7 @@ declare const batch: z.ZodObject<{
|
|
|
31526
31547
|
climate_preset_key?: string | undefined;
|
|
31527
31548
|
can_edit?: boolean | undefined;
|
|
31528
31549
|
can_delete?: boolean | undefined;
|
|
31529
|
-
|
|
31550
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
31530
31551
|
name?: string | null | undefined;
|
|
31531
31552
|
display_name?: string | undefined;
|
|
31532
31553
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -31547,7 +31568,7 @@ declare const batch: z.ZodObject<{
|
|
|
31547
31568
|
climate_preset_key: string;
|
|
31548
31569
|
can_edit: boolean;
|
|
31549
31570
|
can_delete: boolean;
|
|
31550
|
-
|
|
31571
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
31551
31572
|
display_name: string;
|
|
31552
31573
|
manual_override_allowed: boolean;
|
|
31553
31574
|
name?: string | null | undefined;
|
|
@@ -31641,6 +31662,9 @@ declare const batch: z.ZodObject<{
|
|
|
31641
31662
|
can_simulate_disconnection?: boolean | undefined;
|
|
31642
31663
|
can_unlock_with_code?: boolean | undefined;
|
|
31643
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;
|
|
31644
31668
|
can_simulate_hub_connection?: boolean | undefined;
|
|
31645
31669
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
31646
31670
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -33284,6 +33308,9 @@ declare const batch: z.ZodObject<{
|
|
|
33284
33308
|
can_simulate_disconnection?: boolean | undefined;
|
|
33285
33309
|
can_unlock_with_code?: boolean | undefined;
|
|
33286
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;
|
|
33287
33314
|
can_simulate_hub_connection?: boolean | undefined;
|
|
33288
33315
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
33289
33316
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -35406,7 +35433,7 @@ declare const batch: z.ZodObject<{
|
|
|
35406
35433
|
climate_preset_key?: string | undefined;
|
|
35407
35434
|
can_edit?: boolean | undefined;
|
|
35408
35435
|
can_delete?: boolean | undefined;
|
|
35409
|
-
|
|
35436
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
35410
35437
|
name?: string | null | undefined;
|
|
35411
35438
|
display_name?: string | undefined;
|
|
35412
35439
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -35427,7 +35454,7 @@ declare const batch: z.ZodObject<{
|
|
|
35427
35454
|
climate_preset_key?: string | undefined;
|
|
35428
35455
|
can_edit?: boolean | undefined;
|
|
35429
35456
|
can_delete?: boolean | undefined;
|
|
35430
|
-
|
|
35457
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
35431
35458
|
name?: string | null | undefined;
|
|
35432
35459
|
display_name?: string | undefined;
|
|
35433
35460
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -35448,7 +35475,7 @@ declare const batch: z.ZodObject<{
|
|
|
35448
35475
|
climate_preset_key: string;
|
|
35449
35476
|
can_edit: boolean;
|
|
35450
35477
|
can_delete: boolean;
|
|
35451
|
-
|
|
35478
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
35452
35479
|
display_name: string;
|
|
35453
35480
|
manual_override_allowed: boolean;
|
|
35454
35481
|
name?: string | null | undefined;
|
|
@@ -35542,6 +35569,9 @@ declare const batch: z.ZodObject<{
|
|
|
35542
35569
|
can_simulate_disconnection?: boolean | undefined;
|
|
35543
35570
|
can_unlock_with_code?: boolean | undefined;
|
|
35544
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;
|
|
35545
35575
|
can_simulate_hub_connection?: boolean | undefined;
|
|
35546
35576
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
35547
35577
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -37185,6 +37215,9 @@ declare const batch: z.ZodObject<{
|
|
|
37185
37215
|
can_simulate_disconnection?: boolean | undefined;
|
|
37186
37216
|
can_unlock_with_code?: boolean | undefined;
|
|
37187
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;
|
|
37188
37221
|
can_simulate_hub_connection?: boolean | undefined;
|
|
37189
37222
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
37190
37223
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -41705,7 +41738,7 @@ declare const device: z.ZodObject<{
|
|
|
41705
41738
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
41706
41739
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
41707
41740
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
41708
|
-
|
|
41741
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
41709
41742
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
41710
41743
|
display_name: z.ZodOptional<z.ZodString>;
|
|
41711
41744
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -41733,7 +41766,7 @@ declare const device: z.ZodObject<{
|
|
|
41733
41766
|
climate_preset_key?: string | undefined;
|
|
41734
41767
|
can_edit?: boolean | undefined;
|
|
41735
41768
|
can_delete?: boolean | undefined;
|
|
41736
|
-
|
|
41769
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
41737
41770
|
name?: string | null | undefined;
|
|
41738
41771
|
display_name?: string | undefined;
|
|
41739
41772
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -41753,7 +41786,7 @@ declare const device: z.ZodObject<{
|
|
|
41753
41786
|
climate_preset_key?: string | undefined;
|
|
41754
41787
|
can_edit?: boolean | undefined;
|
|
41755
41788
|
can_delete?: boolean | undefined;
|
|
41756
|
-
|
|
41789
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
41757
41790
|
name?: string | null | undefined;
|
|
41758
41791
|
display_name?: string | undefined;
|
|
41759
41792
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -41774,7 +41807,7 @@ declare const device: z.ZodObject<{
|
|
|
41774
41807
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
41775
41808
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
41776
41809
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
41777
|
-
|
|
41810
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
41778
41811
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
41779
41812
|
display_name: z.ZodOptional<z.ZodString>;
|
|
41780
41813
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -41802,7 +41835,7 @@ declare const device: z.ZodObject<{
|
|
|
41802
41835
|
climate_preset_key?: string | undefined;
|
|
41803
41836
|
can_edit?: boolean | undefined;
|
|
41804
41837
|
can_delete?: boolean | undefined;
|
|
41805
|
-
|
|
41838
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
41806
41839
|
name?: string | null | undefined;
|
|
41807
41840
|
display_name?: string | undefined;
|
|
41808
41841
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -41822,7 +41855,7 @@ declare const device: z.ZodObject<{
|
|
|
41822
41855
|
climate_preset_key?: string | undefined;
|
|
41823
41856
|
can_edit?: boolean | undefined;
|
|
41824
41857
|
can_delete?: boolean | undefined;
|
|
41825
|
-
|
|
41858
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
41826
41859
|
name?: string | null | undefined;
|
|
41827
41860
|
display_name?: string | undefined;
|
|
41828
41861
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -41843,7 +41876,7 @@ declare const device: z.ZodObject<{
|
|
|
41843
41876
|
climate_preset_key: z.ZodString;
|
|
41844
41877
|
can_edit: z.ZodBoolean;
|
|
41845
41878
|
can_delete: z.ZodBoolean;
|
|
41846
|
-
|
|
41879
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
41847
41880
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
41848
41881
|
display_name: z.ZodString;
|
|
41849
41882
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -41871,7 +41904,7 @@ declare const device: z.ZodObject<{
|
|
|
41871
41904
|
climate_preset_key: string;
|
|
41872
41905
|
can_edit: boolean;
|
|
41873
41906
|
can_delete: boolean;
|
|
41874
|
-
|
|
41907
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
41875
41908
|
display_name: string;
|
|
41876
41909
|
manual_override_allowed: boolean;
|
|
41877
41910
|
name?: string | null | undefined;
|
|
@@ -41891,7 +41924,7 @@ declare const device: z.ZodObject<{
|
|
|
41891
41924
|
climate_preset_key: string;
|
|
41892
41925
|
can_edit: boolean;
|
|
41893
41926
|
can_delete: boolean;
|
|
41894
|
-
|
|
41927
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
41895
41928
|
display_name: string;
|
|
41896
41929
|
manual_override_allowed: boolean;
|
|
41897
41930
|
name?: string | null | undefined;
|
|
@@ -42072,7 +42105,7 @@ declare const device: z.ZodObject<{
|
|
|
42072
42105
|
climate_preset_key?: string | undefined;
|
|
42073
42106
|
can_edit?: boolean | undefined;
|
|
42074
42107
|
can_delete?: boolean | undefined;
|
|
42075
|
-
|
|
42108
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42076
42109
|
name?: string | null | undefined;
|
|
42077
42110
|
display_name?: string | undefined;
|
|
42078
42111
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -42093,7 +42126,7 @@ declare const device: z.ZodObject<{
|
|
|
42093
42126
|
climate_preset_key?: string | undefined;
|
|
42094
42127
|
can_edit?: boolean | undefined;
|
|
42095
42128
|
can_delete?: boolean | undefined;
|
|
42096
|
-
|
|
42129
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42097
42130
|
name?: string | null | undefined;
|
|
42098
42131
|
display_name?: string | undefined;
|
|
42099
42132
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -42114,7 +42147,7 @@ declare const device: z.ZodObject<{
|
|
|
42114
42147
|
climate_preset_key: string;
|
|
42115
42148
|
can_edit: boolean;
|
|
42116
42149
|
can_delete: boolean;
|
|
42117
|
-
|
|
42150
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
42118
42151
|
display_name: string;
|
|
42119
42152
|
manual_override_allowed: boolean;
|
|
42120
42153
|
name?: string | null | undefined;
|
|
@@ -42205,7 +42238,7 @@ declare const device: z.ZodObject<{
|
|
|
42205
42238
|
climate_preset_key?: string | undefined;
|
|
42206
42239
|
can_edit?: boolean | undefined;
|
|
42207
42240
|
can_delete?: boolean | undefined;
|
|
42208
|
-
|
|
42241
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42209
42242
|
name?: string | null | undefined;
|
|
42210
42243
|
display_name?: string | undefined;
|
|
42211
42244
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -42226,7 +42259,7 @@ declare const device: z.ZodObject<{
|
|
|
42226
42259
|
climate_preset_key?: string | undefined;
|
|
42227
42260
|
can_edit?: boolean | undefined;
|
|
42228
42261
|
can_delete?: boolean | undefined;
|
|
42229
|
-
|
|
42262
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42230
42263
|
name?: string | null | undefined;
|
|
42231
42264
|
display_name?: string | undefined;
|
|
42232
42265
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -42247,7 +42280,7 @@ declare const device: z.ZodObject<{
|
|
|
42247
42280
|
climate_preset_key: string;
|
|
42248
42281
|
can_edit: boolean;
|
|
42249
42282
|
can_delete: boolean;
|
|
42250
|
-
|
|
42283
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
42251
42284
|
display_name: string;
|
|
42252
42285
|
manual_override_allowed: boolean;
|
|
42253
42286
|
name?: string | null | undefined;
|
|
@@ -42910,6 +42943,9 @@ declare const device: z.ZodObject<{
|
|
|
42910
42943
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
42911
42944
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
42912
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>;
|
|
42913
42949
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
42914
42950
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
42915
42951
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -43429,7 +43465,7 @@ declare const device: z.ZodObject<{
|
|
|
43429
43465
|
climate_preset_key?: string | undefined;
|
|
43430
43466
|
can_edit?: boolean | undefined;
|
|
43431
43467
|
can_delete?: boolean | undefined;
|
|
43432
|
-
|
|
43468
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
43433
43469
|
name?: string | null | undefined;
|
|
43434
43470
|
display_name?: string | undefined;
|
|
43435
43471
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -43450,7 +43486,7 @@ declare const device: z.ZodObject<{
|
|
|
43450
43486
|
climate_preset_key?: string | undefined;
|
|
43451
43487
|
can_edit?: boolean | undefined;
|
|
43452
43488
|
can_delete?: boolean | undefined;
|
|
43453
|
-
|
|
43489
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
43454
43490
|
name?: string | null | undefined;
|
|
43455
43491
|
display_name?: string | undefined;
|
|
43456
43492
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -43471,7 +43507,7 @@ declare const device: z.ZodObject<{
|
|
|
43471
43507
|
climate_preset_key: string;
|
|
43472
43508
|
can_edit: boolean;
|
|
43473
43509
|
can_delete: boolean;
|
|
43474
|
-
|
|
43510
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
43475
43511
|
display_name: string;
|
|
43476
43512
|
manual_override_allowed: boolean;
|
|
43477
43513
|
name?: string | null | undefined;
|
|
@@ -43565,6 +43601,9 @@ declare const device: z.ZodObject<{
|
|
|
43565
43601
|
can_simulate_disconnection?: boolean | undefined;
|
|
43566
43602
|
can_unlock_with_code?: boolean | undefined;
|
|
43567
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;
|
|
43568
43607
|
can_simulate_hub_connection?: boolean | undefined;
|
|
43569
43608
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43570
43609
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -44085,7 +44124,7 @@ declare const device: z.ZodObject<{
|
|
|
44085
44124
|
climate_preset_key?: string | undefined;
|
|
44086
44125
|
can_edit?: boolean | undefined;
|
|
44087
44126
|
can_delete?: boolean | undefined;
|
|
44088
|
-
|
|
44127
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
44089
44128
|
name?: string | null | undefined;
|
|
44090
44129
|
display_name?: string | undefined;
|
|
44091
44130
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -44106,7 +44145,7 @@ declare const device: z.ZodObject<{
|
|
|
44106
44145
|
climate_preset_key?: string | undefined;
|
|
44107
44146
|
can_edit?: boolean | undefined;
|
|
44108
44147
|
can_delete?: boolean | undefined;
|
|
44109
|
-
|
|
44148
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
44110
44149
|
name?: string | null | undefined;
|
|
44111
44150
|
display_name?: string | undefined;
|
|
44112
44151
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -44127,7 +44166,7 @@ declare const device: z.ZodObject<{
|
|
|
44127
44166
|
climate_preset_key: string;
|
|
44128
44167
|
can_edit: boolean;
|
|
44129
44168
|
can_delete: boolean;
|
|
44130
|
-
|
|
44169
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
44131
44170
|
display_name: string;
|
|
44132
44171
|
manual_override_allowed: boolean;
|
|
44133
44172
|
name?: string | null | undefined;
|
|
@@ -44221,6 +44260,9 @@ declare const device: z.ZodObject<{
|
|
|
44221
44260
|
can_simulate_disconnection?: boolean | undefined;
|
|
44222
44261
|
can_unlock_with_code?: boolean | undefined;
|
|
44223
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;
|
|
44224
44266
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44225
44267
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44226
44268
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -44299,6 +44341,9 @@ declare const device_provider: z.ZodObject<{
|
|
|
44299
44341
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
44300
44342
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
44301
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>;
|
|
44302
44347
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
44303
44348
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
44304
44349
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44320,6 +44365,9 @@ declare const device_provider: z.ZodObject<{
|
|
|
44320
44365
|
can_simulate_disconnection?: boolean | undefined;
|
|
44321
44366
|
can_unlock_with_code?: boolean | undefined;
|
|
44322
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;
|
|
44323
44371
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44324
44372
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44325
44373
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -44341,6 +44389,9 @@ declare const device_provider: z.ZodObject<{
|
|
|
44341
44389
|
can_simulate_disconnection?: boolean | undefined;
|
|
44342
44390
|
can_unlock_with_code?: boolean | undefined;
|
|
44343
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;
|
|
44344
44395
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44345
44396
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44346
44397
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -45973,7 +46024,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
45973
46024
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
45974
46025
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
45975
46026
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
45976
|
-
|
|
46027
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
45977
46028
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
45978
46029
|
display_name: z.ZodOptional<z.ZodString>;
|
|
45979
46030
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -46001,7 +46052,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46001
46052
|
climate_preset_key?: string | undefined;
|
|
46002
46053
|
can_edit?: boolean | undefined;
|
|
46003
46054
|
can_delete?: boolean | undefined;
|
|
46004
|
-
|
|
46055
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46005
46056
|
name?: string | null | undefined;
|
|
46006
46057
|
display_name?: string | undefined;
|
|
46007
46058
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46021,7 +46072,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46021
46072
|
climate_preset_key?: string | undefined;
|
|
46022
46073
|
can_edit?: boolean | undefined;
|
|
46023
46074
|
can_delete?: boolean | undefined;
|
|
46024
|
-
|
|
46075
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46025
46076
|
name?: string | null | undefined;
|
|
46026
46077
|
display_name?: string | undefined;
|
|
46027
46078
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46042,7 +46093,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46042
46093
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
46043
46094
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
46044
46095
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
46045
|
-
|
|
46096
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
46046
46097
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
46047
46098
|
display_name: z.ZodOptional<z.ZodString>;
|
|
46048
46099
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -46070,7 +46121,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46070
46121
|
climate_preset_key?: string | undefined;
|
|
46071
46122
|
can_edit?: boolean | undefined;
|
|
46072
46123
|
can_delete?: boolean | undefined;
|
|
46073
|
-
|
|
46124
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46074
46125
|
name?: string | null | undefined;
|
|
46075
46126
|
display_name?: string | undefined;
|
|
46076
46127
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46090,7 +46141,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46090
46141
|
climate_preset_key?: string | undefined;
|
|
46091
46142
|
can_edit?: boolean | undefined;
|
|
46092
46143
|
can_delete?: boolean | undefined;
|
|
46093
|
-
|
|
46144
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46094
46145
|
name?: string | null | undefined;
|
|
46095
46146
|
display_name?: string | undefined;
|
|
46096
46147
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46111,7 +46162,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46111
46162
|
climate_preset_key: z.ZodString;
|
|
46112
46163
|
can_edit: z.ZodBoolean;
|
|
46113
46164
|
can_delete: z.ZodBoolean;
|
|
46114
|
-
|
|
46165
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
46115
46166
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
46116
46167
|
display_name: z.ZodString;
|
|
46117
46168
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -46139,7 +46190,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46139
46190
|
climate_preset_key: string;
|
|
46140
46191
|
can_edit: boolean;
|
|
46141
46192
|
can_delete: boolean;
|
|
46142
|
-
|
|
46193
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
46143
46194
|
display_name: string;
|
|
46144
46195
|
manual_override_allowed: boolean;
|
|
46145
46196
|
name?: string | null | undefined;
|
|
@@ -46159,7 +46210,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46159
46210
|
climate_preset_key: string;
|
|
46160
46211
|
can_edit: boolean;
|
|
46161
46212
|
can_delete: boolean;
|
|
46162
|
-
|
|
46213
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
46163
46214
|
display_name: string;
|
|
46164
46215
|
manual_override_allowed: boolean;
|
|
46165
46216
|
name?: string | null | undefined;
|
|
@@ -46340,7 +46391,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46340
46391
|
climate_preset_key?: string | undefined;
|
|
46341
46392
|
can_edit?: boolean | undefined;
|
|
46342
46393
|
can_delete?: boolean | undefined;
|
|
46343
|
-
|
|
46394
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46344
46395
|
name?: string | null | undefined;
|
|
46345
46396
|
display_name?: string | undefined;
|
|
46346
46397
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46361,7 +46412,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46361
46412
|
climate_preset_key?: string | undefined;
|
|
46362
46413
|
can_edit?: boolean | undefined;
|
|
46363
46414
|
can_delete?: boolean | undefined;
|
|
46364
|
-
|
|
46415
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46365
46416
|
name?: string | null | undefined;
|
|
46366
46417
|
display_name?: string | undefined;
|
|
46367
46418
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46382,7 +46433,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46382
46433
|
climate_preset_key: string;
|
|
46383
46434
|
can_edit: boolean;
|
|
46384
46435
|
can_delete: boolean;
|
|
46385
|
-
|
|
46436
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
46386
46437
|
display_name: string;
|
|
46387
46438
|
manual_override_allowed: boolean;
|
|
46388
46439
|
name?: string | null | undefined;
|
|
@@ -46473,7 +46524,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46473
46524
|
climate_preset_key?: string | undefined;
|
|
46474
46525
|
can_edit?: boolean | undefined;
|
|
46475
46526
|
can_delete?: boolean | undefined;
|
|
46476
|
-
|
|
46527
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46477
46528
|
name?: string | null | undefined;
|
|
46478
46529
|
display_name?: string | undefined;
|
|
46479
46530
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46494,7 +46545,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46494
46545
|
climate_preset_key?: string | undefined;
|
|
46495
46546
|
can_edit?: boolean | undefined;
|
|
46496
46547
|
can_delete?: boolean | undefined;
|
|
46497
|
-
|
|
46548
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
46498
46549
|
name?: string | null | undefined;
|
|
46499
46550
|
display_name?: string | undefined;
|
|
46500
46551
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -46515,7 +46566,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46515
46566
|
climate_preset_key: string;
|
|
46516
46567
|
can_edit: boolean;
|
|
46517
46568
|
can_delete: boolean;
|
|
46518
|
-
|
|
46569
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
46519
46570
|
display_name: string;
|
|
46520
46571
|
manual_override_allowed: boolean;
|
|
46521
46572
|
name?: string | null | undefined;
|
|
@@ -47178,6 +47229,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47178
47229
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
47179
47230
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
47180
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>;
|
|
47181
47235
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
47182
47236
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
47183
47237
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -47331,6 +47385,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47331
47385
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
47332
47386
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
47333
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>;
|
|
47334
47391
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
47335
47392
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
47336
47393
|
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -47557,6 +47614,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47557
47614
|
can_simulate_disconnection?: boolean | undefined;
|
|
47558
47615
|
can_unlock_with_code?: boolean | undefined;
|
|
47559
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;
|
|
47560
47620
|
can_simulate_hub_connection?: boolean | undefined;
|
|
47561
47621
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47562
47622
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -47783,6 +47843,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47783
47843
|
can_simulate_disconnection?: boolean | undefined;
|
|
47784
47844
|
can_unlock_with_code?: boolean | undefined;
|
|
47785
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;
|
|
47786
47849
|
can_simulate_hub_connection?: boolean | undefined;
|
|
47787
47850
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47788
47851
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -50471,7 +50534,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
50471
50534
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
50472
50535
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
50473
50536
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
50474
|
-
|
|
50537
|
+
can_use_with_thermostat_daily_programs: z.ZodOptional<z.ZodBoolean>;
|
|
50475
50538
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
50476
50539
|
display_name: z.ZodOptional<z.ZodString>;
|
|
50477
50540
|
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
@@ -50954,7 +51017,7 @@ declare const climate_preset: z.ZodObject<{
|
|
|
50954
51017
|
climate_preset_key: z.ZodString;
|
|
50955
51018
|
can_edit: z.ZodBoolean;
|
|
50956
51019
|
can_delete: z.ZodBoolean;
|
|
50957
|
-
|
|
51020
|
+
can_use_with_thermostat_daily_programs: z.ZodBoolean;
|
|
50958
51021
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
50959
51022
|
display_name: z.ZodString;
|
|
50960
51023
|
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
@@ -50982,7 +51045,7 @@ declare const climate_preset: z.ZodObject<{
|
|
|
50982
51045
|
climate_preset_key: string;
|
|
50983
51046
|
can_edit: boolean;
|
|
50984
51047
|
can_delete: boolean;
|
|
50985
|
-
|
|
51048
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
50986
51049
|
display_name: string;
|
|
50987
51050
|
manual_override_allowed: boolean;
|
|
50988
51051
|
name?: string | null | undefined;
|
|
@@ -51002,7 +51065,7 @@ declare const climate_preset: z.ZodObject<{
|
|
|
51002
51065
|
climate_preset_key: string;
|
|
51003
51066
|
can_edit: boolean;
|
|
51004
51067
|
can_delete: boolean;
|
|
51005
|
-
|
|
51068
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51006
51069
|
display_name: string;
|
|
51007
51070
|
manual_override_allowed: boolean;
|
|
51008
51071
|
name?: string | null | undefined;
|
|
@@ -55803,6 +55866,15 @@ declare const _default: {
|
|
|
55803
55866
|
can_program_online_access_codes: {
|
|
55804
55867
|
type: string;
|
|
55805
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
|
+
};
|
|
55806
55878
|
can_remotely_lock: {
|
|
55807
55879
|
type: string;
|
|
55808
55880
|
};
|
|
@@ -57641,7 +57713,7 @@ declare const _default: {
|
|
|
57641
57713
|
description: string;
|
|
57642
57714
|
type: string;
|
|
57643
57715
|
};
|
|
57644
|
-
|
|
57716
|
+
can_use_with_thermostat_daily_programs: {
|
|
57645
57717
|
description: string;
|
|
57646
57718
|
type: string;
|
|
57647
57719
|
};
|
|
@@ -57756,7 +57828,7 @@ declare const _default: {
|
|
|
57756
57828
|
description: string;
|
|
57757
57829
|
type: string;
|
|
57758
57830
|
};
|
|
57759
|
-
|
|
57831
|
+
can_use_with_thermostat_daily_programs: {
|
|
57760
57832
|
description: string;
|
|
57761
57833
|
type: string;
|
|
57762
57834
|
};
|
|
@@ -57850,7 +57922,7 @@ declare const _default: {
|
|
|
57850
57922
|
description: string;
|
|
57851
57923
|
type: string;
|
|
57852
57924
|
};
|
|
57853
|
-
|
|
57925
|
+
can_use_with_thermostat_daily_programs: {
|
|
57854
57926
|
description: string;
|
|
57855
57927
|
type: string;
|
|
57856
57928
|
};
|
|
@@ -58383,6 +58455,15 @@ declare const _default: {
|
|
|
58383
58455
|
can_program_online_access_codes: {
|
|
58384
58456
|
type: string;
|
|
58385
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
|
+
};
|
|
58386
58467
|
can_remotely_lock: {
|
|
58387
58468
|
type: string;
|
|
58388
58469
|
};
|
|
@@ -64846,6 +64927,15 @@ declare const _default: {
|
|
|
64846
64927
|
can_program_online_access_codes: {
|
|
64847
64928
|
type: string;
|
|
64848
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
|
+
};
|
|
64849
64939
|
can_remotely_lock: {
|
|
64850
64940
|
type: string;
|
|
64851
64941
|
};
|
|
@@ -115123,7 +115213,7 @@ type Routes = {
|
|
|
115123
115213
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
115124
115214
|
can_delete?: boolean | undefined;
|
|
115125
115215
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
115126
|
-
|
|
115216
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
115127
115217
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
115128
115218
|
name?: ((string | null) | undefined) | undefined;
|
|
115129
115219
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -115169,7 +115259,7 @@ type Routes = {
|
|
|
115169
115259
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
115170
115260
|
can_delete?: boolean | undefined;
|
|
115171
115261
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
115172
|
-
|
|
115262
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
115173
115263
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
115174
115264
|
name?: ((string | null) | undefined) | undefined;
|
|
115175
115265
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -115214,7 +115304,7 @@ type Routes = {
|
|
|
115214
115304
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
115215
115305
|
can_delete: boolean;
|
|
115216
115306
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
115217
|
-
|
|
115307
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
115218
115308
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
115219
115309
|
name?: (string | null) | undefined;
|
|
115220
115310
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -115664,6 +115754,9 @@ type Routes = {
|
|
|
115664
115754
|
can_simulate_disconnection?: boolean | undefined;
|
|
115665
115755
|
can_unlock_with_code?: boolean | undefined;
|
|
115666
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;
|
|
115667
115760
|
can_simulate_hub_connection?: boolean | undefined;
|
|
115668
115761
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
115669
115762
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -118306,7 +118399,7 @@ type Routes = {
|
|
|
118306
118399
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
118307
118400
|
can_delete?: boolean | undefined;
|
|
118308
118401
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
118309
|
-
|
|
118402
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
118310
118403
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
118311
118404
|
name?: ((string | null) | undefined) | undefined;
|
|
118312
118405
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -118352,7 +118445,7 @@ type Routes = {
|
|
|
118352
118445
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
118353
118446
|
can_delete?: boolean | undefined;
|
|
118354
118447
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
118355
|
-
|
|
118448
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
118356
118449
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
118357
118450
|
name?: ((string | null) | undefined) | undefined;
|
|
118358
118451
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -118397,7 +118490,7 @@ type Routes = {
|
|
|
118397
118490
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
118398
118491
|
can_delete: boolean;
|
|
118399
118492
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
118400
|
-
|
|
118493
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
118401
118494
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
118402
118495
|
name?: (string | null) | undefined;
|
|
118403
118496
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -118847,6 +118940,9 @@ type Routes = {
|
|
|
118847
118940
|
can_simulate_disconnection?: boolean | undefined;
|
|
118848
118941
|
can_unlock_with_code?: boolean | undefined;
|
|
118849
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;
|
|
118850
118946
|
can_simulate_hub_connection?: boolean | undefined;
|
|
118851
118947
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
118852
118948
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -121502,6 +121598,9 @@ type Routes = {
|
|
|
121502
121598
|
can_simulate_disconnection?: boolean | undefined;
|
|
121503
121599
|
can_unlock_with_code?: boolean | undefined;
|
|
121504
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;
|
|
121505
121604
|
can_simulate_hub_connection?: boolean | undefined;
|
|
121506
121605
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
121507
121606
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -136802,7 +136901,7 @@ type Routes = {
|
|
|
136802
136901
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
136803
136902
|
can_delete?: boolean | undefined;
|
|
136804
136903
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
136805
|
-
|
|
136904
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
136806
136905
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
136807
136906
|
name?: ((string | null) | undefined) | undefined;
|
|
136808
136907
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -136848,7 +136947,7 @@ type Routes = {
|
|
|
136848
136947
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
136849
136948
|
can_delete?: boolean | undefined;
|
|
136850
136949
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
136851
|
-
|
|
136950
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
136852
136951
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
136853
136952
|
name?: ((string | null) | undefined) | undefined;
|
|
136854
136953
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -136893,7 +136992,7 @@ type Routes = {
|
|
|
136893
136992
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
136894
136993
|
can_delete: boolean;
|
|
136895
136994
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
136896
|
-
|
|
136995
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
136897
136996
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
136898
136997
|
name?: (string | null) | undefined;
|
|
136899
136998
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -137343,6 +137442,9 @@ type Routes = {
|
|
|
137343
137442
|
can_simulate_disconnection?: boolean | undefined;
|
|
137344
137443
|
can_unlock_with_code?: boolean | undefined;
|
|
137345
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;
|
|
137346
137448
|
can_simulate_hub_connection?: boolean | undefined;
|
|
137347
137449
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
137348
137450
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -137384,9 +137486,9 @@ type Routes = {
|
|
|
137384
137486
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
137385
137487
|
page_cursor?: (string | undefined) | null;
|
|
137386
137488
|
/** */
|
|
137387
|
-
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;
|
|
137388
137490
|
/** */
|
|
137389
|
-
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;
|
|
137390
137492
|
/**
|
|
137391
137493
|
* @deprecated Use `space_id`.*/
|
|
137392
137494
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -138055,7 +138157,7 @@ type Routes = {
|
|
|
138055
138157
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
138056
138158
|
can_delete?: boolean | undefined;
|
|
138057
138159
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
138058
|
-
|
|
138160
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
138059
138161
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
138060
138162
|
name?: ((string | null) | undefined) | undefined;
|
|
138061
138163
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -138101,7 +138203,7 @@ type Routes = {
|
|
|
138101
138203
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
138102
138204
|
can_delete?: boolean | undefined;
|
|
138103
138205
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
138104
|
-
|
|
138206
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
138105
138207
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
138106
138208
|
name?: ((string | null) | undefined) | undefined;
|
|
138107
138209
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -138146,7 +138248,7 @@ type Routes = {
|
|
|
138146
138248
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
138147
138249
|
can_delete: boolean;
|
|
138148
138250
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
138149
|
-
|
|
138251
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
138150
138252
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
138151
138253
|
name?: (string | null) | undefined;
|
|
138152
138254
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -138596,6 +138698,9 @@ type Routes = {
|
|
|
138596
138698
|
can_simulate_disconnection?: boolean | undefined;
|
|
138597
138699
|
can_unlock_with_code?: boolean | undefined;
|
|
138598
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;
|
|
138599
138704
|
can_simulate_hub_connection?: boolean | undefined;
|
|
138600
138705
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
138601
138706
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -138640,6 +138745,9 @@ type Routes = {
|
|
|
138640
138745
|
can_simulate_disconnection?: boolean | undefined;
|
|
138641
138746
|
can_unlock_with_code?: boolean | undefined;
|
|
138642
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;
|
|
138643
138751
|
can_simulate_hub_connection?: boolean | undefined;
|
|
138644
138752
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
138645
138753
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -139108,6 +139216,9 @@ type Routes = {
|
|
|
139108
139216
|
can_simulate_disconnection?: boolean | undefined;
|
|
139109
139217
|
can_unlock_with_code?: boolean | undefined;
|
|
139110
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;
|
|
139111
139222
|
can_simulate_hub_connection?: boolean | undefined;
|
|
139112
139223
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
139113
139224
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -139147,9 +139258,9 @@ type Routes = {
|
|
|
139147
139258
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
139148
139259
|
page_cursor?: (string | undefined) | null;
|
|
139149
139260
|
/** */
|
|
139150
|
-
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;
|
|
139151
139262
|
/** */
|
|
139152
|
-
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;
|
|
139153
139264
|
/**
|
|
139154
139265
|
* @deprecated Use `space_id`.*/
|
|
139155
139266
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -139538,6 +139649,9 @@ type Routes = {
|
|
|
139538
139649
|
can_simulate_disconnection?: boolean | undefined;
|
|
139539
139650
|
can_unlock_with_code?: boolean | undefined;
|
|
139540
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;
|
|
139541
139655
|
can_simulate_hub_connection?: boolean | undefined;
|
|
139542
139656
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
139543
139657
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -144220,7 +144334,7 @@ type Routes = {
|
|
|
144220
144334
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
144221
144335
|
can_delete?: boolean | undefined;
|
|
144222
144336
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
144223
|
-
|
|
144337
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
144224
144338
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
144225
144339
|
name?: ((string | null) | undefined) | undefined;
|
|
144226
144340
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -144266,7 +144380,7 @@ type Routes = {
|
|
|
144266
144380
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
144267
144381
|
can_delete?: boolean | undefined;
|
|
144268
144382
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
144269
|
-
|
|
144383
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
144270
144384
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
144271
144385
|
name?: ((string | null) | undefined) | undefined;
|
|
144272
144386
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -144311,7 +144425,7 @@ type Routes = {
|
|
|
144311
144425
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
144312
144426
|
can_delete: boolean;
|
|
144313
144427
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
144314
|
-
|
|
144428
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
144315
144429
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
144316
144430
|
name?: (string | null) | undefined;
|
|
144317
144431
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -144761,6 +144875,9 @@ type Routes = {
|
|
|
144761
144875
|
can_simulate_disconnection?: boolean | undefined;
|
|
144762
144876
|
can_unlock_with_code?: boolean | undefined;
|
|
144763
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;
|
|
144764
144881
|
can_simulate_hub_connection?: boolean | undefined;
|
|
144765
144882
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
144766
144883
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -145424,7 +145541,7 @@ type Routes = {
|
|
|
145424
145541
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
145425
145542
|
can_delete?: boolean | undefined;
|
|
145426
145543
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
145427
|
-
|
|
145544
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
145428
145545
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
145429
145546
|
name?: ((string | null) | undefined) | undefined;
|
|
145430
145547
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -145470,7 +145587,7 @@ type Routes = {
|
|
|
145470
145587
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
145471
145588
|
can_delete?: boolean | undefined;
|
|
145472
145589
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
145473
|
-
|
|
145590
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
145474
145591
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
145475
145592
|
name?: ((string | null) | undefined) | undefined;
|
|
145476
145593
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -145515,7 +145632,7 @@ type Routes = {
|
|
|
145515
145632
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
145516
145633
|
can_delete: boolean;
|
|
145517
145634
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
145518
|
-
|
|
145635
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
145519
145636
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
145520
145637
|
name?: (string | null) | undefined;
|
|
145521
145638
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -145965,6 +146082,9 @@ type Routes = {
|
|
|
145965
146082
|
can_simulate_disconnection?: boolean | undefined;
|
|
145966
146083
|
can_unlock_with_code?: boolean | undefined;
|
|
145967
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;
|
|
145968
146088
|
can_simulate_hub_connection?: boolean | undefined;
|
|
145969
146089
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
145970
146090
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -146006,9 +146126,9 @@ type Routes = {
|
|
|
146006
146126
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
146007
146127
|
page_cursor?: (string | undefined) | null;
|
|
146008
146128
|
/** */
|
|
146009
|
-
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;
|
|
146010
146130
|
/** */
|
|
146011
|
-
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;
|
|
146012
146132
|
/**
|
|
146013
146133
|
* @deprecated Use `space_id`.*/
|
|
146014
146134
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -146677,7 +146797,7 @@ type Routes = {
|
|
|
146677
146797
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
146678
146798
|
can_delete?: boolean | undefined;
|
|
146679
146799
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
146680
|
-
|
|
146800
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
146681
146801
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
146682
146802
|
name?: ((string | null) | undefined) | undefined;
|
|
146683
146803
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -146723,7 +146843,7 @@ type Routes = {
|
|
|
146723
146843
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
146724
146844
|
can_delete?: boolean | undefined;
|
|
146725
146845
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
146726
|
-
|
|
146846
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
146727
146847
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
146728
146848
|
name?: ((string | null) | undefined) | undefined;
|
|
146729
146849
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -146768,7 +146888,7 @@ type Routes = {
|
|
|
146768
146888
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
146769
146889
|
can_delete: boolean;
|
|
146770
146890
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
146771
|
-
|
|
146891
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
146772
146892
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
146773
146893
|
name?: (string | null) | undefined;
|
|
146774
146894
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -147218,6 +147338,9 @@ type Routes = {
|
|
|
147218
147338
|
can_simulate_disconnection?: boolean | undefined;
|
|
147219
147339
|
can_unlock_with_code?: boolean | undefined;
|
|
147220
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;
|
|
147221
147344
|
can_simulate_hub_connection?: boolean | undefined;
|
|
147222
147345
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
147223
147346
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -147880,7 +148003,7 @@ type Routes = {
|
|
|
147880
148003
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
147881
148004
|
can_delete?: boolean | undefined;
|
|
147882
148005
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
147883
|
-
|
|
148006
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
147884
148007
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
147885
148008
|
name?: ((string | null) | undefined) | undefined;
|
|
147886
148009
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -147926,7 +148049,7 @@ type Routes = {
|
|
|
147926
148049
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
147927
148050
|
can_delete?: boolean | undefined;
|
|
147928
148051
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
147929
|
-
|
|
148052
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
147930
148053
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
147931
148054
|
name?: ((string | null) | undefined) | undefined;
|
|
147932
148055
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -147971,7 +148094,7 @@ type Routes = {
|
|
|
147971
148094
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
147972
148095
|
can_delete: boolean;
|
|
147973
148096
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
147974
|
-
|
|
148097
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
147975
148098
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
147976
148099
|
name?: (string | null) | undefined;
|
|
147977
148100
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -148421,6 +148544,9 @@ type Routes = {
|
|
|
148421
148544
|
can_simulate_disconnection?: boolean | undefined;
|
|
148422
148545
|
can_unlock_with_code?: boolean | undefined;
|
|
148423
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;
|
|
148424
148550
|
can_simulate_hub_connection?: boolean | undefined;
|
|
148425
148551
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
148426
148552
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -153500,9 +153626,9 @@ type Routes = {
|
|
|
153500
153626
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
153501
153627
|
page_cursor?: (string | undefined) | null;
|
|
153502
153628
|
/** */
|
|
153503
|
-
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;
|
|
153504
153630
|
/** */
|
|
153505
|
-
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;
|
|
153506
153632
|
/**
|
|
153507
153633
|
* @deprecated Use `space_id`.*/
|
|
153508
153634
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -154171,7 +154297,7 @@ type Routes = {
|
|
|
154171
154297
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
154172
154298
|
can_delete?: boolean | undefined;
|
|
154173
154299
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
154174
|
-
|
|
154300
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
154175
154301
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
154176
154302
|
name?: ((string | null) | undefined) | undefined;
|
|
154177
154303
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -154217,7 +154343,7 @@ type Routes = {
|
|
|
154217
154343
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
154218
154344
|
can_delete?: boolean | undefined;
|
|
154219
154345
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
154220
|
-
|
|
154346
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
154221
154347
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
154222
154348
|
name?: ((string | null) | undefined) | undefined;
|
|
154223
154349
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -154262,7 +154388,7 @@ type Routes = {
|
|
|
154262
154388
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
154263
154389
|
can_delete: boolean;
|
|
154264
154390
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
154265
|
-
|
|
154391
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
154266
154392
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
154267
154393
|
name?: (string | null) | undefined;
|
|
154268
154394
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -154712,6 +154838,9 @@ type Routes = {
|
|
|
154712
154838
|
can_simulate_disconnection?: boolean | undefined;
|
|
154713
154839
|
can_unlock_with_code?: boolean | undefined;
|
|
154714
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;
|
|
154715
154844
|
can_simulate_hub_connection?: boolean | undefined;
|
|
154716
154845
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
154717
154846
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -155374,7 +155503,7 @@ type Routes = {
|
|
|
155374
155503
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
155375
155504
|
can_delete?: boolean | undefined;
|
|
155376
155505
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
155377
|
-
|
|
155506
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
155378
155507
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
155379
155508
|
name?: ((string | null) | undefined) | undefined;
|
|
155380
155509
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -155420,7 +155549,7 @@ type Routes = {
|
|
|
155420
155549
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
155421
155550
|
can_delete?: boolean | undefined;
|
|
155422
155551
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
155423
|
-
|
|
155552
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
155424
155553
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
155425
155554
|
name?: ((string | null) | undefined) | undefined;
|
|
155426
155555
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -155465,7 +155594,7 @@ type Routes = {
|
|
|
155465
155594
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
155466
155595
|
can_delete: boolean;
|
|
155467
155596
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
155468
|
-
|
|
155597
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
155469
155598
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
155470
155599
|
name?: (string | null) | undefined;
|
|
155471
155600
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -155915,6 +156044,9 @@ type Routes = {
|
|
|
155915
156044
|
can_simulate_disconnection?: boolean | undefined;
|
|
155916
156045
|
can_unlock_with_code?: boolean | undefined;
|
|
155917
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;
|
|
155918
156050
|
can_simulate_hub_connection?: boolean | undefined;
|
|
155919
156051
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
155920
156052
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -164097,7 +164229,7 @@ type Routes = {
|
|
|
164097
164229
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
164098
164230
|
can_delete?: boolean | undefined;
|
|
164099
164231
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
164100
|
-
|
|
164232
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
164101
164233
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
164102
164234
|
name?: ((string | null) | undefined) | undefined;
|
|
164103
164235
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -164143,7 +164275,7 @@ type Routes = {
|
|
|
164143
164275
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
164144
164276
|
can_delete?: boolean | undefined;
|
|
164145
164277
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
164146
|
-
|
|
164278
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
164147
164279
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
164148
164280
|
name?: ((string | null) | undefined) | undefined;
|
|
164149
164281
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -164188,7 +164320,7 @@ type Routes = {
|
|
|
164188
164320
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
164189
164321
|
can_delete: boolean;
|
|
164190
164322
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
164191
|
-
|
|
164323
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
164192
164324
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
164193
164325
|
name?: (string | null) | undefined;
|
|
164194
164326
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -164638,6 +164770,9 @@ type Routes = {
|
|
|
164638
164770
|
can_simulate_disconnection?: boolean | undefined;
|
|
164639
164771
|
can_unlock_with_code?: boolean | undefined;
|
|
164640
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;
|
|
164641
164776
|
can_simulate_hub_connection?: boolean | undefined;
|
|
164642
164777
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
164643
164778
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -169690,7 +169825,7 @@ type Routes = {
|
|
|
169690
169825
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
169691
169826
|
can_delete?: boolean | undefined;
|
|
169692
169827
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
169693
|
-
|
|
169828
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
169694
169829
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
169695
169830
|
name?: ((string | null) | undefined) | undefined;
|
|
169696
169831
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -169736,7 +169871,7 @@ type Routes = {
|
|
|
169736
169871
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
169737
169872
|
can_delete?: boolean | undefined;
|
|
169738
169873
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
169739
|
-
|
|
169874
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
169740
169875
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
169741
169876
|
name?: ((string | null) | undefined) | undefined;
|
|
169742
169877
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -169781,7 +169916,7 @@ type Routes = {
|
|
|
169781
169916
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
169782
169917
|
can_delete: boolean;
|
|
169783
169918
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
169784
|
-
|
|
169919
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
169785
169920
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
169786
169921
|
name?: (string | null) | undefined;
|
|
169787
169922
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -170231,6 +170366,9 @@ type Routes = {
|
|
|
170231
170366
|
can_simulate_disconnection?: boolean | undefined;
|
|
170232
170367
|
can_unlock_with_code?: boolean | undefined;
|
|
170233
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;
|
|
170234
170372
|
can_simulate_hub_connection?: boolean | undefined;
|
|
170235
170373
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
170236
170374
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -172804,9 +172942,9 @@ type Routes = {
|
|
|
172804
172942
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
172805
172943
|
page_cursor?: (string | undefined) | null;
|
|
172806
172944
|
/** */
|
|
172807
|
-
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;
|
|
172808
172946
|
/** */
|
|
172809
|
-
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;
|
|
172810
172948
|
/**
|
|
172811
172949
|
* @deprecated Use `space_id`.*/
|
|
172812
172950
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -173475,7 +173613,7 @@ type Routes = {
|
|
|
173475
173613
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
173476
173614
|
can_delete?: boolean | undefined;
|
|
173477
173615
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
173478
|
-
|
|
173616
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
173479
173617
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
173480
173618
|
name?: ((string | null) | undefined) | undefined;
|
|
173481
173619
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -173521,7 +173659,7 @@ type Routes = {
|
|
|
173521
173659
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
173522
173660
|
can_delete?: boolean | undefined;
|
|
173523
173661
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
173524
|
-
|
|
173662
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
173525
173663
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
173526
173664
|
name?: ((string | null) | undefined) | undefined;
|
|
173527
173665
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -173566,7 +173704,7 @@ type Routes = {
|
|
|
173566
173704
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
173567
173705
|
can_delete: boolean;
|
|
173568
173706
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
173569
|
-
|
|
173707
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
173570
173708
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
173571
173709
|
name?: (string | null) | undefined;
|
|
173572
173710
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -174016,6 +174154,9 @@ type Routes = {
|
|
|
174016
174154
|
can_simulate_disconnection?: boolean | undefined;
|
|
174017
174155
|
can_unlock_with_code?: boolean | undefined;
|
|
174018
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;
|
|
174019
174160
|
can_simulate_hub_connection?: boolean | undefined;
|
|
174020
174161
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
174021
174162
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -174678,7 +174819,7 @@ type Routes = {
|
|
|
174678
174819
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
174679
174820
|
can_delete?: boolean | undefined;
|
|
174680
174821
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
174681
|
-
|
|
174822
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
174682
174823
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
174683
174824
|
name?: ((string | null) | undefined) | undefined;
|
|
174684
174825
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -174724,7 +174865,7 @@ type Routes = {
|
|
|
174724
174865
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
174725
174866
|
can_delete?: boolean | undefined;
|
|
174726
174867
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
174727
|
-
|
|
174868
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
174728
174869
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
174729
174870
|
name?: ((string | null) | undefined) | undefined;
|
|
174730
174871
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -174769,7 +174910,7 @@ type Routes = {
|
|
|
174769
174910
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
174770
174911
|
can_delete: boolean;
|
|
174771
174912
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
174772
|
-
|
|
174913
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
174773
174914
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
174774
174915
|
name?: (string | null) | undefined;
|
|
174775
174916
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -175219,6 +175360,9 @@ type Routes = {
|
|
|
175219
175360
|
can_simulate_disconnection?: boolean | undefined;
|
|
175220
175361
|
can_unlock_with_code?: boolean | undefined;
|
|
175221
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;
|
|
175222
175366
|
can_simulate_hub_connection?: boolean | undefined;
|
|
175223
175367
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
175224
175368
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -181824,7 +181968,7 @@ type Routes = {
|
|
|
181824
181968
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
181825
181969
|
can_delete?: boolean | undefined;
|
|
181826
181970
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
181827
|
-
|
|
181971
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
181828
181972
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
181829
181973
|
name?: ((string | null) | undefined) | undefined;
|
|
181830
181974
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -181870,7 +182014,7 @@ type Routes = {
|
|
|
181870
182014
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
181871
182015
|
can_delete?: boolean | undefined;
|
|
181872
182016
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
181873
|
-
|
|
182017
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
181874
182018
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
181875
182019
|
name?: ((string | null) | undefined) | undefined;
|
|
181876
182020
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -181915,7 +182059,7 @@ type Routes = {
|
|
|
181915
182059
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
181916
182060
|
can_delete: boolean;
|
|
181917
182061
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
181918
|
-
|
|
182062
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
181919
182063
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
181920
182064
|
name?: (string | null) | undefined;
|
|
181921
182065
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -182365,6 +182509,9 @@ type Routes = {
|
|
|
182365
182509
|
can_simulate_disconnection?: boolean | undefined;
|
|
182366
182510
|
can_unlock_with_code?: boolean | undefined;
|
|
182367
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;
|
|
182368
182515
|
can_simulate_hub_connection?: boolean | undefined;
|
|
182369
182516
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
182370
182517
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -183029,7 +183176,7 @@ type Routes = {
|
|
|
183029
183176
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
183030
183177
|
can_delete?: boolean | undefined;
|
|
183031
183178
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
183032
|
-
|
|
183179
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
183033
183180
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
183034
183181
|
name?: ((string | null) | undefined) | undefined;
|
|
183035
183182
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -183075,7 +183222,7 @@ type Routes = {
|
|
|
183075
183222
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
183076
183223
|
can_delete?: boolean | undefined;
|
|
183077
183224
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
183078
|
-
|
|
183225
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
183079
183226
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
183080
183227
|
name?: ((string | null) | undefined) | undefined;
|
|
183081
183228
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -183120,7 +183267,7 @@ type Routes = {
|
|
|
183120
183267
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
183121
183268
|
can_delete: boolean;
|
|
183122
183269
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
183123
|
-
|
|
183270
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
183124
183271
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
183125
183272
|
name?: (string | null) | undefined;
|
|
183126
183273
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -183570,6 +183717,9 @@ type Routes = {
|
|
|
183570
183717
|
can_simulate_disconnection?: boolean | undefined;
|
|
183571
183718
|
can_unlock_with_code?: boolean | undefined;
|
|
183572
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;
|
|
183573
183723
|
can_simulate_hub_connection?: boolean | undefined;
|
|
183574
183724
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
183575
183725
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -185004,7 +185154,7 @@ type Routes = {
|
|
|
185004
185154
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
185005
185155
|
can_delete?: boolean | undefined;
|
|
185006
185156
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
185007
|
-
|
|
185157
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
185008
185158
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
185009
185159
|
name?: ((string | null) | undefined) | undefined;
|
|
185010
185160
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -185050,7 +185200,7 @@ type Routes = {
|
|
|
185050
185200
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
185051
185201
|
can_delete?: boolean | undefined;
|
|
185052
185202
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
185053
|
-
|
|
185203
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
185054
185204
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
185055
185205
|
name?: ((string | null) | undefined) | undefined;
|
|
185056
185206
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -185095,7 +185245,7 @@ type Routes = {
|
|
|
185095
185245
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
185096
185246
|
can_delete: boolean;
|
|
185097
185247
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
|
|
185098
|
-
|
|
185248
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
185099
185249
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
185100
185250
|
name?: (string | null) | undefined;
|
|
185101
185251
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -185545,6 +185695,9 @@ type Routes = {
|
|
|
185545
185695
|
can_simulate_disconnection?: boolean | undefined;
|
|
185546
185696
|
can_unlock_with_code?: boolean | undefined;
|
|
185547
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;
|
|
185548
185701
|
can_simulate_hub_connection?: boolean | undefined;
|
|
185549
185702
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
185550
185703
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -188200,6 +188353,9 @@ type Routes = {
|
|
|
188200
188353
|
can_simulate_disconnection?: boolean | undefined;
|
|
188201
188354
|
can_unlock_with_code?: boolean | undefined;
|
|
188202
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;
|
|
188203
188359
|
can_simulate_hub_connection?: boolean | undefined;
|
|
188204
188360
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
188205
188361
|
can_simulate_paid_subscription?: boolean | undefined;
|