@seamapi/types 1.292.2 → 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 +42 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +161 -43
- package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js → assa-abloy-vostio.js} +1 -1
- package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js.map → assa-abloy-vostio.js.map} +1 -1
- package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js → dormakaba-community.js} +1 -1
- package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js.map → dormakaba-community.js.map} +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +2 -2
- package/lib/seam/connect/models/acs/metadata/index.js +2 -2
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -0
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- 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/models/thermostats/thermostat-schedule.d.ts +3 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +8 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +31 -1
- package/lib/seam/connect/openapi.js +25 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +115 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/index.ts +2 -2
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +7 -5
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +32 -10
- package/src/lib/seam/connect/route-types.ts +115 -42
- /package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.d.ts → assa-abloy-vostio.d.ts} +0 -0
- /package/lib/seam/connect/models/acs/metadata/{dormakaba_community.d.ts → dormakaba-community.d.ts} +0 -0
- /package/src/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.ts → assa-abloy-vostio.ts} +0 -0
- /package/src/lib/seam/connect/models/acs/metadata/{dormakaba_community.ts → dormakaba-community.ts} +0 -0
package/dist/connect.d.cts
CHANGED
|
@@ -6335,6 +6335,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6335
6335
|
climate_preset_key: z.ZodString;
|
|
6336
6336
|
max_override_period_minutes: z.ZodNumber;
|
|
6337
6337
|
starts_at: z.ZodString;
|
|
6338
|
+
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
6338
6339
|
ends_at: z.ZodString;
|
|
6339
6340
|
created_at: z.ZodString;
|
|
6340
6341
|
errors: z.ZodAny;
|
|
@@ -6348,6 +6349,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6348
6349
|
ends_at: string;
|
|
6349
6350
|
errors?: any;
|
|
6350
6351
|
name?: string | undefined;
|
|
6352
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
6351
6353
|
}, {
|
|
6352
6354
|
created_at: string;
|
|
6353
6355
|
climate_preset_key: string;
|
|
@@ -6358,6 +6360,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6358
6360
|
ends_at: string;
|
|
6359
6361
|
errors?: any;
|
|
6360
6362
|
name?: string | undefined;
|
|
6363
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
6361
6364
|
}>>>>;
|
|
6362
6365
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
6363
6366
|
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6449,6 +6452,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6449
6452
|
ends_at: string;
|
|
6450
6453
|
errors?: any;
|
|
6451
6454
|
name?: string | undefined;
|
|
6455
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
6452
6456
|
} | null | undefined;
|
|
6453
6457
|
min_cooling_set_point_celsius?: number | undefined;
|
|
6454
6458
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -6530,6 +6534,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6530
6534
|
ends_at: string;
|
|
6531
6535
|
errors?: any;
|
|
6532
6536
|
name?: string | undefined;
|
|
6537
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
6533
6538
|
} | null | undefined;
|
|
6534
6539
|
min_cooling_set_point_celsius?: number | undefined;
|
|
6535
6540
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -6985,6 +6990,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6985
6990
|
ends_at: string;
|
|
6986
6991
|
errors?: any;
|
|
6987
6992
|
name?: string | undefined;
|
|
6993
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
6988
6994
|
} | null | undefined;
|
|
6989
6995
|
min_cooling_set_point_celsius?: number | undefined;
|
|
6990
6996
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -7392,6 +7398,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7392
7398
|
ends_at: string;
|
|
7393
7399
|
errors?: any;
|
|
7394
7400
|
name?: string | undefined;
|
|
7401
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
7395
7402
|
} | null | undefined;
|
|
7396
7403
|
min_cooling_set_point_celsius?: number | undefined;
|
|
7397
7404
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -9103,6 +9110,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9103
9110
|
climate_preset_key: z.ZodString;
|
|
9104
9111
|
max_override_period_minutes: z.ZodNumber;
|
|
9105
9112
|
starts_at: z.ZodString;
|
|
9113
|
+
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
9106
9114
|
ends_at: z.ZodString;
|
|
9107
9115
|
created_at: z.ZodString;
|
|
9108
9116
|
errors: z.ZodAny;
|
|
@@ -9116,6 +9124,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9116
9124
|
ends_at: string;
|
|
9117
9125
|
errors?: any;
|
|
9118
9126
|
name?: string | undefined;
|
|
9127
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
9119
9128
|
}, {
|
|
9120
9129
|
created_at: string;
|
|
9121
9130
|
climate_preset_key: string;
|
|
@@ -9126,6 +9135,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9126
9135
|
ends_at: string;
|
|
9127
9136
|
errors?: any;
|
|
9128
9137
|
name?: string | undefined;
|
|
9138
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
9129
9139
|
}>>>>;
|
|
9130
9140
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
9131
9141
|
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9217,6 +9227,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9217
9227
|
ends_at: string;
|
|
9218
9228
|
errors?: any;
|
|
9219
9229
|
name?: string | undefined;
|
|
9230
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
9220
9231
|
} | null | undefined;
|
|
9221
9232
|
min_cooling_set_point_celsius?: number | undefined;
|
|
9222
9233
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -9298,6 +9309,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9298
9309
|
ends_at: string;
|
|
9299
9310
|
errors?: any;
|
|
9300
9311
|
name?: string | undefined;
|
|
9312
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
9301
9313
|
} | null | undefined;
|
|
9302
9314
|
min_cooling_set_point_celsius?: number | undefined;
|
|
9303
9315
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -11720,6 +11732,7 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
11720
11732
|
climate_preset_key: z.ZodString;
|
|
11721
11733
|
max_override_period_minutes: z.ZodNumber;
|
|
11722
11734
|
starts_at: z.ZodString;
|
|
11735
|
+
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
11723
11736
|
ends_at: z.ZodString;
|
|
11724
11737
|
created_at: z.ZodString;
|
|
11725
11738
|
errors: z.ZodAny;
|
|
@@ -11733,6 +11746,7 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
11733
11746
|
ends_at: string;
|
|
11734
11747
|
errors?: any;
|
|
11735
11748
|
name?: string | undefined;
|
|
11749
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
11736
11750
|
}, {
|
|
11737
11751
|
created_at: string;
|
|
11738
11752
|
climate_preset_key: string;
|
|
@@ -11743,6 +11757,7 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
11743
11757
|
ends_at: string;
|
|
11744
11758
|
errors?: any;
|
|
11745
11759
|
name?: string | undefined;
|
|
11760
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
11746
11761
|
}>;
|
|
11747
11762
|
type ThermostatSchedule = z.infer<typeof thermostat_schedule>;
|
|
11748
11763
|
|
|
@@ -15152,6 +15167,11 @@ declare const _default: {
|
|
|
15152
15167
|
format: string;
|
|
15153
15168
|
type: string;
|
|
15154
15169
|
};
|
|
15170
|
+
unstable_is_override_allowed: {
|
|
15171
|
+
description: string;
|
|
15172
|
+
type: string;
|
|
15173
|
+
'x-undocumented': string;
|
|
15174
|
+
};
|
|
15155
15175
|
};
|
|
15156
15176
|
required: string[];
|
|
15157
15177
|
type: string;
|
|
@@ -15206,8 +15226,10 @@ declare const _default: {
|
|
|
15206
15226
|
type: string;
|
|
15207
15227
|
};
|
|
15208
15228
|
manual_override_allowed: {
|
|
15229
|
+
deprecated: boolean;
|
|
15209
15230
|
description: string;
|
|
15210
15231
|
type: string;
|
|
15232
|
+
'x-deprecated': string;
|
|
15211
15233
|
};
|
|
15212
15234
|
name: {
|
|
15213
15235
|
default: null;
|
|
@@ -15284,8 +15306,10 @@ declare const _default: {
|
|
|
15284
15306
|
type: string;
|
|
15285
15307
|
};
|
|
15286
15308
|
manual_override_allowed: {
|
|
15309
|
+
deprecated: boolean;
|
|
15287
15310
|
description: string;
|
|
15288
15311
|
type: string;
|
|
15312
|
+
'x-deprecated': string;
|
|
15289
15313
|
};
|
|
15290
15314
|
name: {
|
|
15291
15315
|
default: null;
|
|
@@ -15346,8 +15370,10 @@ declare const _default: {
|
|
|
15346
15370
|
type: string;
|
|
15347
15371
|
};
|
|
15348
15372
|
manual_override_allowed: {
|
|
15373
|
+
deprecated: boolean;
|
|
15349
15374
|
description: string;
|
|
15350
15375
|
type: string;
|
|
15376
|
+
'x-deprecated': string;
|
|
15351
15377
|
};
|
|
15352
15378
|
name: {
|
|
15353
15379
|
default: null;
|
|
@@ -15975,6 +16001,11 @@ declare const _default: {
|
|
|
15975
16001
|
format: string;
|
|
15976
16002
|
type: string;
|
|
15977
16003
|
};
|
|
16004
|
+
unstable_is_override_allowed: {
|
|
16005
|
+
description: string;
|
|
16006
|
+
type: string;
|
|
16007
|
+
'x-undocumented': string;
|
|
16008
|
+
};
|
|
15978
16009
|
};
|
|
15979
16010
|
required: string[];
|
|
15980
16011
|
type: string;
|
|
@@ -28081,7 +28112,7 @@ declare const _default: {
|
|
|
28081
28112
|
type: string;
|
|
28082
28113
|
};
|
|
28083
28114
|
manual_override_allowed: {
|
|
28084
|
-
|
|
28115
|
+
default: boolean;
|
|
28085
28116
|
type: string;
|
|
28086
28117
|
};
|
|
28087
28118
|
name: {
|
|
@@ -28764,6 +28795,10 @@ declare const _default: {
|
|
|
28764
28795
|
description: string;
|
|
28765
28796
|
type: string;
|
|
28766
28797
|
};
|
|
28798
|
+
is_override_allowed: {
|
|
28799
|
+
default: boolean;
|
|
28800
|
+
type: string;
|
|
28801
|
+
};
|
|
28767
28802
|
max_override_period_minutes: {
|
|
28768
28803
|
default: number;
|
|
28769
28804
|
description: string;
|
|
@@ -29096,6 +29131,9 @@ declare const _default: {
|
|
|
29096
29131
|
description: string;
|
|
29097
29132
|
type: string;
|
|
29098
29133
|
};
|
|
29134
|
+
is_override_allowed: {
|
|
29135
|
+
type: string;
|
|
29136
|
+
};
|
|
29099
29137
|
max_override_period_minutes: {
|
|
29100
29138
|
description: string;
|
|
29101
29139
|
minimum: number;
|
|
@@ -29188,6 +29226,9 @@ declare const _default: {
|
|
|
29188
29226
|
description: string;
|
|
29189
29227
|
type: string;
|
|
29190
29228
|
};
|
|
29229
|
+
is_override_allowed: {
|
|
29230
|
+
type: string;
|
|
29231
|
+
};
|
|
29191
29232
|
max_override_period_minutes: {
|
|
29192
29233
|
description: string;
|
|
29193
29234
|
minimum: number;
|
|
@@ -29663,8 +29704,10 @@ declare const _default: {
|
|
|
29663
29704
|
type: string;
|
|
29664
29705
|
};
|
|
29665
29706
|
manual_override_allowed: {
|
|
29707
|
+
deprecated: boolean;
|
|
29666
29708
|
description: string;
|
|
29667
29709
|
type: string;
|
|
29710
|
+
'x-deprecated': string;
|
|
29668
29711
|
};
|
|
29669
29712
|
name: {
|
|
29670
29713
|
default: null;
|
|
@@ -29770,8 +29813,10 @@ declare const _default: {
|
|
|
29770
29813
|
type: string;
|
|
29771
29814
|
};
|
|
29772
29815
|
manual_override_allowed: {
|
|
29816
|
+
deprecated: boolean;
|
|
29773
29817
|
description: string;
|
|
29774
29818
|
type: string;
|
|
29819
|
+
'x-deprecated': string;
|
|
29775
29820
|
};
|
|
29776
29821
|
name: {
|
|
29777
29822
|
default: null;
|
|
@@ -41787,7 +41832,8 @@ interface Routes {
|
|
|
41787
41832
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
41788
41833
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
41789
41834
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
41790
|
-
/** 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' */
|
|
41791
41837
|
manual_override_allowed?: boolean | undefined;
|
|
41792
41838
|
} | undefined;
|
|
41793
41839
|
/**
|
|
@@ -41815,7 +41861,8 @@ interface Routes {
|
|
|
41815
41861
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
41816
41862
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
41817
41863
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
41818
|
-
/** 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' */
|
|
41819
41866
|
manual_override_allowed?: boolean | undefined;
|
|
41820
41867
|
} | undefined;
|
|
41821
41868
|
available_climate_presets?: Array<{
|
|
@@ -41841,7 +41888,8 @@ interface Routes {
|
|
|
41841
41888
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
41842
41889
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
41843
41890
|
heating_set_point_fahrenheit?: number | undefined;
|
|
41844
|
-
/** 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' */
|
|
41845
41893
|
manual_override_allowed: boolean;
|
|
41846
41894
|
}> | undefined;
|
|
41847
41895
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -41859,6 +41907,8 @@ interface Routes {
|
|
|
41859
41907
|
max_override_period_minutes: number;
|
|
41860
41908
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
41861
41909
|
starts_at: string;
|
|
41910
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
41911
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
41862
41912
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
41863
41913
|
ends_at: string;
|
|
41864
41914
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -42332,7 +42382,8 @@ interface Routes {
|
|
|
42332
42382
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
42333
42383
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
42334
42384
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
42335
|
-
/** 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' */
|
|
42336
42387
|
manual_override_allowed?: boolean | undefined;
|
|
42337
42388
|
} | undefined;
|
|
42338
42389
|
/**
|
|
@@ -42360,7 +42411,8 @@ interface Routes {
|
|
|
42360
42411
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
42361
42412
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
42362
42413
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
42363
|
-
/** 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' */
|
|
42364
42416
|
manual_override_allowed?: boolean | undefined;
|
|
42365
42417
|
} | undefined;
|
|
42366
42418
|
available_climate_presets?: Array<{
|
|
@@ -42386,7 +42438,8 @@ interface Routes {
|
|
|
42386
42438
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
42387
42439
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
42388
42440
|
heating_set_point_fahrenheit?: number | undefined;
|
|
42389
|
-
/** 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' */
|
|
42390
42443
|
manual_override_allowed: boolean;
|
|
42391
42444
|
}> | undefined;
|
|
42392
42445
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -42404,6 +42457,8 @@ interface Routes {
|
|
|
42404
42457
|
max_override_period_minutes: number;
|
|
42405
42458
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
42406
42459
|
starts_at: string;
|
|
42460
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
42461
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
42407
42462
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
42408
42463
|
ends_at: string;
|
|
42409
42464
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -43280,7 +43335,8 @@ interface Routes {
|
|
|
43280
43335
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43281
43336
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43282
43337
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43283
|
-
/** 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' */
|
|
43284
43340
|
manual_override_allowed?: boolean | undefined;
|
|
43285
43341
|
} | undefined;
|
|
43286
43342
|
/**
|
|
@@ -43308,7 +43364,8 @@ interface Routes {
|
|
|
43308
43364
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43309
43365
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43310
43366
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43311
|
-
/** 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' */
|
|
43312
43369
|
manual_override_allowed?: boolean | undefined;
|
|
43313
43370
|
} | undefined;
|
|
43314
43371
|
available_climate_presets?: Array<{
|
|
@@ -43334,7 +43391,8 @@ interface Routes {
|
|
|
43334
43391
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
43335
43392
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43336
43393
|
heating_set_point_fahrenheit?: number | undefined;
|
|
43337
|
-
/** 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' */
|
|
43338
43396
|
manual_override_allowed: boolean;
|
|
43339
43397
|
}> | undefined;
|
|
43340
43398
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -43352,6 +43410,8 @@ interface Routes {
|
|
|
43352
43410
|
max_override_period_minutes: number;
|
|
43353
43411
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
43354
43412
|
starts_at: string;
|
|
43413
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
43414
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
43355
43415
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
43356
43416
|
ends_at: string;
|
|
43357
43417
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -43788,7 +43848,8 @@ interface Routes {
|
|
|
43788
43848
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43789
43849
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43790
43850
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43791
|
-
/** 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' */
|
|
43792
43853
|
manual_override_allowed?: boolean | undefined;
|
|
43793
43854
|
} | undefined;
|
|
43794
43855
|
/**
|
|
@@ -43816,7 +43877,8 @@ interface Routes {
|
|
|
43816
43877
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43817
43878
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43818
43879
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
43819
|
-
/** 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' */
|
|
43820
43882
|
manual_override_allowed?: boolean | undefined;
|
|
43821
43883
|
} | undefined;
|
|
43822
43884
|
available_climate_presets?: Array<{
|
|
@@ -43842,7 +43904,8 @@ interface Routes {
|
|
|
43842
43904
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
43843
43905
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
43844
43906
|
heating_set_point_fahrenheit?: number | undefined;
|
|
43845
|
-
/** 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' */
|
|
43846
43909
|
manual_override_allowed: boolean;
|
|
43847
43910
|
}> | undefined;
|
|
43848
43911
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -43860,6 +43923,8 @@ interface Routes {
|
|
|
43860
43923
|
max_override_period_minutes: number;
|
|
43861
43924
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
43862
43925
|
starts_at: string;
|
|
43926
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
43927
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
43863
43928
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
43864
43929
|
ends_at: string;
|
|
43865
43930
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -44333,7 +44398,8 @@ interface Routes {
|
|
|
44333
44398
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44334
44399
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44335
44400
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44336
|
-
/** 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' */
|
|
44337
44403
|
manual_override_allowed?: boolean | undefined;
|
|
44338
44404
|
} | undefined;
|
|
44339
44405
|
/**
|
|
@@ -44361,7 +44427,8 @@ interface Routes {
|
|
|
44361
44427
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44362
44428
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44363
44429
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44364
|
-
/** 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' */
|
|
44365
44432
|
manual_override_allowed?: boolean | undefined;
|
|
44366
44433
|
} | undefined;
|
|
44367
44434
|
available_climate_presets?: Array<{
|
|
@@ -44387,7 +44454,8 @@ interface Routes {
|
|
|
44387
44454
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
44388
44455
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44389
44456
|
heating_set_point_fahrenheit?: number | undefined;
|
|
44390
|
-
/** 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' */
|
|
44391
44459
|
manual_override_allowed: boolean;
|
|
44392
44460
|
}> | undefined;
|
|
44393
44461
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -44405,6 +44473,8 @@ interface Routes {
|
|
|
44405
44473
|
max_override_period_minutes: number;
|
|
44406
44474
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
44407
44475
|
starts_at: string;
|
|
44476
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
44477
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
44408
44478
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
44409
44479
|
ends_at: string;
|
|
44410
44480
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -44841,7 +44911,8 @@ interface Routes {
|
|
|
44841
44911
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44842
44912
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44843
44913
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44844
|
-
/** 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' */
|
|
44845
44916
|
manual_override_allowed?: boolean | undefined;
|
|
44846
44917
|
} | undefined;
|
|
44847
44918
|
/**
|
|
@@ -44869,7 +44940,8 @@ interface Routes {
|
|
|
44869
44940
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44870
44941
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44871
44942
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
44872
|
-
/** 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' */
|
|
44873
44945
|
manual_override_allowed?: boolean | undefined;
|
|
44874
44946
|
} | undefined;
|
|
44875
44947
|
available_climate_presets?: Array<{
|
|
@@ -44895,7 +44967,8 @@ interface Routes {
|
|
|
44895
44967
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
44896
44968
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
44897
44969
|
heating_set_point_fahrenheit?: number | undefined;
|
|
44898
|
-
/** 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' */
|
|
44899
44972
|
manual_override_allowed: boolean;
|
|
44900
44973
|
}> | undefined;
|
|
44901
44974
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -44913,6 +44986,8 @@ interface Routes {
|
|
|
44913
44986
|
max_override_period_minutes: number;
|
|
44914
44987
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
44915
44988
|
starts_at: string;
|
|
44989
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
44990
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
44916
44991
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
44917
44992
|
ends_at: string;
|
|
44918
44993
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -46886,7 +46961,8 @@ interface Routes {
|
|
|
46886
46961
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
46887
46962
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
46888
46963
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
46889
|
-
/** 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' */
|
|
46890
46966
|
manual_override_allowed?: boolean | undefined;
|
|
46891
46967
|
} | undefined;
|
|
46892
46968
|
/**
|
|
@@ -46914,7 +46990,8 @@ interface Routes {
|
|
|
46914
46990
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
46915
46991
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
46916
46992
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
46917
|
-
/** 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' */
|
|
46918
46995
|
manual_override_allowed?: boolean | undefined;
|
|
46919
46996
|
} | undefined;
|
|
46920
46997
|
available_climate_presets?: Array<{
|
|
@@ -46940,7 +47017,8 @@ interface Routes {
|
|
|
46940
47017
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
46941
47018
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
46942
47019
|
heating_set_point_fahrenheit?: number | undefined;
|
|
46943
|
-
/** 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' */
|
|
46944
47022
|
manual_override_allowed: boolean;
|
|
46945
47023
|
}> | undefined;
|
|
46946
47024
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -46958,6 +47036,8 @@ interface Routes {
|
|
|
46958
47036
|
max_override_period_minutes: number;
|
|
46959
47037
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
46960
47038
|
starts_at: string;
|
|
47039
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
47040
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
46961
47041
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
46962
47042
|
ends_at: string;
|
|
46963
47043
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -47394,7 +47474,8 @@ interface Routes {
|
|
|
47394
47474
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
47395
47475
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
47396
47476
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
47397
|
-
/** 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' */
|
|
47398
47479
|
manual_override_allowed?: boolean | undefined;
|
|
47399
47480
|
} | undefined;
|
|
47400
47481
|
/**
|
|
@@ -47422,7 +47503,8 @@ interface Routes {
|
|
|
47422
47503
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
47423
47504
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
47424
47505
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
47425
|
-
/** 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' */
|
|
47426
47508
|
manual_override_allowed?: boolean | undefined;
|
|
47427
47509
|
} | undefined;
|
|
47428
47510
|
available_climate_presets?: Array<{
|
|
@@ -47448,7 +47530,8 @@ interface Routes {
|
|
|
47448
47530
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
47449
47531
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
47450
47532
|
heating_set_point_fahrenheit?: number | undefined;
|
|
47451
|
-
/** 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' */
|
|
47452
47535
|
manual_override_allowed: boolean;
|
|
47453
47536
|
}> | undefined;
|
|
47454
47537
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -47466,6 +47549,8 @@ interface Routes {
|
|
|
47466
47549
|
max_override_period_minutes: number;
|
|
47467
47550
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
47468
47551
|
starts_at: string;
|
|
47552
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
47553
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
47469
47554
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
47470
47555
|
ends_at: string;
|
|
47471
47556
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -51461,6 +51546,7 @@ interface Routes {
|
|
|
51461
51546
|
jsonBody: {
|
|
51462
51547
|
/** ID of the desired thermostat device. */
|
|
51463
51548
|
device_id: string;
|
|
51549
|
+
manual_override_allowed?: boolean;
|
|
51464
51550
|
/** Unique key to identify the climate preset. */
|
|
51465
51551
|
climate_preset_key: string;
|
|
51466
51552
|
/** User-friendly name to identify the climate preset. */
|
|
@@ -51477,8 +51563,6 @@ interface Routes {
|
|
|
51477
51563
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
51478
51564
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
51479
51565
|
heating_set_point_fahrenheit?: number | undefined;
|
|
51480
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
51481
|
-
manual_override_allowed: boolean;
|
|
51482
51566
|
};
|
|
51483
51567
|
commonParams: {};
|
|
51484
51568
|
formData: {};
|
|
@@ -51880,7 +51964,8 @@ interface Routes {
|
|
|
51880
51964
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
51881
51965
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
51882
51966
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
51883
|
-
/** 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' */
|
|
51884
51969
|
manual_override_allowed?: boolean | undefined;
|
|
51885
51970
|
} | undefined;
|
|
51886
51971
|
/**
|
|
@@ -51908,7 +51993,8 @@ interface Routes {
|
|
|
51908
51993
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
51909
51994
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
51910
51995
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
51911
|
-
/** 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' */
|
|
51912
51998
|
manual_override_allowed?: boolean | undefined;
|
|
51913
51999
|
} | undefined;
|
|
51914
52000
|
available_climate_presets?: Array<{
|
|
@@ -51934,7 +52020,8 @@ interface Routes {
|
|
|
51934
52020
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
51935
52021
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
51936
52022
|
heating_set_point_fahrenheit?: number | undefined;
|
|
51937
|
-
/** 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' */
|
|
51938
52025
|
manual_override_allowed: boolean;
|
|
51939
52026
|
}> | undefined;
|
|
51940
52027
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -51952,6 +52039,8 @@ interface Routes {
|
|
|
51952
52039
|
max_override_period_minutes: number;
|
|
51953
52040
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
51954
52041
|
starts_at: string;
|
|
52042
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
52043
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
51955
52044
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
51956
52045
|
ends_at: string;
|
|
51957
52046
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -53907,7 +53996,8 @@ interface Routes {
|
|
|
53907
53996
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
53908
53997
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
53909
53998
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
53910
|
-
/** 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' */
|
|
53911
54001
|
manual_override_allowed?: boolean | undefined;
|
|
53912
54002
|
} | undefined;
|
|
53913
54003
|
/**
|
|
@@ -53935,7 +54025,8 @@ interface Routes {
|
|
|
53935
54025
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
53936
54026
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
53937
54027
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
53938
|
-
/** 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' */
|
|
53939
54030
|
manual_override_allowed?: boolean | undefined;
|
|
53940
54031
|
} | undefined;
|
|
53941
54032
|
available_climate_presets?: Array<{
|
|
@@ -53961,7 +54052,8 @@ interface Routes {
|
|
|
53961
54052
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
53962
54053
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
53963
54054
|
heating_set_point_fahrenheit?: number | undefined;
|
|
53964
|
-
/** 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' */
|
|
53965
54057
|
manual_override_allowed: boolean;
|
|
53966
54058
|
}> | undefined;
|
|
53967
54059
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -53979,6 +54071,8 @@ interface Routes {
|
|
|
53979
54071
|
max_override_period_minutes: number;
|
|
53980
54072
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
53981
54073
|
starts_at: string;
|
|
54074
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
54075
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
53982
54076
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
53983
54077
|
ends_at: string;
|
|
53984
54078
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -54415,7 +54509,8 @@ interface Routes {
|
|
|
54415
54509
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
54416
54510
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
54417
54511
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
54418
|
-
/** 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' */
|
|
54419
54514
|
manual_override_allowed?: boolean | undefined;
|
|
54420
54515
|
} | undefined;
|
|
54421
54516
|
/**
|
|
@@ -54443,7 +54538,8 @@ interface Routes {
|
|
|
54443
54538
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
54444
54539
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
54445
54540
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
54446
|
-
/** 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' */
|
|
54447
54543
|
manual_override_allowed?: boolean | undefined;
|
|
54448
54544
|
} | undefined;
|
|
54449
54545
|
available_climate_presets?: Array<{
|
|
@@ -54469,7 +54565,8 @@ interface Routes {
|
|
|
54469
54565
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
54470
54566
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
54471
54567
|
heating_set_point_fahrenheit?: number | undefined;
|
|
54472
|
-
/** 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' */
|
|
54473
54570
|
manual_override_allowed: boolean;
|
|
54474
54571
|
}> | undefined;
|
|
54475
54572
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -54487,6 +54584,8 @@ interface Routes {
|
|
|
54487
54584
|
max_override_period_minutes: number;
|
|
54488
54585
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
54489
54586
|
starts_at: string;
|
|
54587
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
54588
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
54490
54589
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
54491
54590
|
ends_at: string;
|
|
54492
54591
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -55308,6 +55407,7 @@ interface Routes {
|
|
|
55308
55407
|
starts_at: string;
|
|
55309
55408
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
55310
55409
|
ends_at: string;
|
|
55410
|
+
is_override_allowed?: boolean | undefined;
|
|
55311
55411
|
};
|
|
55312
55412
|
commonParams: {};
|
|
55313
55413
|
formData: {};
|
|
@@ -55326,6 +55426,8 @@ interface Routes {
|
|
|
55326
55426
|
max_override_period_minutes: number;
|
|
55327
55427
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
55328
55428
|
starts_at: string;
|
|
55429
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
55430
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
55329
55431
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
55330
55432
|
ends_at: string;
|
|
55331
55433
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -55372,6 +55474,8 @@ interface Routes {
|
|
|
55372
55474
|
max_override_period_minutes: number;
|
|
55373
55475
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
55374
55476
|
starts_at: string;
|
|
55477
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
55478
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
55375
55479
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
55376
55480
|
ends_at: string;
|
|
55377
55481
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -55407,6 +55511,8 @@ interface Routes {
|
|
|
55407
55511
|
max_override_period_minutes: number;
|
|
55408
55512
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
55409
55513
|
starts_at: string;
|
|
55514
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
55515
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
55410
55516
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
55411
55517
|
ends_at: string;
|
|
55412
55518
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -55433,6 +55539,7 @@ interface Routes {
|
|
|
55433
55539
|
starts_at?: string | undefined;
|
|
55434
55540
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
55435
55541
|
ends_at?: string | undefined;
|
|
55542
|
+
is_override_allowed?: boolean | undefined;
|
|
55436
55543
|
};
|
|
55437
55544
|
commonParams: {};
|
|
55438
55545
|
formData: {};
|
|
@@ -56234,7 +56341,8 @@ interface Routes {
|
|
|
56234
56341
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
56235
56342
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
56236
56343
|
heating_set_point_fahrenheit?: number | undefined;
|
|
56237
|
-
/** 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' */
|
|
56238
56346
|
manual_override_allowed: boolean;
|
|
56239
56347
|
};
|
|
56240
56348
|
commonParams: {};
|
|
@@ -56799,7 +56907,8 @@ interface Routes {
|
|
|
56799
56907
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
56800
56908
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
56801
56909
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
56802
|
-
/** 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' */
|
|
56803
56912
|
manual_override_allowed?: boolean | undefined;
|
|
56804
56913
|
} | undefined;
|
|
56805
56914
|
/**
|
|
@@ -56827,7 +56936,8 @@ interface Routes {
|
|
|
56827
56936
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
56828
56937
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
56829
56938
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
56830
|
-
/** 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' */
|
|
56831
56941
|
manual_override_allowed?: boolean | undefined;
|
|
56832
56942
|
} | undefined;
|
|
56833
56943
|
available_climate_presets?: Array<{
|
|
@@ -56853,7 +56963,8 @@ interface Routes {
|
|
|
56853
56963
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
56854
56964
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
56855
56965
|
heating_set_point_fahrenheit?: number | undefined;
|
|
56856
|
-
/** 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' */
|
|
56857
56968
|
manual_override_allowed: boolean;
|
|
56858
56969
|
}> | undefined;
|
|
56859
56970
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -56871,6 +56982,8 @@ interface Routes {
|
|
|
56871
56982
|
max_override_period_minutes: number;
|
|
56872
56983
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
56873
56984
|
starts_at: string;
|
|
56985
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
56986
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
56874
56987
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
56875
56988
|
ends_at: string;
|
|
56876
56989
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -57309,7 +57422,8 @@ interface Routes {
|
|
|
57309
57422
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
57310
57423
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
57311
57424
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
57312
|
-
/** 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' */
|
|
57313
57427
|
manual_override_allowed?: boolean | undefined;
|
|
57314
57428
|
} | undefined;
|
|
57315
57429
|
/**
|
|
@@ -57337,7 +57451,8 @@ interface Routes {
|
|
|
57337
57451
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
57338
57452
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
57339
57453
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
57340
|
-
/** 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' */
|
|
57341
57456
|
manual_override_allowed?: boolean | undefined;
|
|
57342
57457
|
} | undefined;
|
|
57343
57458
|
available_climate_presets?: Array<{
|
|
@@ -57363,7 +57478,8 @@ interface Routes {
|
|
|
57363
57478
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
57364
57479
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
57365
57480
|
heating_set_point_fahrenheit?: number | undefined;
|
|
57366
|
-
/** 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' */
|
|
57367
57483
|
manual_override_allowed: boolean;
|
|
57368
57484
|
}> | undefined;
|
|
57369
57485
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -57381,6 +57497,8 @@ interface Routes {
|
|
|
57381
57497
|
max_override_period_minutes: number;
|
|
57382
57498
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
57383
57499
|
starts_at: string;
|
|
57500
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
57501
|
+
unstable_is_override_allowed?: boolean | undefined;
|
|
57384
57502
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
57385
57503
|
ends_at: string;
|
|
57386
57504
|
/** Date and time at which the thermostat schedule was created. */
|