@seamapi/types 1.293.0 → 1.293.1
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 +22 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +92 -43
- package/lib/seam/connect/models/thermostats/climate-preset.js +5 -3
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +11 -1
- package/lib/seam/connect/openapi.js +12 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +81 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +7 -5
- package/src/lib/seam/connect/openapi.ts +17 -10
- package/src/lib/seam/connect/route-types.ts +81 -42
|
@@ -9689,7 +9689,8 @@ export interface Routes {
|
|
|
9689
9689
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
9690
9690
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
9691
9691
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
9692
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9692
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9693
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
9693
9694
|
manual_override_allowed?: boolean | undefined;
|
|
9694
9695
|
} | undefined;
|
|
9695
9696
|
/**
|
|
@@ -9717,7 +9718,8 @@ export interface Routes {
|
|
|
9717
9718
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
9718
9719
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
9719
9720
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
9720
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9721
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9722
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
9721
9723
|
manual_override_allowed?: boolean | undefined;
|
|
9722
9724
|
} | undefined;
|
|
9723
9725
|
available_climate_presets?: Array<{
|
|
@@ -9743,7 +9745,8 @@ export interface Routes {
|
|
|
9743
9745
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
9744
9746
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
9745
9747
|
heating_set_point_fahrenheit?: number | undefined;
|
|
9746
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9748
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9749
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
9747
9750
|
manual_override_allowed: boolean;
|
|
9748
9751
|
}> | undefined;
|
|
9749
9752
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -10236,7 +10239,8 @@ export interface Routes {
|
|
|
10236
10239
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
10237
10240
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
10238
10241
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
10239
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10242
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10243
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
10240
10244
|
manual_override_allowed?: boolean | undefined;
|
|
10241
10245
|
} | undefined;
|
|
10242
10246
|
/**
|
|
@@ -10264,7 +10268,8 @@ export interface Routes {
|
|
|
10264
10268
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
10265
10269
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
10266
10270
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
10267
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10271
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10272
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
10268
10273
|
manual_override_allowed?: boolean | undefined;
|
|
10269
10274
|
} | undefined;
|
|
10270
10275
|
available_climate_presets?: Array<{
|
|
@@ -10290,7 +10295,8 @@ export interface Routes {
|
|
|
10290
10295
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
10291
10296
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
10292
10297
|
heating_set_point_fahrenheit?: number | undefined;
|
|
10293
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10298
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10299
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
10294
10300
|
manual_override_allowed: boolean;
|
|
10295
10301
|
}> | undefined;
|
|
10296
10302
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -11186,7 +11192,8 @@ export interface Routes {
|
|
|
11186
11192
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11187
11193
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11188
11194
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11189
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11195
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11196
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11190
11197
|
manual_override_allowed?: boolean | undefined;
|
|
11191
11198
|
} | undefined;
|
|
11192
11199
|
/**
|
|
@@ -11214,7 +11221,8 @@ export interface Routes {
|
|
|
11214
11221
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11215
11222
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11216
11223
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11217
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11224
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11225
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11218
11226
|
manual_override_allowed?: boolean | undefined;
|
|
11219
11227
|
} | undefined;
|
|
11220
11228
|
available_climate_presets?: Array<{
|
|
@@ -11240,7 +11248,8 @@ export interface Routes {
|
|
|
11240
11248
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
11241
11249
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11242
11250
|
heating_set_point_fahrenheit?: number | undefined;
|
|
11243
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11251
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11252
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11244
11253
|
manual_override_allowed: boolean;
|
|
11245
11254
|
}> | undefined;
|
|
11246
11255
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -11696,7 +11705,8 @@ export interface Routes {
|
|
|
11696
11705
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11697
11706
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11698
11707
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11699
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11708
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11709
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11700
11710
|
manual_override_allowed?: boolean | undefined;
|
|
11701
11711
|
} | undefined;
|
|
11702
11712
|
/**
|
|
@@ -11724,7 +11734,8 @@ export interface Routes {
|
|
|
11724
11734
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11725
11735
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11726
11736
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11727
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11737
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11738
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11728
11739
|
manual_override_allowed?: boolean | undefined;
|
|
11729
11740
|
} | undefined;
|
|
11730
11741
|
available_climate_presets?: Array<{
|
|
@@ -11750,7 +11761,8 @@ export interface Routes {
|
|
|
11750
11761
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
11751
11762
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11752
11763
|
heating_set_point_fahrenheit?: number | undefined;
|
|
11753
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11764
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11765
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11754
11766
|
manual_override_allowed: boolean;
|
|
11755
11767
|
}> | undefined;
|
|
11756
11768
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -12243,7 +12255,8 @@ export interface Routes {
|
|
|
12243
12255
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12244
12256
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12245
12257
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12246
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12258
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12259
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12247
12260
|
manual_override_allowed?: boolean | undefined;
|
|
12248
12261
|
} | undefined;
|
|
12249
12262
|
/**
|
|
@@ -12271,7 +12284,8 @@ export interface Routes {
|
|
|
12271
12284
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12272
12285
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12273
12286
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12274
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12287
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12288
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12275
12289
|
manual_override_allowed?: boolean | undefined;
|
|
12276
12290
|
} | undefined;
|
|
12277
12291
|
available_climate_presets?: Array<{
|
|
@@ -12297,7 +12311,8 @@ export interface Routes {
|
|
|
12297
12311
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
12298
12312
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12299
12313
|
heating_set_point_fahrenheit?: number | undefined;
|
|
12300
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12314
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12315
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12301
12316
|
manual_override_allowed: boolean;
|
|
12302
12317
|
}> | undefined;
|
|
12303
12318
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -12753,7 +12768,8 @@ export interface Routes {
|
|
|
12753
12768
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12754
12769
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12755
12770
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12756
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12771
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12772
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12757
12773
|
manual_override_allowed?: boolean | undefined;
|
|
12758
12774
|
} | undefined;
|
|
12759
12775
|
/**
|
|
@@ -12781,7 +12797,8 @@ export interface Routes {
|
|
|
12781
12797
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12782
12798
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12783
12799
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12784
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12800
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12801
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12785
12802
|
manual_override_allowed?: boolean | undefined;
|
|
12786
12803
|
} | undefined;
|
|
12787
12804
|
available_climate_presets?: Array<{
|
|
@@ -12807,7 +12824,8 @@ export interface Routes {
|
|
|
12807
12824
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
12808
12825
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12809
12826
|
heating_set_point_fahrenheit?: number | undefined;
|
|
12810
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12827
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12828
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12811
12829
|
manual_override_allowed: boolean;
|
|
12812
12830
|
}> | undefined;
|
|
12813
12831
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -14800,7 +14818,8 @@ export interface Routes {
|
|
|
14800
14818
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
14801
14819
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
14802
14820
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
14803
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14821
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14822
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14804
14823
|
manual_override_allowed?: boolean | undefined;
|
|
14805
14824
|
} | undefined;
|
|
14806
14825
|
/**
|
|
@@ -14828,7 +14847,8 @@ export interface Routes {
|
|
|
14828
14847
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
14829
14848
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
14830
14849
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
14831
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14850
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14851
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14832
14852
|
manual_override_allowed?: boolean | undefined;
|
|
14833
14853
|
} | undefined;
|
|
14834
14854
|
available_climate_presets?: Array<{
|
|
@@ -14854,7 +14874,8 @@ export interface Routes {
|
|
|
14854
14874
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
14855
14875
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
14856
14876
|
heating_set_point_fahrenheit?: number | undefined;
|
|
14857
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14877
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14878
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14858
14879
|
manual_override_allowed: boolean;
|
|
14859
14880
|
}> | undefined;
|
|
14860
14881
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -15310,7 +15331,8 @@ export interface Routes {
|
|
|
15310
15331
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
15311
15332
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
15312
15333
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
15313
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15334
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15335
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15314
15336
|
manual_override_allowed?: boolean | undefined;
|
|
15315
15337
|
} | undefined;
|
|
15316
15338
|
/**
|
|
@@ -15338,7 +15360,8 @@ export interface Routes {
|
|
|
15338
15360
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
15339
15361
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
15340
15362
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
15341
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15363
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15364
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15342
15365
|
manual_override_allowed?: boolean | undefined;
|
|
15343
15366
|
} | undefined;
|
|
15344
15367
|
available_climate_presets?: Array<{
|
|
@@ -15364,7 +15387,8 @@ export interface Routes {
|
|
|
15364
15387
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
15365
15388
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
15366
15389
|
heating_set_point_fahrenheit?: number | undefined;
|
|
15367
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15390
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15391
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15368
15392
|
manual_override_allowed: boolean;
|
|
15369
15393
|
}> | undefined;
|
|
15370
15394
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -19379,6 +19403,7 @@ export interface Routes {
|
|
|
19379
19403
|
jsonBody: {
|
|
19380
19404
|
/** ID of the desired thermostat device. */
|
|
19381
19405
|
device_id: string;
|
|
19406
|
+
manual_override_allowed?: boolean;
|
|
19382
19407
|
/** Unique key to identify the climate preset. */
|
|
19383
19408
|
climate_preset_key: string;
|
|
19384
19409
|
/** User-friendly name to identify the climate preset. */
|
|
@@ -19395,8 +19420,6 @@ export interface Routes {
|
|
|
19395
19420
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
19396
19421
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19397
19422
|
heating_set_point_fahrenheit?: number | undefined;
|
|
19398
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
19399
|
-
manual_override_allowed: boolean;
|
|
19400
19423
|
};
|
|
19401
19424
|
commonParams: {};
|
|
19402
19425
|
formData: {};
|
|
@@ -19798,7 +19821,8 @@ export interface Routes {
|
|
|
19798
19821
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
19799
19822
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19800
19823
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
19801
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19824
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19825
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19802
19826
|
manual_override_allowed?: boolean | undefined;
|
|
19803
19827
|
} | undefined;
|
|
19804
19828
|
/**
|
|
@@ -19826,7 +19850,8 @@ export interface Routes {
|
|
|
19826
19850
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
19827
19851
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19828
19852
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
19829
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19853
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19854
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19830
19855
|
manual_override_allowed?: boolean | undefined;
|
|
19831
19856
|
} | undefined;
|
|
19832
19857
|
available_climate_presets?: Array<{
|
|
@@ -19852,7 +19877,8 @@ export interface Routes {
|
|
|
19852
19877
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
19853
19878
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19854
19879
|
heating_set_point_fahrenheit?: number | undefined;
|
|
19855
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19880
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19881
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19856
19882
|
manual_override_allowed: boolean;
|
|
19857
19883
|
}> | undefined;
|
|
19858
19884
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -21827,7 +21853,8 @@ export interface Routes {
|
|
|
21827
21853
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
21828
21854
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
21829
21855
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
21830
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21856
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21857
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
21831
21858
|
manual_override_allowed?: boolean | undefined;
|
|
21832
21859
|
} | undefined;
|
|
21833
21860
|
/**
|
|
@@ -21855,7 +21882,8 @@ export interface Routes {
|
|
|
21855
21882
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
21856
21883
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
21857
21884
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
21858
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21885
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21886
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
21859
21887
|
manual_override_allowed?: boolean | undefined;
|
|
21860
21888
|
} | undefined;
|
|
21861
21889
|
available_climate_presets?: Array<{
|
|
@@ -21881,7 +21909,8 @@ export interface Routes {
|
|
|
21881
21909
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
21882
21910
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
21883
21911
|
heating_set_point_fahrenheit?: number | undefined;
|
|
21884
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21912
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21913
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
21885
21914
|
manual_override_allowed: boolean;
|
|
21886
21915
|
}> | undefined;
|
|
21887
21916
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -22337,7 +22366,8 @@ export interface Routes {
|
|
|
22337
22366
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
22338
22367
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
22339
22368
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
22340
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22369
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22370
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
22341
22371
|
manual_override_allowed?: boolean | undefined;
|
|
22342
22372
|
} | undefined;
|
|
22343
22373
|
/**
|
|
@@ -22365,7 +22395,8 @@ export interface Routes {
|
|
|
22365
22395
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
22366
22396
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
22367
22397
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
22368
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22398
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22399
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
22369
22400
|
manual_override_allowed?: boolean | undefined;
|
|
22370
22401
|
} | undefined;
|
|
22371
22402
|
available_climate_presets?: Array<{
|
|
@@ -22391,7 +22422,8 @@ export interface Routes {
|
|
|
22391
22422
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
22392
22423
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
22393
22424
|
heating_set_point_fahrenheit?: number | undefined;
|
|
22394
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22425
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22426
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
22395
22427
|
manual_override_allowed: boolean;
|
|
22396
22428
|
}> | undefined;
|
|
22397
22429
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -24166,7 +24198,8 @@ export interface Routes {
|
|
|
24166
24198
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
24167
24199
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24168
24200
|
heating_set_point_fahrenheit?: number | undefined;
|
|
24169
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24201
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24202
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24170
24203
|
manual_override_allowed: boolean;
|
|
24171
24204
|
};
|
|
24172
24205
|
commonParams: {};
|
|
@@ -24731,7 +24764,8 @@ export interface Routes {
|
|
|
24731
24764
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24732
24765
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24733
24766
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24734
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24767
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24768
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24735
24769
|
manual_override_allowed?: boolean | undefined;
|
|
24736
24770
|
} | undefined;
|
|
24737
24771
|
/**
|
|
@@ -24759,7 +24793,8 @@ export interface Routes {
|
|
|
24759
24793
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24760
24794
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24761
24795
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24762
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24796
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24797
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24763
24798
|
manual_override_allowed?: boolean | undefined;
|
|
24764
24799
|
} | undefined;
|
|
24765
24800
|
available_climate_presets?: Array<{
|
|
@@ -24785,7 +24820,8 @@ export interface Routes {
|
|
|
24785
24820
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
24786
24821
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24787
24822
|
heating_set_point_fahrenheit?: number | undefined;
|
|
24788
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24823
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24824
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24789
24825
|
manual_override_allowed: boolean;
|
|
24790
24826
|
}> | undefined;
|
|
24791
24827
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -25243,7 +25279,8 @@ export interface Routes {
|
|
|
25243
25279
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
25244
25280
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
25245
25281
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
25246
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25282
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25283
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
25247
25284
|
manual_override_allowed?: boolean | undefined;
|
|
25248
25285
|
} | undefined;
|
|
25249
25286
|
/**
|
|
@@ -25271,7 +25308,8 @@ export interface Routes {
|
|
|
25271
25308
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
25272
25309
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
25273
25310
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
25274
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25311
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25312
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
25275
25313
|
manual_override_allowed?: boolean | undefined;
|
|
25276
25314
|
} | undefined;
|
|
25277
25315
|
available_climate_presets?: Array<{
|
|
@@ -25297,7 +25335,8 @@ export interface Routes {
|
|
|
25297
25335
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
25298
25336
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
25299
25337
|
heating_set_point_fahrenheit?: number | undefined;
|
|
25300
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25338
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25339
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
25301
25340
|
manual_override_allowed: boolean;
|
|
25302
25341
|
}> | undefined;
|
|
25303
25342
|
fallback_climate_preset_key?: (string | null) | undefined;
|
package/package.json
CHANGED
|
@@ -47,11 +47,13 @@ export const climate_preset = z.object({
|
|
|
47
47
|
.number()
|
|
48
48
|
.optional()
|
|
49
49
|
.describe('Temperature to which the thermostat should heat (in °F).'),
|
|
50
|
-
manual_override_allowed: z
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
50
|
+
manual_override_allowed: z.boolean().describe(
|
|
51
|
+
`
|
|
52
|
+
---
|
|
53
|
+
deprecated: Use 'thermostat_schedule.is_override_allowed'
|
|
54
|
+
---
|
|
55
|
+
Indicates whether a person at the thermostat can change the thermostat's settings.`,
|
|
56
|
+
),
|
|
55
57
|
})
|
|
56
58
|
|
|
57
59
|
export type ClimatePreset = z.infer<typeof climate_preset>
|
|
@@ -4746,9 +4746,12 @@ export default {
|
|
|
4746
4746
|
type: 'string',
|
|
4747
4747
|
},
|
|
4748
4748
|
manual_override_allowed: {
|
|
4749
|
+
deprecated: true,
|
|
4749
4750
|
description:
|
|
4750
4751
|
"Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
4751
4752
|
type: 'boolean',
|
|
4753
|
+
'x-deprecated':
|
|
4754
|
+
"Use 'thermostat_schedule.is_override_allowed'",
|
|
4752
4755
|
},
|
|
4753
4756
|
name: {
|
|
4754
4757
|
default: null,
|
|
@@ -4841,9 +4844,12 @@ export default {
|
|
|
4841
4844
|
type: 'string',
|
|
4842
4845
|
},
|
|
4843
4846
|
manual_override_allowed: {
|
|
4847
|
+
deprecated: true,
|
|
4844
4848
|
description:
|
|
4845
4849
|
"Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
4846
4850
|
type: 'boolean',
|
|
4851
|
+
'x-deprecated':
|
|
4852
|
+
"Use 'thermostat_schedule.is_override_allowed'",
|
|
4847
4853
|
},
|
|
4848
4854
|
name: {
|
|
4849
4855
|
default: null,
|
|
@@ -4914,9 +4920,12 @@ export default {
|
|
|
4914
4920
|
type: 'string',
|
|
4915
4921
|
},
|
|
4916
4922
|
manual_override_allowed: {
|
|
4923
|
+
deprecated: true,
|
|
4917
4924
|
description:
|
|
4918
4925
|
"Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
4919
4926
|
type: 'boolean',
|
|
4927
|
+
'x-deprecated':
|
|
4928
|
+
"Use 'thermostat_schedule.is_override_allowed'",
|
|
4920
4929
|
},
|
|
4921
4930
|
name: {
|
|
4922
4931
|
default: null,
|
|
@@ -15907,11 +15916,7 @@ export default {
|
|
|
15907
15916
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
15908
15917
|
type: 'string',
|
|
15909
15918
|
},
|
|
15910
|
-
manual_override_allowed: {
|
|
15911
|
-
description:
|
|
15912
|
-
"Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
15913
|
-
type: 'boolean',
|
|
15914
|
-
},
|
|
15919
|
+
manual_override_allowed: { default: true, type: 'boolean' },
|
|
15915
15920
|
name: {
|
|
15916
15921
|
default: null,
|
|
15917
15922
|
description:
|
|
@@ -15920,11 +15925,7 @@ export default {
|
|
|
15920
15925
|
type: 'string',
|
|
15921
15926
|
},
|
|
15922
15927
|
},
|
|
15923
|
-
required: [
|
|
15924
|
-
'device_id',
|
|
15925
|
-
'climate_preset_key',
|
|
15926
|
-
'manual_override_allowed',
|
|
15927
|
-
],
|
|
15928
|
+
required: ['device_id', 'climate_preset_key'],
|
|
15928
15929
|
type: 'object',
|
|
15929
15930
|
},
|
|
15930
15931
|
},
|
|
@@ -17378,9 +17379,12 @@ export default {
|
|
|
17378
17379
|
type: 'string',
|
|
17379
17380
|
},
|
|
17380
17381
|
manual_override_allowed: {
|
|
17382
|
+
deprecated: true,
|
|
17381
17383
|
description:
|
|
17382
17384
|
"Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
17383
17385
|
type: 'boolean',
|
|
17386
|
+
'x-deprecated':
|
|
17387
|
+
"Use 'thermostat_schedule.is_override_allowed'",
|
|
17384
17388
|
},
|
|
17385
17389
|
name: {
|
|
17386
17390
|
default: null,
|
|
@@ -17482,9 +17486,12 @@ export default {
|
|
|
17482
17486
|
type: 'string',
|
|
17483
17487
|
},
|
|
17484
17488
|
manual_override_allowed: {
|
|
17489
|
+
deprecated: true,
|
|
17485
17490
|
description:
|
|
17486
17491
|
"Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
17487
17492
|
type: 'boolean',
|
|
17493
|
+
'x-deprecated':
|
|
17494
|
+
"Use 'thermostat_schedule.is_override_allowed'",
|
|
17488
17495
|
},
|
|
17489
17496
|
name: {
|
|
17490
17497
|
default: null,
|