@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
|
@@ -10823,7 +10823,7 @@ export type Routes = {
|
|
|
10823
10823
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
10824
10824
|
can_delete?: boolean | undefined;
|
|
10825
10825
|
/** 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. */
|
|
10826
|
-
|
|
10826
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10827
10827
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
10828
10828
|
name?: ((string | null) | undefined) | undefined;
|
|
10829
10829
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -10869,7 +10869,7 @@ export type Routes = {
|
|
|
10869
10869
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
10870
10870
|
can_delete?: boolean | undefined;
|
|
10871
10871
|
/** 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. */
|
|
10872
|
-
|
|
10872
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
10873
10873
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
10874
10874
|
name?: ((string | null) | undefined) | undefined;
|
|
10875
10875
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -10914,7 +10914,7 @@ export type Routes = {
|
|
|
10914
10914
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
10915
10915
|
can_delete: boolean;
|
|
10916
10916
|
/** 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. */
|
|
10917
|
-
|
|
10917
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
10918
10918
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
10919
10919
|
name?: (string | null) | undefined;
|
|
10920
10920
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -11364,6 +11364,9 @@ export type Routes = {
|
|
|
11364
11364
|
can_simulate_disconnection?: boolean | undefined;
|
|
11365
11365
|
can_unlock_with_code?: boolean | undefined;
|
|
11366
11366
|
can_run_thermostat_programs?: boolean | undefined;
|
|
11367
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
11368
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
11369
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
11367
11370
|
can_simulate_hub_connection?: boolean | undefined;
|
|
11368
11371
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
11369
11372
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -14006,7 +14009,7 @@ export type Routes = {
|
|
|
14006
14009
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
14007
14010
|
can_delete?: boolean | undefined;
|
|
14008
14011
|
/** 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. */
|
|
14009
|
-
|
|
14012
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
14010
14013
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
14011
14014
|
name?: ((string | null) | undefined) | undefined;
|
|
14012
14015
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -14052,7 +14055,7 @@ export type Routes = {
|
|
|
14052
14055
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
14053
14056
|
can_delete?: boolean | undefined;
|
|
14054
14057
|
/** 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. */
|
|
14055
|
-
|
|
14058
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
14056
14059
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
14057
14060
|
name?: ((string | null) | undefined) | undefined;
|
|
14058
14061
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -14097,7 +14100,7 @@ export type Routes = {
|
|
|
14097
14100
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
14098
14101
|
can_delete: boolean;
|
|
14099
14102
|
/** 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. */
|
|
14100
|
-
|
|
14103
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
14101
14104
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
14102
14105
|
name?: (string | null) | undefined;
|
|
14103
14106
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -14547,6 +14550,9 @@ export type Routes = {
|
|
|
14547
14550
|
can_simulate_disconnection?: boolean | undefined;
|
|
14548
14551
|
can_unlock_with_code?: boolean | undefined;
|
|
14549
14552
|
can_run_thermostat_programs?: boolean | undefined;
|
|
14553
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
14554
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
14555
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
14550
14556
|
can_simulate_hub_connection?: boolean | undefined;
|
|
14551
14557
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
14552
14558
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -17202,6 +17208,9 @@ export type Routes = {
|
|
|
17202
17208
|
can_simulate_disconnection?: boolean | undefined;
|
|
17203
17209
|
can_unlock_with_code?: boolean | undefined;
|
|
17204
17210
|
can_run_thermostat_programs?: boolean | undefined;
|
|
17211
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
17212
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
17213
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
17205
17214
|
can_simulate_hub_connection?: boolean | undefined;
|
|
17206
17215
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
17207
17216
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -32502,7 +32511,7 @@ export type Routes = {
|
|
|
32502
32511
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
32503
32512
|
can_delete?: boolean | undefined;
|
|
32504
32513
|
/** 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. */
|
|
32505
|
-
|
|
32514
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32506
32515
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32507
32516
|
name?: ((string | null) | undefined) | undefined;
|
|
32508
32517
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -32548,7 +32557,7 @@ export type Routes = {
|
|
|
32548
32557
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
32549
32558
|
can_delete?: boolean | undefined;
|
|
32550
32559
|
/** 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. */
|
|
32551
|
-
|
|
32560
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
32552
32561
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32553
32562
|
name?: ((string | null) | undefined) | undefined;
|
|
32554
32563
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -32593,7 +32602,7 @@ export type Routes = {
|
|
|
32593
32602
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
32594
32603
|
can_delete: boolean;
|
|
32595
32604
|
/** 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. */
|
|
32596
|
-
|
|
32605
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
32597
32606
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32598
32607
|
name?: (string | null) | undefined;
|
|
32599
32608
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -33043,6 +33052,9 @@ export type Routes = {
|
|
|
33043
33052
|
can_simulate_disconnection?: boolean | undefined;
|
|
33044
33053
|
can_unlock_with_code?: boolean | undefined;
|
|
33045
33054
|
can_run_thermostat_programs?: boolean | undefined;
|
|
33055
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
33056
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
33057
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
33046
33058
|
can_simulate_hub_connection?: boolean | undefined;
|
|
33047
33059
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
33048
33060
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -33084,9 +33096,9 @@ export type Routes = {
|
|
|
33084
33096
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
33085
33097
|
page_cursor?: (string | undefined) | null;
|
|
33086
33098
|
/** */
|
|
33087
|
-
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;
|
|
33099
|
+
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;
|
|
33088
33100
|
/** */
|
|
33089
|
-
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;
|
|
33101
|
+
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;
|
|
33090
33102
|
/**
|
|
33091
33103
|
* @deprecated Use `space_id`.*/
|
|
33092
33104
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -33755,7 +33767,7 @@ export type Routes = {
|
|
|
33755
33767
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
33756
33768
|
can_delete?: boolean | undefined;
|
|
33757
33769
|
/** 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. */
|
|
33758
|
-
|
|
33770
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33759
33771
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
33760
33772
|
name?: ((string | null) | undefined) | undefined;
|
|
33761
33773
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -33801,7 +33813,7 @@ export type Routes = {
|
|
|
33801
33813
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
33802
33814
|
can_delete?: boolean | undefined;
|
|
33803
33815
|
/** 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. */
|
|
33804
|
-
|
|
33816
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
33805
33817
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
33806
33818
|
name?: ((string | null) | undefined) | undefined;
|
|
33807
33819
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -33846,7 +33858,7 @@ export type Routes = {
|
|
|
33846
33858
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
33847
33859
|
can_delete: boolean;
|
|
33848
33860
|
/** 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. */
|
|
33849
|
-
|
|
33861
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
33850
33862
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
33851
33863
|
name?: (string | null) | undefined;
|
|
33852
33864
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -34296,6 +34308,9 @@ export type Routes = {
|
|
|
34296
34308
|
can_simulate_disconnection?: boolean | undefined;
|
|
34297
34309
|
can_unlock_with_code?: boolean | undefined;
|
|
34298
34310
|
can_run_thermostat_programs?: boolean | undefined;
|
|
34311
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
34312
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
34313
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
34299
34314
|
can_simulate_hub_connection?: boolean | undefined;
|
|
34300
34315
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34301
34316
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -34340,6 +34355,9 @@ export type Routes = {
|
|
|
34340
34355
|
can_simulate_disconnection?: boolean | undefined;
|
|
34341
34356
|
can_unlock_with_code?: boolean | undefined;
|
|
34342
34357
|
can_run_thermostat_programs?: boolean | undefined;
|
|
34358
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
34359
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
34360
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
34343
34361
|
can_simulate_hub_connection?: boolean | undefined;
|
|
34344
34362
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34345
34363
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -34808,6 +34826,9 @@ export type Routes = {
|
|
|
34808
34826
|
can_simulate_disconnection?: boolean | undefined;
|
|
34809
34827
|
can_unlock_with_code?: boolean | undefined;
|
|
34810
34828
|
can_run_thermostat_programs?: boolean | undefined;
|
|
34829
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
34830
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
34831
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
34811
34832
|
can_simulate_hub_connection?: boolean | undefined;
|
|
34812
34833
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34813
34834
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -34847,9 +34868,9 @@ export type Routes = {
|
|
|
34847
34868
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
34848
34869
|
page_cursor?: (string | undefined) | null;
|
|
34849
34870
|
/** */
|
|
34850
|
-
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;
|
|
34871
|
+
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;
|
|
34851
34872
|
/** */
|
|
34852
|
-
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;
|
|
34873
|
+
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;
|
|
34853
34874
|
/**
|
|
34854
34875
|
* @deprecated Use `space_id`.*/
|
|
34855
34876
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -35238,6 +35259,9 @@ export type Routes = {
|
|
|
35238
35259
|
can_simulate_disconnection?: boolean | undefined;
|
|
35239
35260
|
can_unlock_with_code?: boolean | undefined;
|
|
35240
35261
|
can_run_thermostat_programs?: boolean | undefined;
|
|
35262
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
35263
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
35264
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
35241
35265
|
can_simulate_hub_connection?: boolean | undefined;
|
|
35242
35266
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
35243
35267
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -39920,7 +39944,7 @@ export type Routes = {
|
|
|
39920
39944
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
39921
39945
|
can_delete?: boolean | undefined;
|
|
39922
39946
|
/** 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. */
|
|
39923
|
-
|
|
39947
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
39924
39948
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
39925
39949
|
name?: ((string | null) | undefined) | undefined;
|
|
39926
39950
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -39966,7 +39990,7 @@ export type Routes = {
|
|
|
39966
39990
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
39967
39991
|
can_delete?: boolean | undefined;
|
|
39968
39992
|
/** 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. */
|
|
39969
|
-
|
|
39993
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
39970
39994
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
39971
39995
|
name?: ((string | null) | undefined) | undefined;
|
|
39972
39996
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -40011,7 +40035,7 @@ export type Routes = {
|
|
|
40011
40035
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
40012
40036
|
can_delete: boolean;
|
|
40013
40037
|
/** 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. */
|
|
40014
|
-
|
|
40038
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
40015
40039
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
40016
40040
|
name?: (string | null) | undefined;
|
|
40017
40041
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -40461,6 +40485,9 @@ export type Routes = {
|
|
|
40461
40485
|
can_simulate_disconnection?: boolean | undefined;
|
|
40462
40486
|
can_unlock_with_code?: boolean | undefined;
|
|
40463
40487
|
can_run_thermostat_programs?: boolean | undefined;
|
|
40488
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
40489
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
40490
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
40464
40491
|
can_simulate_hub_connection?: boolean | undefined;
|
|
40465
40492
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
40466
40493
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -41124,7 +41151,7 @@ export type Routes = {
|
|
|
41124
41151
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
41125
41152
|
can_delete?: boolean | undefined;
|
|
41126
41153
|
/** 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. */
|
|
41127
|
-
|
|
41154
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
41128
41155
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
41129
41156
|
name?: ((string | null) | undefined) | undefined;
|
|
41130
41157
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -41170,7 +41197,7 @@ export type Routes = {
|
|
|
41170
41197
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
41171
41198
|
can_delete?: boolean | undefined;
|
|
41172
41199
|
/** 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. */
|
|
41173
|
-
|
|
41200
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
41174
41201
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
41175
41202
|
name?: ((string | null) | undefined) | undefined;
|
|
41176
41203
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -41215,7 +41242,7 @@ export type Routes = {
|
|
|
41215
41242
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
41216
41243
|
can_delete: boolean;
|
|
41217
41244
|
/** 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. */
|
|
41218
|
-
|
|
41245
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
41219
41246
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
41220
41247
|
name?: (string | null) | undefined;
|
|
41221
41248
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -41665,6 +41692,9 @@ export type Routes = {
|
|
|
41665
41692
|
can_simulate_disconnection?: boolean | undefined;
|
|
41666
41693
|
can_unlock_with_code?: boolean | undefined;
|
|
41667
41694
|
can_run_thermostat_programs?: boolean | undefined;
|
|
41695
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
41696
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
41697
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
41668
41698
|
can_simulate_hub_connection?: boolean | undefined;
|
|
41669
41699
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
41670
41700
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -41706,9 +41736,9 @@ export type Routes = {
|
|
|
41706
41736
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
41707
41737
|
page_cursor?: (string | undefined) | null;
|
|
41708
41738
|
/** */
|
|
41709
|
-
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;
|
|
41739
|
+
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;
|
|
41710
41740
|
/** */
|
|
41711
|
-
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;
|
|
41741
|
+
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;
|
|
41712
41742
|
/**
|
|
41713
41743
|
* @deprecated Use `space_id`.*/
|
|
41714
41744
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -42377,7 +42407,7 @@ export type Routes = {
|
|
|
42377
42407
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
42378
42408
|
can_delete?: boolean | undefined;
|
|
42379
42409
|
/** 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. */
|
|
42380
|
-
|
|
42410
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42381
42411
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
42382
42412
|
name?: ((string | null) | undefined) | undefined;
|
|
42383
42413
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -42423,7 +42453,7 @@ export type Routes = {
|
|
|
42423
42453
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
42424
42454
|
can_delete?: boolean | undefined;
|
|
42425
42455
|
/** 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. */
|
|
42426
|
-
|
|
42456
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
42427
42457
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
42428
42458
|
name?: ((string | null) | undefined) | undefined;
|
|
42429
42459
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -42468,7 +42498,7 @@ export type Routes = {
|
|
|
42468
42498
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
42469
42499
|
can_delete: boolean;
|
|
42470
42500
|
/** 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. */
|
|
42471
|
-
|
|
42501
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
42472
42502
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
42473
42503
|
name?: (string | null) | undefined;
|
|
42474
42504
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -42918,6 +42948,9 @@ export type Routes = {
|
|
|
42918
42948
|
can_simulate_disconnection?: boolean | undefined;
|
|
42919
42949
|
can_unlock_with_code?: boolean | undefined;
|
|
42920
42950
|
can_run_thermostat_programs?: boolean | undefined;
|
|
42951
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
42952
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
42953
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
42921
42954
|
can_simulate_hub_connection?: boolean | undefined;
|
|
42922
42955
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
42923
42956
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -43580,7 +43613,7 @@ export type Routes = {
|
|
|
43580
43613
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
43581
43614
|
can_delete?: boolean | undefined;
|
|
43582
43615
|
/** 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. */
|
|
43583
|
-
|
|
43616
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
43584
43617
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
43585
43618
|
name?: ((string | null) | undefined) | undefined;
|
|
43586
43619
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -43626,7 +43659,7 @@ export type Routes = {
|
|
|
43626
43659
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
43627
43660
|
can_delete?: boolean | undefined;
|
|
43628
43661
|
/** 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. */
|
|
43629
|
-
|
|
43662
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
43630
43663
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
43631
43664
|
name?: ((string | null) | undefined) | undefined;
|
|
43632
43665
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -43671,7 +43704,7 @@ export type Routes = {
|
|
|
43671
43704
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
43672
43705
|
can_delete: boolean;
|
|
43673
43706
|
/** 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. */
|
|
43674
|
-
|
|
43707
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
43675
43708
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
43676
43709
|
name?: (string | null) | undefined;
|
|
43677
43710
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -44121,6 +44154,9 @@ export type Routes = {
|
|
|
44121
44154
|
can_simulate_disconnection?: boolean | undefined;
|
|
44122
44155
|
can_unlock_with_code?: boolean | undefined;
|
|
44123
44156
|
can_run_thermostat_programs?: boolean | undefined;
|
|
44157
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
44158
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
44159
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
44124
44160
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44125
44161
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44126
44162
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -49200,9 +49236,9 @@ export type Routes = {
|
|
|
49200
49236
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
49201
49237
|
page_cursor?: (string | undefined) | null;
|
|
49202
49238
|
/** */
|
|
49203
|
-
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;
|
|
49239
|
+
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;
|
|
49204
49240
|
/** */
|
|
49205
|
-
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;
|
|
49241
|
+
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;
|
|
49206
49242
|
/**
|
|
49207
49243
|
* @deprecated Use `space_id`.*/
|
|
49208
49244
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -49871,7 +49907,7 @@ export type Routes = {
|
|
|
49871
49907
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
49872
49908
|
can_delete?: boolean | undefined;
|
|
49873
49909
|
/** 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. */
|
|
49874
|
-
|
|
49910
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
49875
49911
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
49876
49912
|
name?: ((string | null) | undefined) | undefined;
|
|
49877
49913
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -49917,7 +49953,7 @@ export type Routes = {
|
|
|
49917
49953
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
49918
49954
|
can_delete?: boolean | undefined;
|
|
49919
49955
|
/** 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. */
|
|
49920
|
-
|
|
49956
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
49921
49957
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
49922
49958
|
name?: ((string | null) | undefined) | undefined;
|
|
49923
49959
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -49962,7 +49998,7 @@ export type Routes = {
|
|
|
49962
49998
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
49963
49999
|
can_delete: boolean;
|
|
49964
50000
|
/** 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. */
|
|
49965
|
-
|
|
50001
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
49966
50002
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
49967
50003
|
name?: (string | null) | undefined;
|
|
49968
50004
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -50412,6 +50448,9 @@ export type Routes = {
|
|
|
50412
50448
|
can_simulate_disconnection?: boolean | undefined;
|
|
50413
50449
|
can_unlock_with_code?: boolean | undefined;
|
|
50414
50450
|
can_run_thermostat_programs?: boolean | undefined;
|
|
50451
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
50452
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
50453
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
50415
50454
|
can_simulate_hub_connection?: boolean | undefined;
|
|
50416
50455
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
50417
50456
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -51074,7 +51113,7 @@ export type Routes = {
|
|
|
51074
51113
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
51075
51114
|
can_delete?: boolean | undefined;
|
|
51076
51115
|
/** 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. */
|
|
51077
|
-
|
|
51116
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51078
51117
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
51079
51118
|
name?: ((string | null) | undefined) | undefined;
|
|
51080
51119
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -51120,7 +51159,7 @@ export type Routes = {
|
|
|
51120
51159
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
51121
51160
|
can_delete?: boolean | undefined;
|
|
51122
51161
|
/** 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. */
|
|
51123
|
-
|
|
51162
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
51124
51163
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
51125
51164
|
name?: ((string | null) | undefined) | undefined;
|
|
51126
51165
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -51165,7 +51204,7 @@ export type Routes = {
|
|
|
51165
51204
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
51166
51205
|
can_delete: boolean;
|
|
51167
51206
|
/** 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. */
|
|
51168
|
-
|
|
51207
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
51169
51208
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
51170
51209
|
name?: (string | null) | undefined;
|
|
51171
51210
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -51615,6 +51654,9 @@ export type Routes = {
|
|
|
51615
51654
|
can_simulate_disconnection?: boolean | undefined;
|
|
51616
51655
|
can_unlock_with_code?: boolean | undefined;
|
|
51617
51656
|
can_run_thermostat_programs?: boolean | undefined;
|
|
51657
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
51658
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
51659
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
51618
51660
|
can_simulate_hub_connection?: boolean | undefined;
|
|
51619
51661
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
51620
51662
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -59797,7 +59839,7 @@ export type Routes = {
|
|
|
59797
59839
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
59798
59840
|
can_delete?: boolean | undefined;
|
|
59799
59841
|
/** 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. */
|
|
59800
|
-
|
|
59842
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
59801
59843
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
59802
59844
|
name?: ((string | null) | undefined) | undefined;
|
|
59803
59845
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -59843,7 +59885,7 @@ export type Routes = {
|
|
|
59843
59885
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
59844
59886
|
can_delete?: boolean | undefined;
|
|
59845
59887
|
/** 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. */
|
|
59846
|
-
|
|
59888
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
59847
59889
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
59848
59890
|
name?: ((string | null) | undefined) | undefined;
|
|
59849
59891
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -59888,7 +59930,7 @@ export type Routes = {
|
|
|
59888
59930
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
59889
59931
|
can_delete: boolean;
|
|
59890
59932
|
/** 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. */
|
|
59891
|
-
|
|
59933
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
59892
59934
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
59893
59935
|
name?: (string | null) | undefined;
|
|
59894
59936
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -60338,6 +60380,9 @@ export type Routes = {
|
|
|
60338
60380
|
can_simulate_disconnection?: boolean | undefined;
|
|
60339
60381
|
can_unlock_with_code?: boolean | undefined;
|
|
60340
60382
|
can_run_thermostat_programs?: boolean | undefined;
|
|
60383
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
60384
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
60385
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
60341
60386
|
can_simulate_hub_connection?: boolean | undefined;
|
|
60342
60387
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
60343
60388
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -65390,7 +65435,7 @@ export type Routes = {
|
|
|
65390
65435
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
65391
65436
|
can_delete?: boolean | undefined;
|
|
65392
65437
|
/** 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. */
|
|
65393
|
-
|
|
65438
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
65394
65439
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
65395
65440
|
name?: ((string | null) | undefined) | undefined;
|
|
65396
65441
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -65436,7 +65481,7 @@ export type Routes = {
|
|
|
65436
65481
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
65437
65482
|
can_delete?: boolean | undefined;
|
|
65438
65483
|
/** 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. */
|
|
65439
|
-
|
|
65484
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
65440
65485
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
65441
65486
|
name?: ((string | null) | undefined) | undefined;
|
|
65442
65487
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -65481,7 +65526,7 @@ export type Routes = {
|
|
|
65481
65526
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
65482
65527
|
can_delete: boolean;
|
|
65483
65528
|
/** 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. */
|
|
65484
|
-
|
|
65529
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
65485
65530
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
65486
65531
|
name?: (string | null) | undefined;
|
|
65487
65532
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -65931,6 +65976,9 @@ export type Routes = {
|
|
|
65931
65976
|
can_simulate_disconnection?: boolean | undefined;
|
|
65932
65977
|
can_unlock_with_code?: boolean | undefined;
|
|
65933
65978
|
can_run_thermostat_programs?: boolean | undefined;
|
|
65979
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
65980
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
65981
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
65934
65982
|
can_simulate_hub_connection?: boolean | undefined;
|
|
65935
65983
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
65936
65984
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -68504,9 +68552,9 @@ export type Routes = {
|
|
|
68504
68552
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
68505
68553
|
page_cursor?: (string | undefined) | null;
|
|
68506
68554
|
/** */
|
|
68507
|
-
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;
|
|
68555
|
+
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;
|
|
68508
68556
|
/** */
|
|
68509
|
-
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;
|
|
68557
|
+
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;
|
|
68510
68558
|
/**
|
|
68511
68559
|
* @deprecated Use `space_id`.*/
|
|
68512
68560
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -69175,7 +69223,7 @@ export type Routes = {
|
|
|
69175
69223
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
69176
69224
|
can_delete?: boolean | undefined;
|
|
69177
69225
|
/** 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. */
|
|
69178
|
-
|
|
69226
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
69179
69227
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
69180
69228
|
name?: ((string | null) | undefined) | undefined;
|
|
69181
69229
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -69221,7 +69269,7 @@ export type Routes = {
|
|
|
69221
69269
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
69222
69270
|
can_delete?: boolean | undefined;
|
|
69223
69271
|
/** 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. */
|
|
69224
|
-
|
|
69272
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
69225
69273
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
69226
69274
|
name?: ((string | null) | undefined) | undefined;
|
|
69227
69275
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -69266,7 +69314,7 @@ export type Routes = {
|
|
|
69266
69314
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
69267
69315
|
can_delete: boolean;
|
|
69268
69316
|
/** 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. */
|
|
69269
|
-
|
|
69317
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
69270
69318
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
69271
69319
|
name?: (string | null) | undefined;
|
|
69272
69320
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -69716,6 +69764,9 @@ export type Routes = {
|
|
|
69716
69764
|
can_simulate_disconnection?: boolean | undefined;
|
|
69717
69765
|
can_unlock_with_code?: boolean | undefined;
|
|
69718
69766
|
can_run_thermostat_programs?: boolean | undefined;
|
|
69767
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
69768
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
69769
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
69719
69770
|
can_simulate_hub_connection?: boolean | undefined;
|
|
69720
69771
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
69721
69772
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -70378,7 +70429,7 @@ export type Routes = {
|
|
|
70378
70429
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
70379
70430
|
can_delete?: boolean | undefined;
|
|
70380
70431
|
/** 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. */
|
|
70381
|
-
|
|
70432
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
70382
70433
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
70383
70434
|
name?: ((string | null) | undefined) | undefined;
|
|
70384
70435
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -70424,7 +70475,7 @@ export type Routes = {
|
|
|
70424
70475
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
70425
70476
|
can_delete?: boolean | undefined;
|
|
70426
70477
|
/** 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. */
|
|
70427
|
-
|
|
70478
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
70428
70479
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
70429
70480
|
name?: ((string | null) | undefined) | undefined;
|
|
70430
70481
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -70469,7 +70520,7 @@ export type Routes = {
|
|
|
70469
70520
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
70470
70521
|
can_delete: boolean;
|
|
70471
70522
|
/** 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. */
|
|
70472
|
-
|
|
70523
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
70473
70524
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
70474
70525
|
name?: (string | null) | undefined;
|
|
70475
70526
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -70919,6 +70970,9 @@ export type Routes = {
|
|
|
70919
70970
|
can_simulate_disconnection?: boolean | undefined;
|
|
70920
70971
|
can_unlock_with_code?: boolean | undefined;
|
|
70921
70972
|
can_run_thermostat_programs?: boolean | undefined;
|
|
70973
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
70974
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
70975
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
70922
70976
|
can_simulate_hub_connection?: boolean | undefined;
|
|
70923
70977
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
70924
70978
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -77524,7 +77578,7 @@ export type Routes = {
|
|
|
77524
77578
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
77525
77579
|
can_delete?: boolean | undefined;
|
|
77526
77580
|
/** 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. */
|
|
77527
|
-
|
|
77581
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
77528
77582
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
77529
77583
|
name?: ((string | null) | undefined) | undefined;
|
|
77530
77584
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -77570,7 +77624,7 @@ export type Routes = {
|
|
|
77570
77624
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
77571
77625
|
can_delete?: boolean | undefined;
|
|
77572
77626
|
/** 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. */
|
|
77573
|
-
|
|
77627
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
77574
77628
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
77575
77629
|
name?: ((string | null) | undefined) | undefined;
|
|
77576
77630
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -77615,7 +77669,7 @@ export type Routes = {
|
|
|
77615
77669
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
77616
77670
|
can_delete: boolean;
|
|
77617
77671
|
/** 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. */
|
|
77618
|
-
|
|
77672
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
77619
77673
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
77620
77674
|
name?: (string | null) | undefined;
|
|
77621
77675
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -78065,6 +78119,9 @@ export type Routes = {
|
|
|
78065
78119
|
can_simulate_disconnection?: boolean | undefined;
|
|
78066
78120
|
can_unlock_with_code?: boolean | undefined;
|
|
78067
78121
|
can_run_thermostat_programs?: boolean | undefined;
|
|
78122
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
78123
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
78124
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
78068
78125
|
can_simulate_hub_connection?: boolean | undefined;
|
|
78069
78126
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
78070
78127
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -78729,7 +78786,7 @@ export type Routes = {
|
|
|
78729
78786
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
78730
78787
|
can_delete?: boolean | undefined;
|
|
78731
78788
|
/** 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. */
|
|
78732
|
-
|
|
78789
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
78733
78790
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
78734
78791
|
name?: ((string | null) | undefined) | undefined;
|
|
78735
78792
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -78775,7 +78832,7 @@ export type Routes = {
|
|
|
78775
78832
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
78776
78833
|
can_delete?: boolean | undefined;
|
|
78777
78834
|
/** 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. */
|
|
78778
|
-
|
|
78835
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
78779
78836
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
78780
78837
|
name?: ((string | null) | undefined) | undefined;
|
|
78781
78838
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -78820,7 +78877,7 @@ export type Routes = {
|
|
|
78820
78877
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
78821
78878
|
can_delete: boolean;
|
|
78822
78879
|
/** 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. */
|
|
78823
|
-
|
|
78880
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
78824
78881
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
78825
78882
|
name?: (string | null) | undefined;
|
|
78826
78883
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -79270,6 +79327,9 @@ export type Routes = {
|
|
|
79270
79327
|
can_simulate_disconnection?: boolean | undefined;
|
|
79271
79328
|
can_unlock_with_code?: boolean | undefined;
|
|
79272
79329
|
can_run_thermostat_programs?: boolean | undefined;
|
|
79330
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
79331
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
79332
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
79273
79333
|
can_simulate_hub_connection?: boolean | undefined;
|
|
79274
79334
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
79275
79335
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -80704,7 +80764,7 @@ export type Routes = {
|
|
|
80704
80764
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
80705
80765
|
can_delete?: boolean | undefined;
|
|
80706
80766
|
/** 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. */
|
|
80707
|
-
|
|
80767
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
80708
80768
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
80709
80769
|
name?: ((string | null) | undefined) | undefined;
|
|
80710
80770
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -80750,7 +80810,7 @@ export type Routes = {
|
|
|
80750
80810
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
80751
80811
|
can_delete?: boolean | undefined;
|
|
80752
80812
|
/** 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. */
|
|
80753
|
-
|
|
80813
|
+
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
80754
80814
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
80755
80815
|
name?: ((string | null) | undefined) | undefined;
|
|
80756
80816
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -80795,7 +80855,7 @@ export type Routes = {
|
|
|
80795
80855
|
/** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
|
|
80796
80856
|
can_delete: boolean;
|
|
80797
80857
|
/** 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. */
|
|
80798
|
-
|
|
80858
|
+
can_use_with_thermostat_daily_programs: boolean;
|
|
80799
80859
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
80800
80860
|
name?: (string | null) | undefined;
|
|
80801
80861
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
@@ -81245,6 +81305,9 @@ export type Routes = {
|
|
|
81245
81305
|
can_simulate_disconnection?: boolean | undefined;
|
|
81246
81306
|
can_unlock_with_code?: boolean | undefined;
|
|
81247
81307
|
can_run_thermostat_programs?: boolean | undefined;
|
|
81308
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
81309
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
81310
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
81248
81311
|
can_simulate_hub_connection?: boolean | undefined;
|
|
81249
81312
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
81250
81313
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
@@ -83900,6 +83963,9 @@ export type Routes = {
|
|
|
83900
83963
|
can_simulate_disconnection?: boolean | undefined;
|
|
83901
83964
|
can_unlock_with_code?: boolean | undefined;
|
|
83902
83965
|
can_run_thermostat_programs?: boolean | undefined;
|
|
83966
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
83967
|
+
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
83968
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
83903
83969
|
can_simulate_hub_connection?: boolean | undefined;
|
|
83904
83970
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
83905
83971
|
can_simulate_paid_subscription?: boolean | undefined;
|