@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
package/dist/connect.d.cts
CHANGED
|
@@ -15226,8 +15226,10 @@ declare const _default: {
|
|
|
15226
15226
|
type: string;
|
|
15227
15227
|
};
|
|
15228
15228
|
manual_override_allowed: {
|
|
15229
|
+
deprecated: boolean;
|
|
15229
15230
|
description: string;
|
|
15230
15231
|
type: string;
|
|
15232
|
+
'x-deprecated': string;
|
|
15231
15233
|
};
|
|
15232
15234
|
name: {
|
|
15233
15235
|
default: null;
|
|
@@ -15304,8 +15306,10 @@ declare const _default: {
|
|
|
15304
15306
|
type: string;
|
|
15305
15307
|
};
|
|
15306
15308
|
manual_override_allowed: {
|
|
15309
|
+
deprecated: boolean;
|
|
15307
15310
|
description: string;
|
|
15308
15311
|
type: string;
|
|
15312
|
+
'x-deprecated': string;
|
|
15309
15313
|
};
|
|
15310
15314
|
name: {
|
|
15311
15315
|
default: null;
|
|
@@ -15366,8 +15370,10 @@ declare const _default: {
|
|
|
15366
15370
|
type: string;
|
|
15367
15371
|
};
|
|
15368
15372
|
manual_override_allowed: {
|
|
15373
|
+
deprecated: boolean;
|
|
15369
15374
|
description: string;
|
|
15370
15375
|
type: string;
|
|
15376
|
+
'x-deprecated': string;
|
|
15371
15377
|
};
|
|
15372
15378
|
name: {
|
|
15373
15379
|
default: null;
|
|
@@ -28106,7 +28112,7 @@ declare const _default: {
|
|
|
28106
28112
|
type: string;
|
|
28107
28113
|
};
|
|
28108
28114
|
manual_override_allowed: {
|
|
28109
|
-
|
|
28115
|
+
default: boolean;
|
|
28110
28116
|
type: string;
|
|
28111
28117
|
};
|
|
28112
28118
|
name: {
|
|
@@ -29698,8 +29704,10 @@ declare const _default: {
|
|
|
29698
29704
|
type: string;
|
|
29699
29705
|
};
|
|
29700
29706
|
manual_override_allowed: {
|
|
29707
|
+
deprecated: boolean;
|
|
29701
29708
|
description: string;
|
|
29702
29709
|
type: string;
|
|
29710
|
+
'x-deprecated': string;
|
|
29703
29711
|
};
|
|
29704
29712
|
name: {
|
|
29705
29713
|
default: null;
|
|
@@ -29805,8 +29813,10 @@ declare const _default: {
|
|
|
29805
29813
|
type: string;
|
|
29806
29814
|
};
|
|
29807
29815
|
manual_override_allowed: {
|
|
29816
|
+
deprecated: boolean;
|
|
29808
29817
|
description: string;
|
|
29809
29818
|
type: string;
|
|
29819
|
+
'x-deprecated': string;
|
|
29810
29820
|
};
|
|
29811
29821
|
name: {
|
|
29812
29822
|
default: null;
|
|
@@ -41822,7 +41832,8 @@ interface Routes {
|
|
|
41822
41832
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
41823
41833
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
41824
41834
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
41825
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
41835
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
41836
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
41826
41837
|
manual_override_allowed?: boolean | undefined;
|
|
41827
41838
|
} | undefined;
|
|
41828
41839
|
/**
|
|
@@ -41850,7 +41861,8 @@ interface Routes {
|
|
|
41850
41861
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
41851
41862
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
41852
41863
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
41853
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
41864
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
41865
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
41854
41866
|
manual_override_allowed?: boolean | undefined;
|
|
41855
41867
|
} | undefined;
|
|
41856
41868
|
available_climate_presets?: Array<{
|
|
@@ -41876,7 +41888,8 @@ interface Routes {
|
|
|
41876
41888
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
41877
41889
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
41878
41890
|
heating_set_point_fahrenheit?: number | undefined;
|
|
41879
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
41891
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
41892
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
41880
41893
|
manual_override_allowed: boolean;
|
|
41881
41894
|
}> | undefined;
|
|
41882
41895
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -42369,7 +42382,8 @@ interface Routes {
|
|
|
42369
42382
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
42370
42383
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
42371
42384
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
42372
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
42385
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
42386
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
42373
42387
|
manual_override_allowed?: boolean | undefined;
|
|
42374
42388
|
} | undefined;
|
|
42375
42389
|
/**
|
|
@@ -42397,7 +42411,8 @@ interface Routes {
|
|
|
42397
42411
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
42398
42412
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
42399
42413
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
42400
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
42414
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
42415
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
42401
42416
|
manual_override_allowed?: boolean | undefined;
|
|
42402
42417
|
} | undefined;
|
|
42403
42418
|
available_climate_presets?: Array<{
|
|
@@ -42423,7 +42438,8 @@ interface Routes {
|
|
|
42423
42438
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
42424
42439
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
42425
42440
|
heating_set_point_fahrenheit?: number | undefined;
|
|
42426
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
42441
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
42442
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
42427
42443
|
manual_override_allowed: boolean;
|
|
42428
42444
|
}> | undefined;
|
|
42429
42445
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -43319,7 +43335,8 @@ interface Routes {
|
|
|
43319
43335
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43320
43336
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43321
43337
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43322
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43338
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43339
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
43323
43340
|
manual_override_allowed?: boolean | undefined;
|
|
43324
43341
|
} | undefined;
|
|
43325
43342
|
/**
|
|
@@ -43347,7 +43364,8 @@ interface Routes {
|
|
|
43347
43364
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43348
43365
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43349
43366
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43350
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43367
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43368
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
43351
43369
|
manual_override_allowed?: boolean | undefined;
|
|
43352
43370
|
} | undefined;
|
|
43353
43371
|
available_climate_presets?: Array<{
|
|
@@ -43373,7 +43391,8 @@ interface Routes {
|
|
|
43373
43391
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
43374
43392
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43375
43393
|
heating_set_point_fahrenheit?: number | undefined;
|
|
43376
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43394
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43395
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
43377
43396
|
manual_override_allowed: boolean;
|
|
43378
43397
|
}> | undefined;
|
|
43379
43398
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -43829,7 +43848,8 @@ interface Routes {
|
|
|
43829
43848
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43830
43849
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43831
43850
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43832
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43851
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43852
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
43833
43853
|
manual_override_allowed?: boolean | undefined;
|
|
43834
43854
|
} | undefined;
|
|
43835
43855
|
/**
|
|
@@ -43857,7 +43877,8 @@ interface Routes {
|
|
|
43857
43877
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43858
43878
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43859
43879
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43860
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43880
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43881
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
43861
43882
|
manual_override_allowed?: boolean | undefined;
|
|
43862
43883
|
} | undefined;
|
|
43863
43884
|
available_climate_presets?: Array<{
|
|
@@ -43883,7 +43904,8 @@ interface Routes {
|
|
|
43883
43904
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
43884
43905
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43885
43906
|
heating_set_point_fahrenheit?: number | undefined;
|
|
43886
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43907
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
43908
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
43887
43909
|
manual_override_allowed: boolean;
|
|
43888
43910
|
}> | undefined;
|
|
43889
43911
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -44376,7 +44398,8 @@ interface Routes {
|
|
|
44376
44398
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44377
44399
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44378
44400
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44379
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44401
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44402
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
44380
44403
|
manual_override_allowed?: boolean | undefined;
|
|
44381
44404
|
} | undefined;
|
|
44382
44405
|
/**
|
|
@@ -44404,7 +44427,8 @@ interface Routes {
|
|
|
44404
44427
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44405
44428
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44406
44429
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44407
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44430
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44431
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
44408
44432
|
manual_override_allowed?: boolean | undefined;
|
|
44409
44433
|
} | undefined;
|
|
44410
44434
|
available_climate_presets?: Array<{
|
|
@@ -44430,7 +44454,8 @@ interface Routes {
|
|
|
44430
44454
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
44431
44455
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44432
44456
|
heating_set_point_fahrenheit?: number | undefined;
|
|
44433
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44457
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44458
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
44434
44459
|
manual_override_allowed: boolean;
|
|
44435
44460
|
}> | undefined;
|
|
44436
44461
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -44886,7 +44911,8 @@ interface Routes {
|
|
|
44886
44911
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44887
44912
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44888
44913
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44889
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44914
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44915
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
44890
44916
|
manual_override_allowed?: boolean | undefined;
|
|
44891
44917
|
} | undefined;
|
|
44892
44918
|
/**
|
|
@@ -44914,7 +44940,8 @@ interface Routes {
|
|
|
44914
44940
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44915
44941
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44916
44942
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44917
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44943
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44944
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
44918
44945
|
manual_override_allowed?: boolean | undefined;
|
|
44919
44946
|
} | undefined;
|
|
44920
44947
|
available_climate_presets?: Array<{
|
|
@@ -44940,7 +44967,8 @@ interface Routes {
|
|
|
44940
44967
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
44941
44968
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44942
44969
|
heating_set_point_fahrenheit?: number | undefined;
|
|
44943
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44970
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
44971
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
44944
44972
|
manual_override_allowed: boolean;
|
|
44945
44973
|
}> | undefined;
|
|
44946
44974
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -46933,7 +46961,8 @@ interface Routes {
|
|
|
46933
46961
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
46934
46962
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
46935
46963
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
46936
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
46964
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
46965
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
46937
46966
|
manual_override_allowed?: boolean | undefined;
|
|
46938
46967
|
} | undefined;
|
|
46939
46968
|
/**
|
|
@@ -46961,7 +46990,8 @@ interface Routes {
|
|
|
46961
46990
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
46962
46991
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
46963
46992
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
46964
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
46993
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
46994
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
46965
46995
|
manual_override_allowed?: boolean | undefined;
|
|
46966
46996
|
} | undefined;
|
|
46967
46997
|
available_climate_presets?: Array<{
|
|
@@ -46987,7 +47017,8 @@ interface Routes {
|
|
|
46987
47017
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
46988
47018
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
46989
47019
|
heating_set_point_fahrenheit?: number | undefined;
|
|
46990
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
47020
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
47021
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
46991
47022
|
manual_override_allowed: boolean;
|
|
46992
47023
|
}> | undefined;
|
|
46993
47024
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -47443,7 +47474,8 @@ interface Routes {
|
|
|
47443
47474
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
47444
47475
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
47445
47476
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
47446
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
47477
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
47478
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
47447
47479
|
manual_override_allowed?: boolean | undefined;
|
|
47448
47480
|
} | undefined;
|
|
47449
47481
|
/**
|
|
@@ -47471,7 +47503,8 @@ interface Routes {
|
|
|
47471
47503
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
47472
47504
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
47473
47505
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
47474
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
47506
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
47507
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
47475
47508
|
manual_override_allowed?: boolean | undefined;
|
|
47476
47509
|
} | undefined;
|
|
47477
47510
|
available_climate_presets?: Array<{
|
|
@@ -47497,7 +47530,8 @@ interface Routes {
|
|
|
47497
47530
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
47498
47531
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
47499
47532
|
heating_set_point_fahrenheit?: number | undefined;
|
|
47500
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
47533
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
47534
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
47501
47535
|
manual_override_allowed: boolean;
|
|
47502
47536
|
}> | undefined;
|
|
47503
47537
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -51512,6 +51546,7 @@ interface Routes {
|
|
|
51512
51546
|
jsonBody: {
|
|
51513
51547
|
/** ID of the desired thermostat device. */
|
|
51514
51548
|
device_id: string;
|
|
51549
|
+
manual_override_allowed?: boolean;
|
|
51515
51550
|
/** Unique key to identify the climate preset. */
|
|
51516
51551
|
climate_preset_key: string;
|
|
51517
51552
|
/** User-friendly name to identify the climate preset. */
|
|
@@ -51528,8 +51563,6 @@ interface Routes {
|
|
|
51528
51563
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
51529
51564
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
51530
51565
|
heating_set_point_fahrenheit?: number | undefined;
|
|
51531
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
51532
|
-
manual_override_allowed: boolean;
|
|
51533
51566
|
};
|
|
51534
51567
|
commonParams: {};
|
|
51535
51568
|
formData: {};
|
|
@@ -51931,7 +51964,8 @@ interface Routes {
|
|
|
51931
51964
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
51932
51965
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
51933
51966
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
51934
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
51967
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
51968
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
51935
51969
|
manual_override_allowed?: boolean | undefined;
|
|
51936
51970
|
} | undefined;
|
|
51937
51971
|
/**
|
|
@@ -51959,7 +51993,8 @@ interface Routes {
|
|
|
51959
51993
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
51960
51994
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
51961
51995
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
51962
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
51996
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
51997
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
51963
51998
|
manual_override_allowed?: boolean | undefined;
|
|
51964
51999
|
} | undefined;
|
|
51965
52000
|
available_climate_presets?: Array<{
|
|
@@ -51985,7 +52020,8 @@ interface Routes {
|
|
|
51985
52020
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
51986
52021
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
51987
52022
|
heating_set_point_fahrenheit?: number | undefined;
|
|
51988
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
52023
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
52024
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
51989
52025
|
manual_override_allowed: boolean;
|
|
51990
52026
|
}> | undefined;
|
|
51991
52027
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -53960,7 +53996,8 @@ interface Routes {
|
|
|
53960
53996
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
53961
53997
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
53962
53998
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
53963
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
53999
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54000
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
53964
54001
|
manual_override_allowed?: boolean | undefined;
|
|
53965
54002
|
} | undefined;
|
|
53966
54003
|
/**
|
|
@@ -53988,7 +54025,8 @@ interface Routes {
|
|
|
53988
54025
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
53989
54026
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
53990
54027
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
53991
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54028
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54029
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
53992
54030
|
manual_override_allowed?: boolean | undefined;
|
|
53993
54031
|
} | undefined;
|
|
53994
54032
|
available_climate_presets?: Array<{
|
|
@@ -54014,7 +54052,8 @@ interface Routes {
|
|
|
54014
54052
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
54015
54053
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
54016
54054
|
heating_set_point_fahrenheit?: number | undefined;
|
|
54017
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54055
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54056
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
54018
54057
|
manual_override_allowed: boolean;
|
|
54019
54058
|
}> | undefined;
|
|
54020
54059
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -54470,7 +54509,8 @@ interface Routes {
|
|
|
54470
54509
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
54471
54510
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
54472
54511
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
54473
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54512
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54513
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
54474
54514
|
manual_override_allowed?: boolean | undefined;
|
|
54475
54515
|
} | undefined;
|
|
54476
54516
|
/**
|
|
@@ -54498,7 +54538,8 @@ interface Routes {
|
|
|
54498
54538
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
54499
54539
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
54500
54540
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
54501
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54541
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54542
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
54502
54543
|
manual_override_allowed?: boolean | undefined;
|
|
54503
54544
|
} | undefined;
|
|
54504
54545
|
available_climate_presets?: Array<{
|
|
@@ -54524,7 +54565,8 @@ interface Routes {
|
|
|
54524
54565
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
54525
54566
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
54526
54567
|
heating_set_point_fahrenheit?: number | undefined;
|
|
54527
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54568
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
54569
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
54528
54570
|
manual_override_allowed: boolean;
|
|
54529
54571
|
}> | undefined;
|
|
54530
54572
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -56299,7 +56341,8 @@ interface Routes {
|
|
|
56299
56341
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
56300
56342
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
56301
56343
|
heating_set_point_fahrenheit?: number | undefined;
|
|
56302
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
56344
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
56345
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
56303
56346
|
manual_override_allowed: boolean;
|
|
56304
56347
|
};
|
|
56305
56348
|
commonParams: {};
|
|
@@ -56864,7 +56907,8 @@ interface Routes {
|
|
|
56864
56907
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
56865
56908
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
56866
56909
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
56867
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
56910
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
56911
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
56868
56912
|
manual_override_allowed?: boolean | undefined;
|
|
56869
56913
|
} | undefined;
|
|
56870
56914
|
/**
|
|
@@ -56892,7 +56936,8 @@ interface Routes {
|
|
|
56892
56936
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
56893
56937
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
56894
56938
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
56895
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
56939
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
56940
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
56896
56941
|
manual_override_allowed?: boolean | undefined;
|
|
56897
56942
|
} | undefined;
|
|
56898
56943
|
available_climate_presets?: Array<{
|
|
@@ -56918,7 +56963,8 @@ interface Routes {
|
|
|
56918
56963
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
56919
56964
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
56920
56965
|
heating_set_point_fahrenheit?: number | undefined;
|
|
56921
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
56966
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
56967
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
56922
56968
|
manual_override_allowed: boolean;
|
|
56923
56969
|
}> | undefined;
|
|
56924
56970
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -57376,7 +57422,8 @@ interface Routes {
|
|
|
57376
57422
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
57377
57423
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
57378
57424
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
57379
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
57425
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
57426
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
57380
57427
|
manual_override_allowed?: boolean | undefined;
|
|
57381
57428
|
} | undefined;
|
|
57382
57429
|
/**
|
|
@@ -57404,7 +57451,8 @@ interface Routes {
|
|
|
57404
57451
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
57405
57452
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
57406
57453
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
57407
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
57454
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
57455
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
57408
57456
|
manual_override_allowed?: boolean | undefined;
|
|
57409
57457
|
} | undefined;
|
|
57410
57458
|
available_climate_presets?: Array<{
|
|
@@ -57430,7 +57478,8 @@ interface Routes {
|
|
|
57430
57478
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
57431
57479
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
57432
57480
|
heating_set_point_fahrenheit?: number | undefined;
|
|
57433
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
57481
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
57482
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
57434
57483
|
manual_override_allowed: boolean;
|
|
57435
57484
|
}> | undefined;
|
|
57436
57485
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -39,9 +39,11 @@ export const climate_preset = z.object({
|
|
|
39
39
|
.number()
|
|
40
40
|
.optional()
|
|
41
41
|
.describe('Temperature to which the thermostat should heat (in °F).'),
|
|
42
|
-
manual_override_allowed: z
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
manual_override_allowed: z.boolean().describe(`
|
|
43
|
+
---
|
|
44
|
+
deprecated: Use 'thermostat_schedule.is_override_allowed'
|
|
45
|
+
---
|
|
46
|
+
Indicates whether a person at the thermostat can change the thermostat's settings.`),
|
|
45
47
|
});
|
|
46
48
|
export const climate_setting = climate_preset.partial();
|
|
47
49
|
//# sourceMappingURL=climate-preset.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"climate-preset.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/climate-preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AAEhE,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,kBAAkB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,QAAQ,EAAE,CAAC;SACR,OAAO,EAAE;SACT,QAAQ,CAAC,0DAA0D,CAAC;IACvE,UAAU,EAAE,CAAC;SACV,OAAO,EAAE;SACT,QAAQ,CAAC,2DAA2D,CAAC;IACxE,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;IACjE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;IACzE,gBAAgB,EAAE,gBAAgB;SAC/B,QAAQ,EAAE;SACV,QAAQ,CACP,iEAAiE,CAClE;IACH,iBAAiB,EAAE,iBAAiB;SACjC,QAAQ,EAAE;SACV,QAAQ,CACP,oLAAoL,CACrL;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0DAA0D,CAAC;IACvE,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0DAA0D,CAAC;IACvE,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0DAA0D,CAAC;IACvE,uBAAuB,EAAE,CAAC
|
|
1
|
+
{"version":3,"file":"climate-preset.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/climate-preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AAEhE,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,kBAAkB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,QAAQ,EAAE,CAAC;SACR,OAAO,EAAE;SACT,QAAQ,CAAC,0DAA0D,CAAC;IACvE,UAAU,EAAE,CAAC;SACV,OAAO,EAAE;SACT,QAAQ,CAAC,2DAA2D,CAAC;IACxE,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;IACjE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;IACzE,gBAAgB,EAAE,gBAAgB;SAC/B,QAAQ,EAAE;SACV,QAAQ,CACP,iEAAiE,CAClE;IACH,iBAAiB,EAAE,iBAAiB;SACjC,QAAQ,EAAE;SACV,QAAQ,CACP,oLAAoL,CACrL;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0DAA0D,CAAC;IACvE,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0DAA0D,CAAC;IACvE,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0DAA0D,CAAC;IACvE,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAC3C;;;;yFAIqF,CACtF;CACF,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,eAAe,GAAG,cAAc,CAAC,OAAO,EAAE,CAAA"}
|
|
@@ -3362,8 +3362,10 @@ declare const _default: {
|
|
|
3362
3362
|
type: string;
|
|
3363
3363
|
};
|
|
3364
3364
|
manual_override_allowed: {
|
|
3365
|
+
deprecated: boolean;
|
|
3365
3366
|
description: string;
|
|
3366
3367
|
type: string;
|
|
3368
|
+
'x-deprecated': string;
|
|
3367
3369
|
};
|
|
3368
3370
|
name: {
|
|
3369
3371
|
default: null;
|
|
@@ -3440,8 +3442,10 @@ declare const _default: {
|
|
|
3440
3442
|
type: string;
|
|
3441
3443
|
};
|
|
3442
3444
|
manual_override_allowed: {
|
|
3445
|
+
deprecated: boolean;
|
|
3443
3446
|
description: string;
|
|
3444
3447
|
type: string;
|
|
3448
|
+
'x-deprecated': string;
|
|
3445
3449
|
};
|
|
3446
3450
|
name: {
|
|
3447
3451
|
default: null;
|
|
@@ -3502,8 +3506,10 @@ declare const _default: {
|
|
|
3502
3506
|
type: string;
|
|
3503
3507
|
};
|
|
3504
3508
|
manual_override_allowed: {
|
|
3509
|
+
deprecated: boolean;
|
|
3505
3510
|
description: string;
|
|
3506
3511
|
type: string;
|
|
3512
|
+
'x-deprecated': string;
|
|
3507
3513
|
};
|
|
3508
3514
|
name: {
|
|
3509
3515
|
default: null;
|
|
@@ -16242,7 +16248,7 @@ declare const _default: {
|
|
|
16242
16248
|
type: string;
|
|
16243
16249
|
};
|
|
16244
16250
|
manual_override_allowed: {
|
|
16245
|
-
|
|
16251
|
+
default: boolean;
|
|
16246
16252
|
type: string;
|
|
16247
16253
|
};
|
|
16248
16254
|
name: {
|
|
@@ -17834,8 +17840,10 @@ declare const _default: {
|
|
|
17834
17840
|
type: string;
|
|
17835
17841
|
};
|
|
17836
17842
|
manual_override_allowed: {
|
|
17843
|
+
deprecated: boolean;
|
|
17837
17844
|
description: string;
|
|
17838
17845
|
type: string;
|
|
17846
|
+
'x-deprecated': string;
|
|
17839
17847
|
};
|
|
17840
17848
|
name: {
|
|
17841
17849
|
default: null;
|
|
@@ -17941,8 +17949,10 @@ declare const _default: {
|
|
|
17941
17949
|
type: string;
|
|
17942
17950
|
};
|
|
17943
17951
|
manual_override_allowed: {
|
|
17952
|
+
deprecated: boolean;
|
|
17944
17953
|
description: string;
|
|
17945
17954
|
type: string;
|
|
17955
|
+
'x-deprecated': string;
|
|
17946
17956
|
};
|
|
17947
17957
|
name: {
|
|
17948
17958
|
default: null;
|