@seamapi/types 1.422.1 → 1.423.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +18 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +76 -21
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +9 -4
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +8 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +6 -3
- package/lib/seam/connect/openapi.d.ts +10 -2
- package/lib/seam/connect/openapi.js +9 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +52 -13
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +9 -4
- package/src/lib/seam/connect/openapi.ts +11 -2
- package/src/lib/seam/connect/route-types.ts +52 -13
package/dist/connect.d.cts
CHANGED
|
@@ -13235,8 +13235,8 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13235
13235
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13236
13236
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13237
13237
|
}>, "many">>;
|
|
13238
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
13239
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
13238
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13239
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
13240
13240
|
thermostat_schedule_id: z.ZodString;
|
|
13241
13241
|
device_id: z.ZodString;
|
|
13242
13242
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -13287,7 +13287,8 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13287
13287
|
}[];
|
|
13288
13288
|
max_override_period_minutes?: number | null | undefined;
|
|
13289
13289
|
is_override_allowed?: boolean | undefined;
|
|
13290
|
-
}
|
|
13290
|
+
}>>>;
|
|
13291
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13291
13292
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13292
13293
|
thermostat_daily_program_id: z.ZodString;
|
|
13293
13294
|
device_id: z.ZodString;
|
|
@@ -13452,6 +13453,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13452
13453
|
max_override_period_minutes?: number | null | undefined;
|
|
13453
13454
|
is_override_allowed?: boolean | undefined;
|
|
13454
13455
|
} | null | undefined;
|
|
13456
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
13455
13457
|
thermostat_daily_programs?: {
|
|
13456
13458
|
name: string | null;
|
|
13457
13459
|
thermostat_daily_program_id: string;
|
|
@@ -13562,6 +13564,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13562
13564
|
max_override_period_minutes?: number | null | undefined;
|
|
13563
13565
|
is_override_allowed?: boolean | undefined;
|
|
13564
13566
|
} | null | undefined;
|
|
13567
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
13565
13568
|
thermostat_daily_programs?: {
|
|
13566
13569
|
name: string | null;
|
|
13567
13570
|
thermostat_daily_program_id: string;
|
|
@@ -14778,6 +14781,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14778
14781
|
max_override_period_minutes?: number | null | undefined;
|
|
14779
14782
|
is_override_allowed?: boolean | undefined;
|
|
14780
14783
|
} | null | undefined;
|
|
14784
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
14781
14785
|
thermostat_daily_programs?: {
|
|
14782
14786
|
name: string | null;
|
|
14783
14787
|
thermostat_daily_program_id: string;
|
|
@@ -15391,6 +15395,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15391
15395
|
max_override_period_minutes?: number | null | undefined;
|
|
15392
15396
|
is_override_allowed?: boolean | undefined;
|
|
15393
15397
|
} | null | undefined;
|
|
15398
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
15394
15399
|
thermostat_daily_programs?: {
|
|
15395
15400
|
name: string | null;
|
|
15396
15401
|
thermostat_daily_program_id: string;
|
|
@@ -17183,8 +17188,8 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17183
17188
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17184
17189
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17185
17190
|
}>, "many">>;
|
|
17186
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
17187
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
17191
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17192
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
17188
17193
|
thermostat_schedule_id: z.ZodString;
|
|
17189
17194
|
device_id: z.ZodString;
|
|
17190
17195
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -17235,7 +17240,8 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17235
17240
|
}[];
|
|
17236
17241
|
max_override_period_minutes?: number | null | undefined;
|
|
17237
17242
|
is_override_allowed?: boolean | undefined;
|
|
17238
|
-
}
|
|
17243
|
+
}>>>;
|
|
17244
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17239
17245
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17240
17246
|
thermostat_daily_program_id: z.ZodString;
|
|
17241
17247
|
device_id: z.ZodString;
|
|
@@ -17400,6 +17406,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17400
17406
|
max_override_period_minutes?: number | null | undefined;
|
|
17401
17407
|
is_override_allowed?: boolean | undefined;
|
|
17402
17408
|
} | null | undefined;
|
|
17409
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
17403
17410
|
thermostat_daily_programs?: {
|
|
17404
17411
|
name: string | null;
|
|
17405
17412
|
thermostat_daily_program_id: string;
|
|
@@ -17510,6 +17517,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17510
17517
|
max_override_period_minutes?: number | null | undefined;
|
|
17511
17518
|
is_override_allowed?: boolean | undefined;
|
|
17512
17519
|
} | null | undefined;
|
|
17520
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
17513
17521
|
thermostat_daily_programs?: {
|
|
17514
17522
|
name: string | null;
|
|
17515
17523
|
thermostat_daily_program_id: string;
|
|
@@ -27600,6 +27608,7 @@ declare const _default: {
|
|
|
27600
27608
|
'x-property-group-key': string;
|
|
27601
27609
|
};
|
|
27602
27610
|
active_thermostat_schedule?: never;
|
|
27611
|
+
active_thermostat_schedule_id?: never;
|
|
27603
27612
|
available_climate_presets?: never;
|
|
27604
27613
|
available_fan_mode_settings?: never;
|
|
27605
27614
|
available_hvac_mode_settings?: never;
|
|
@@ -27632,7 +27641,7 @@ declare const _default: {
|
|
|
27632
27641
|
} | {
|
|
27633
27642
|
properties: {
|
|
27634
27643
|
active_thermostat_schedule: {
|
|
27635
|
-
|
|
27644
|
+
deprecated: boolean;
|
|
27636
27645
|
description: string;
|
|
27637
27646
|
nullable: boolean;
|
|
27638
27647
|
properties: {
|
|
@@ -27707,9 +27716,17 @@ declare const _default: {
|
|
|
27707
27716
|
};
|
|
27708
27717
|
required: string[];
|
|
27709
27718
|
type: string;
|
|
27719
|
+
'x-deprecated': string;
|
|
27710
27720
|
'x-property-group-key': string;
|
|
27711
27721
|
'x-route-path': string;
|
|
27712
27722
|
};
|
|
27723
|
+
active_thermostat_schedule_id: {
|
|
27724
|
+
description: string;
|
|
27725
|
+
format: string;
|
|
27726
|
+
nullable: boolean;
|
|
27727
|
+
type: string;
|
|
27728
|
+
'x-property-group-key': string;
|
|
27729
|
+
};
|
|
27713
27730
|
available_climate_presets: {
|
|
27714
27731
|
description: string;
|
|
27715
27732
|
items: {
|
|
@@ -27941,7 +27958,6 @@ declare const _default: {
|
|
|
27941
27958
|
'x-property-group-key': string;
|
|
27942
27959
|
};
|
|
27943
27960
|
fallback_climate_preset_key: {
|
|
27944
|
-
default: null;
|
|
27945
27961
|
description: string;
|
|
27946
27962
|
minLength: number;
|
|
27947
27963
|
nullable: boolean;
|
|
@@ -92113,7 +92129,8 @@ interface Routes {
|
|
|
92113
92129
|
}> | undefined;
|
|
92114
92130
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
92115
92131
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
92116
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
92132
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
92133
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
92117
92134
|
active_thermostat_schedule?: ({
|
|
92118
92135
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
92119
92136
|
thermostat_schedule_id: string;
|
|
@@ -92143,6 +92160,8 @@ interface Routes {
|
|
|
92143
92160
|
message: string;
|
|
92144
92161
|
}>;
|
|
92145
92162
|
} | null) | undefined;
|
|
92163
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
92164
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
92146
92165
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
92147
92166
|
thermostat_daily_programs?: (Array<{
|
|
92148
92167
|
/** ID of the thermostat daily program. */
|
|
@@ -93265,7 +93284,8 @@ interface Routes {
|
|
|
93265
93284
|
}> | undefined;
|
|
93266
93285
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
93267
93286
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
93268
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
93287
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
93288
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
93269
93289
|
active_thermostat_schedule?: ({
|
|
93270
93290
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
93271
93291
|
thermostat_schedule_id: string;
|
|
@@ -93295,6 +93315,8 @@ interface Routes {
|
|
|
93295
93315
|
message: string;
|
|
93296
93316
|
}>;
|
|
93297
93317
|
} | null) | undefined;
|
|
93318
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
93319
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
93298
93320
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
93299
93321
|
thermostat_daily_programs?: (Array<{
|
|
93300
93322
|
/** ID of the thermostat daily program. */
|
|
@@ -98178,7 +98200,8 @@ interface Routes {
|
|
|
98178
98200
|
}> | undefined;
|
|
98179
98201
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
98180
98202
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
98181
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
98203
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
98204
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
98182
98205
|
active_thermostat_schedule?: ({
|
|
98183
98206
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
98184
98207
|
thermostat_schedule_id: string;
|
|
@@ -98208,6 +98231,8 @@ interface Routes {
|
|
|
98208
98231
|
message: string;
|
|
98209
98232
|
}>;
|
|
98210
98233
|
} | null) | undefined;
|
|
98234
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
98235
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
98211
98236
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
98212
98237
|
thermostat_daily_programs?: (Array<{
|
|
98213
98238
|
/** ID of the thermostat daily program. */
|
|
@@ -99286,7 +99311,8 @@ interface Routes {
|
|
|
99286
99311
|
}> | undefined;
|
|
99287
99312
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
99288
99313
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
99289
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
99314
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
99315
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
99290
99316
|
active_thermostat_schedule?: ({
|
|
99291
99317
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
99292
99318
|
thermostat_schedule_id: string;
|
|
@@ -99316,6 +99342,8 @@ interface Routes {
|
|
|
99316
99342
|
message: string;
|
|
99317
99343
|
}>;
|
|
99318
99344
|
} | null) | undefined;
|
|
99345
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
99346
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
99319
99347
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
99320
99348
|
thermostat_daily_programs?: (Array<{
|
|
99321
99349
|
/** ID of the thermostat daily program. */
|
|
@@ -100438,7 +100466,8 @@ interface Routes {
|
|
|
100438
100466
|
}> | undefined;
|
|
100439
100467
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
100440
100468
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
100441
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
100469
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
100470
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
100442
100471
|
active_thermostat_schedule?: ({
|
|
100443
100472
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
100444
100473
|
thermostat_schedule_id: string;
|
|
@@ -100468,6 +100497,8 @@ interface Routes {
|
|
|
100468
100497
|
message: string;
|
|
100469
100498
|
}>;
|
|
100470
100499
|
} | null) | undefined;
|
|
100500
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
100501
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
100471
100502
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
100472
100503
|
thermostat_daily_programs?: (Array<{
|
|
100473
100504
|
/** ID of the thermostat daily program. */
|
|
@@ -101545,7 +101576,8 @@ interface Routes {
|
|
|
101545
101576
|
}> | undefined;
|
|
101546
101577
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
101547
101578
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
101548
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
101579
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
101580
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
101549
101581
|
active_thermostat_schedule?: ({
|
|
101550
101582
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
101551
101583
|
thermostat_schedule_id: string;
|
|
@@ -101575,6 +101607,8 @@ interface Routes {
|
|
|
101575
101607
|
message: string;
|
|
101576
101608
|
}>;
|
|
101577
101609
|
} | null) | undefined;
|
|
101610
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
101611
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
101578
101612
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
101579
101613
|
thermostat_daily_programs?: (Array<{
|
|
101580
101614
|
/** ID of the thermostat daily program. */
|
|
@@ -107990,7 +108024,8 @@ interface Routes {
|
|
|
107990
108024
|
}> | undefined;
|
|
107991
108025
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
107992
108026
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
107993
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
108027
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
108028
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
107994
108029
|
active_thermostat_schedule?: ({
|
|
107995
108030
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
107996
108031
|
thermostat_schedule_id: string;
|
|
@@ -108020,6 +108055,8 @@ interface Routes {
|
|
|
108020
108055
|
message: string;
|
|
108021
108056
|
}>;
|
|
108022
108057
|
} | null) | undefined;
|
|
108058
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
108059
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
108023
108060
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
108024
108061
|
thermostat_daily_programs?: (Array<{
|
|
108025
108062
|
/** ID of the thermostat daily program. */
|
|
@@ -109097,7 +109134,8 @@ interface Routes {
|
|
|
109097
109134
|
}> | undefined;
|
|
109098
109135
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
109099
109136
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
109100
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
109137
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
109138
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
109101
109139
|
active_thermostat_schedule?: ({
|
|
109102
109140
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
109103
109141
|
thermostat_schedule_id: string;
|
|
@@ -109127,6 +109165,8 @@ interface Routes {
|
|
|
109127
109165
|
message: string;
|
|
109128
109166
|
}>;
|
|
109129
109167
|
} | null) | undefined;
|
|
109168
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
109169
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
109130
109170
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
109131
109171
|
thermostat_daily_programs?: (Array<{
|
|
109132
109172
|
/** ID of the thermostat daily program. */
|
|
@@ -119573,7 +119613,8 @@ interface Routes {
|
|
|
119573
119613
|
}> | undefined;
|
|
119574
119614
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
119575
119615
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
119576
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
119616
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
119617
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
119577
119618
|
active_thermostat_schedule?: ({
|
|
119578
119619
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
119579
119620
|
thermostat_schedule_id: string;
|
|
@@ -119603,6 +119644,8 @@ interface Routes {
|
|
|
119603
119644
|
message: string;
|
|
119604
119645
|
}>;
|
|
119605
119646
|
} | null) | undefined;
|
|
119647
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
119648
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
119606
119649
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
119607
119650
|
thermostat_daily_programs?: (Array<{
|
|
119608
119651
|
/** ID of the thermostat daily program. */
|
|
@@ -123367,7 +123410,8 @@ interface Routes {
|
|
|
123367
123410
|
}> | undefined;
|
|
123368
123411
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
123369
123412
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
123370
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
123413
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
123414
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
123371
123415
|
active_thermostat_schedule?: ({
|
|
123372
123416
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
123373
123417
|
thermostat_schedule_id: string;
|
|
@@ -123397,6 +123441,8 @@ interface Routes {
|
|
|
123397
123441
|
message: string;
|
|
123398
123442
|
}>;
|
|
123399
123443
|
} | null) | undefined;
|
|
123444
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
123445
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
123400
123446
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
123401
123447
|
thermostat_daily_programs?: (Array<{
|
|
123402
123448
|
/** ID of the thermostat daily program. */
|
|
@@ -124474,7 +124520,8 @@ interface Routes {
|
|
|
124474
124520
|
}> | undefined;
|
|
124475
124521
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
124476
124522
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
124477
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
124523
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
124524
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
124478
124525
|
active_thermostat_schedule?: ({
|
|
124479
124526
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
124480
124527
|
thermostat_schedule_id: string;
|
|
@@ -124504,6 +124551,8 @@ interface Routes {
|
|
|
124504
124551
|
message: string;
|
|
124505
124552
|
}>;
|
|
124506
124553
|
} | null) | undefined;
|
|
124554
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
124555
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
124507
124556
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
124508
124557
|
thermostat_daily_programs?: (Array<{
|
|
124509
124558
|
/** ID of the thermostat daily program. */
|
|
@@ -132159,7 +132208,8 @@ interface Routes {
|
|
|
132159
132208
|
}> | undefined;
|
|
132160
132209
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
132161
132210
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
132162
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
132211
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
132212
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
132163
132213
|
active_thermostat_schedule?: ({
|
|
132164
132214
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
132165
132215
|
thermostat_schedule_id: string;
|
|
@@ -132189,6 +132239,8 @@ interface Routes {
|
|
|
132189
132239
|
message: string;
|
|
132190
132240
|
}>;
|
|
132191
132241
|
} | null) | undefined;
|
|
132242
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
132243
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
132192
132244
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
132193
132245
|
thermostat_daily_programs?: (Array<{
|
|
132194
132246
|
/** ID of the thermostat daily program. */
|
|
@@ -133268,7 +133320,8 @@ interface Routes {
|
|
|
133268
133320
|
}> | undefined;
|
|
133269
133321
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
133270
133322
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
133271
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
133323
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
133324
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
133272
133325
|
active_thermostat_schedule?: ({
|
|
133273
133326
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
133274
133327
|
thermostat_schedule_id: string;
|
|
@@ -133298,6 +133351,8 @@ interface Routes {
|
|
|
133298
133351
|
message: string;
|
|
133299
133352
|
}>;
|
|
133300
133353
|
} | null) | undefined;
|
|
133354
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
133355
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
133301
133356
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
133302
133357
|
thermostat_daily_programs?: (Array<{
|
|
133303
133358
|
/** ID of the thermostat daily program. */
|
|
@@ -214,8 +214,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
214
214
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
215
215
|
heating_set_point_fahrenheit?: number | undefined;
|
|
216
216
|
}>, "many">>;
|
|
217
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
218
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
217
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
218
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
219
219
|
thermostat_schedule_id: z.ZodString;
|
|
220
220
|
device_id: z.ZodString;
|
|
221
221
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -266,7 +266,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
266
266
|
}[];
|
|
267
267
|
max_override_period_minutes?: number | null | undefined;
|
|
268
268
|
is_override_allowed?: boolean | undefined;
|
|
269
|
-
}
|
|
269
|
+
}>>>;
|
|
270
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
270
271
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
271
272
|
thermostat_daily_program_id: z.ZodString;
|
|
272
273
|
device_id: z.ZodString;
|
|
@@ -431,6 +432,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
431
432
|
max_override_period_minutes?: number | null | undefined;
|
|
432
433
|
is_override_allowed?: boolean | undefined;
|
|
433
434
|
} | null | undefined;
|
|
435
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
434
436
|
thermostat_daily_programs?: {
|
|
435
437
|
name: string | null;
|
|
436
438
|
thermostat_daily_program_id: string;
|
|
@@ -541,6 +543,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
541
543
|
max_override_period_minutes?: number | null | undefined;
|
|
542
544
|
is_override_allowed?: boolean | undefined;
|
|
543
545
|
} | null | undefined;
|
|
546
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
544
547
|
thermostat_daily_programs?: {
|
|
545
548
|
name: string | null;
|
|
546
549
|
thermostat_daily_program_id: string;
|
|
@@ -139,8 +139,8 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
139
139
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
140
140
|
heating_set_point_fahrenheit?: number | undefined;
|
|
141
141
|
}>, "many">>;
|
|
142
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
143
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
142
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
143
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
144
144
|
thermostat_schedule_id: z.ZodString;
|
|
145
145
|
device_id: z.ZodString;
|
|
146
146
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -191,7 +191,8 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
191
191
|
}[];
|
|
192
192
|
max_override_period_minutes?: number | null | undefined;
|
|
193
193
|
is_override_allowed?: boolean | undefined;
|
|
194
|
-
}
|
|
194
|
+
}>>>;
|
|
195
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
195
196
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
196
197
|
thermostat_daily_program_id: z.ZodString;
|
|
197
198
|
device_id: z.ZodString;
|
|
@@ -356,6 +357,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
356
357
|
max_override_period_minutes?: number | null | undefined;
|
|
357
358
|
is_override_allowed?: boolean | undefined;
|
|
358
359
|
} | null | undefined;
|
|
360
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
359
361
|
thermostat_daily_programs?: {
|
|
360
362
|
name: string | null;
|
|
361
363
|
thermostat_daily_program_id: string;
|
|
@@ -466,6 +468,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
466
468
|
max_override_period_minutes?: number | null | undefined;
|
|
467
469
|
is_override_allowed?: boolean | undefined;
|
|
468
470
|
} | null | undefined;
|
|
471
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
469
472
|
thermostat_daily_programs?: {
|
|
470
473
|
name: string | null;
|
|
471
474
|
thermostat_daily_program_id: string;
|
|
@@ -86,20 +86,25 @@ export const thermostat_capability_properties = z
|
|
|
86
86
|
---
|
|
87
87
|
Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat.
|
|
88
88
|
`),
|
|
89
|
-
fallback_climate_preset_key: z.string().min(1).nullable().
|
|
90
|
-
.describe(`
|
|
89
|
+
fallback_climate_preset_key: z.string().min(1).nullable().describe(`
|
|
91
90
|
---
|
|
92
91
|
property_group_key: thermostats
|
|
93
92
|
---
|
|
94
93
|
Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat.
|
|
95
94
|
`),
|
|
96
|
-
active_thermostat_schedule: thermostat_schedule.nullable().
|
|
97
|
-
.describe(`
|
|
95
|
+
active_thermostat_schedule: thermostat_schedule.nullable().describe(`
|
|
98
96
|
---
|
|
99
97
|
property_group_key: thermostats
|
|
98
|
+
deprecated: Use \`active_thermostat_schedule_id\` with \`/thermostats/schedules/get\` instead.
|
|
100
99
|
---
|
|
101
100
|
Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
102
101
|
`),
|
|
102
|
+
active_thermostat_schedule_id: z.string().uuid().nullable().describe(`
|
|
103
|
+
---
|
|
104
|
+
property_group_key: thermostats
|
|
105
|
+
---
|
|
106
|
+
ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
107
|
+
`),
|
|
103
108
|
thermostat_daily_programs: z.array(thermostat_daily_program).optional()
|
|
104
109
|
.describe(`
|
|
105
110
|
---
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,wBAAwB,EACxB,mBAAmB,EACnB,yBAAyB,GAC1B,MAAM,4BAA4B,CAAA;AAEnC,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;;WAKrC,CAAC;IACR,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;;WAKlC,CAAC;IACR,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;;;;;WAK9C,CAAC;IACR,4BAA4B,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,QAAQ,CAAC;;;;;WAK3D,CAAC;IACR,2BAA2B,EAAE,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,QAAQ,CAAC;;;;;WAKzD,CAAC;IACR,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC;;;;;WAK1B,CAAC;IACR,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC;;;;;WAK1B,CAAC;IACR,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC;;;;;WAK9B,CAAC;IACR,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,CAAC;;;;;KAK3C,CAAC;IAEF;;OAEG;IACH,mCAAmC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC;;;;;WAKnD,CAAC;IAER;;OAEG;IACH,uBAAuB,EAAE,eAAe,CAAC,QAAQ,CAAC;;;;;WAK3C,CAAC;IACR,uBAAuB,EAAE,eAAe,CAAC,QAAQ,CAAC;;;;;KAKjD,CAAC;IACF,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,QAAQ,CAAC;;;;;WAKrD,CAAC;IACR,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"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"}
|
|
@@ -3534,8 +3534,8 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3534
3534
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3535
3535
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3536
3536
|
}>, "many">>;
|
|
3537
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
3538
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
3537
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3538
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3539
3539
|
thermostat_schedule_id: z.ZodString;
|
|
3540
3540
|
device_id: z.ZodString;
|
|
3541
3541
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -3586,7 +3586,8 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3586
3586
|
}[];
|
|
3587
3587
|
max_override_period_minutes?: number | null | undefined;
|
|
3588
3588
|
is_override_allowed?: boolean | undefined;
|
|
3589
|
-
}
|
|
3589
|
+
}>>>;
|
|
3590
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3590
3591
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3591
3592
|
thermostat_daily_program_id: z.ZodString;
|
|
3592
3593
|
device_id: z.ZodString;
|
|
@@ -3751,6 +3752,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3751
3752
|
max_override_period_minutes?: number | null | undefined;
|
|
3752
3753
|
is_override_allowed?: boolean | undefined;
|
|
3753
3754
|
} | null | undefined;
|
|
3755
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
3754
3756
|
thermostat_daily_programs?: {
|
|
3755
3757
|
name: string | null;
|
|
3756
3758
|
thermostat_daily_program_id: string;
|
|
@@ -3861,6 +3863,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3861
3863
|
max_override_period_minutes?: number | null | undefined;
|
|
3862
3864
|
is_override_allowed?: boolean | undefined;
|
|
3863
3865
|
} | null | undefined;
|
|
3866
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
3864
3867
|
thermostat_daily_programs?: {
|
|
3865
3868
|
name: string | null;
|
|
3866
3869
|
thermostat_daily_program_id: string;
|
|
@@ -5081,6 +5084,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5081
5084
|
max_override_period_minutes?: number | null | undefined;
|
|
5082
5085
|
is_override_allowed?: boolean | undefined;
|
|
5083
5086
|
} | null | undefined;
|
|
5087
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
5084
5088
|
thermostat_daily_programs?: {
|
|
5085
5089
|
name: string | null;
|
|
5086
5090
|
thermostat_daily_program_id: string;
|
|
@@ -5694,6 +5698,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5694
5698
|
max_override_period_minutes?: number | null | undefined;
|
|
5695
5699
|
is_override_allowed?: boolean | undefined;
|
|
5696
5700
|
} | null | undefined;
|
|
5701
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
5697
5702
|
thermostat_daily_programs?: {
|
|
5698
5703
|
name: string | null;
|
|
5699
5704
|
thermostat_daily_program_id: string;
|
|
@@ -1630,8 +1630,8 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1630
1630
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1631
1631
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1632
1632
|
}>, "many">>;
|
|
1633
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
1634
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
1633
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1634
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1635
1635
|
thermostat_schedule_id: z.ZodString;
|
|
1636
1636
|
device_id: z.ZodString;
|
|
1637
1637
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -1682,7 +1682,8 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1682
1682
|
}[];
|
|
1683
1683
|
max_override_period_minutes?: number | null | undefined;
|
|
1684
1684
|
is_override_allowed?: boolean | undefined;
|
|
1685
|
-
}
|
|
1685
|
+
}>>>;
|
|
1686
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1686
1687
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1687
1688
|
thermostat_daily_program_id: z.ZodString;
|
|
1688
1689
|
device_id: z.ZodString;
|
|
@@ -1847,6 +1848,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1847
1848
|
max_override_period_minutes?: number | null | undefined;
|
|
1848
1849
|
is_override_allowed?: boolean | undefined;
|
|
1849
1850
|
} | null | undefined;
|
|
1851
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
1850
1852
|
thermostat_daily_programs?: {
|
|
1851
1853
|
name: string | null;
|
|
1852
1854
|
thermostat_daily_program_id: string;
|
|
@@ -1957,6 +1959,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1957
1959
|
max_override_period_minutes?: number | null | undefined;
|
|
1958
1960
|
is_override_allowed?: boolean | undefined;
|
|
1959
1961
|
} | null | undefined;
|
|
1962
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
1960
1963
|
thermostat_daily_programs?: {
|
|
1961
1964
|
name: string | null;
|
|
1962
1965
|
thermostat_daily_program_id: string;
|
|
@@ -5831,6 +5831,7 @@ declare const _default: {
|
|
|
5831
5831
|
'x-property-group-key': string;
|
|
5832
5832
|
};
|
|
5833
5833
|
active_thermostat_schedule?: never;
|
|
5834
|
+
active_thermostat_schedule_id?: never;
|
|
5834
5835
|
available_climate_presets?: never;
|
|
5835
5836
|
available_fan_mode_settings?: never;
|
|
5836
5837
|
available_hvac_mode_settings?: never;
|
|
@@ -5863,7 +5864,7 @@ declare const _default: {
|
|
|
5863
5864
|
} | {
|
|
5864
5865
|
properties: {
|
|
5865
5866
|
active_thermostat_schedule: {
|
|
5866
|
-
|
|
5867
|
+
deprecated: boolean;
|
|
5867
5868
|
description: string;
|
|
5868
5869
|
nullable: boolean;
|
|
5869
5870
|
properties: {
|
|
@@ -5938,9 +5939,17 @@ declare const _default: {
|
|
|
5938
5939
|
};
|
|
5939
5940
|
required: string[];
|
|
5940
5941
|
type: string;
|
|
5942
|
+
'x-deprecated': string;
|
|
5941
5943
|
'x-property-group-key': string;
|
|
5942
5944
|
'x-route-path': string;
|
|
5943
5945
|
};
|
|
5946
|
+
active_thermostat_schedule_id: {
|
|
5947
|
+
description: string;
|
|
5948
|
+
format: string;
|
|
5949
|
+
nullable: boolean;
|
|
5950
|
+
type: string;
|
|
5951
|
+
'x-property-group-key': string;
|
|
5952
|
+
};
|
|
5944
5953
|
available_climate_presets: {
|
|
5945
5954
|
description: string;
|
|
5946
5955
|
items: {
|
|
@@ -6172,7 +6181,6 @@ declare const _default: {
|
|
|
6172
6181
|
'x-property-group-key': string;
|
|
6173
6182
|
};
|
|
6174
6183
|
fallback_climate_preset_key: {
|
|
6175
|
-
default: null;
|
|
6176
6184
|
description: string;
|
|
6177
6185
|
minLength: number;
|
|
6178
6186
|
nullable: boolean;
|