@seamapi/types 1.422.0 → 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 +26 -12
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +104 -25
- 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 +17 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +80 -17
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +9 -4
- package/src/lib/seam/connect/openapi.ts +19 -10
- package/src/lib/seam/connect/route-types.ts +80 -17
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;
|
|
@@ -68388,7 +68404,13 @@ interface Routes {
|
|
|
68388
68404
|
jsonBody: {
|
|
68389
68405
|
/** ID of the device for which you want to create the new access code. */
|
|
68390
68406
|
device_id: string;
|
|
68391
|
-
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
68407
|
+
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
68408
|
+
|
|
68409
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
68410
|
+
|
|
68411
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
68412
|
+
|
|
68413
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
68392
68414
|
name?: string | undefined;
|
|
68393
68415
|
/** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
68394
68416
|
starts_at?: string | undefined;
|
|
@@ -70247,7 +70269,13 @@ interface Routes {
|
|
|
70247
70269
|
behavior_when_code_cannot_be_shared?: 'throw' | 'create_random_code';
|
|
70248
70270
|
/** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
70249
70271
|
preferred_code_length?: number | undefined;
|
|
70250
|
-
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
70272
|
+
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
70273
|
+
|
|
70274
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
70275
|
+
|
|
70276
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
70277
|
+
|
|
70278
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
70251
70279
|
name?: string | undefined;
|
|
70252
70280
|
/** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
70253
70281
|
starts_at?: string | undefined;
|
|
@@ -77127,7 +77155,13 @@ interface Routes {
|
|
|
77127
77155
|
method: 'POST' | 'PATCH' | 'PUT';
|
|
77128
77156
|
queryParams: {};
|
|
77129
77157
|
jsonBody: {
|
|
77130
|
-
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
77158
|
+
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
77159
|
+
|
|
77160
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
77161
|
+
|
|
77162
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
77163
|
+
|
|
77164
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
77131
77165
|
name?: string | undefined;
|
|
77132
77166
|
/** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
77133
77167
|
starts_at?: string | undefined;
|
|
@@ -78478,7 +78512,13 @@ interface Routes {
|
|
|
78478
78512
|
ends_at?: string | undefined;
|
|
78479
78513
|
/** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
78480
78514
|
starts_at?: string | undefined;
|
|
78481
|
-
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
78515
|
+
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
78516
|
+
|
|
78517
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
78518
|
+
|
|
78519
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
78520
|
+
|
|
78521
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
78482
78522
|
name?: string | undefined;
|
|
78483
78523
|
/** Key that links the group of access codes, assigned on creation by `/access_codes/create_multiple`. */
|
|
78484
78524
|
common_code_key: string;
|
|
@@ -92089,7 +92129,8 @@ interface Routes {
|
|
|
92089
92129
|
}> | undefined;
|
|
92090
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. */
|
|
92091
92131
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
92092
|
-
/** 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. */
|
|
92093
92134
|
active_thermostat_schedule?: ({
|
|
92094
92135
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
92095
92136
|
thermostat_schedule_id: string;
|
|
@@ -92119,6 +92160,8 @@ interface Routes {
|
|
|
92119
92160
|
message: string;
|
|
92120
92161
|
}>;
|
|
92121
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;
|
|
92122
92165
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
92123
92166
|
thermostat_daily_programs?: (Array<{
|
|
92124
92167
|
/** ID of the thermostat daily program. */
|
|
@@ -93241,7 +93284,8 @@ interface Routes {
|
|
|
93241
93284
|
}> | undefined;
|
|
93242
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. */
|
|
93243
93286
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
93244
|
-
/** 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. */
|
|
93245
93289
|
active_thermostat_schedule?: ({
|
|
93246
93290
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
93247
93291
|
thermostat_schedule_id: string;
|
|
@@ -93271,6 +93315,8 @@ interface Routes {
|
|
|
93271
93315
|
message: string;
|
|
93272
93316
|
}>;
|
|
93273
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;
|
|
93274
93320
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
93275
93321
|
thermostat_daily_programs?: (Array<{
|
|
93276
93322
|
/** ID of the thermostat daily program. */
|
|
@@ -98154,7 +98200,8 @@ interface Routes {
|
|
|
98154
98200
|
}> | undefined;
|
|
98155
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. */
|
|
98156
98202
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
98157
|
-
/** 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. */
|
|
98158
98205
|
active_thermostat_schedule?: ({
|
|
98159
98206
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
98160
98207
|
thermostat_schedule_id: string;
|
|
@@ -98184,6 +98231,8 @@ interface Routes {
|
|
|
98184
98231
|
message: string;
|
|
98185
98232
|
}>;
|
|
98186
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;
|
|
98187
98236
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
98188
98237
|
thermostat_daily_programs?: (Array<{
|
|
98189
98238
|
/** ID of the thermostat daily program. */
|
|
@@ -99262,7 +99311,8 @@ interface Routes {
|
|
|
99262
99311
|
}> | undefined;
|
|
99263
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. */
|
|
99264
99313
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
99265
|
-
/** 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. */
|
|
99266
99316
|
active_thermostat_schedule?: ({
|
|
99267
99317
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
99268
99318
|
thermostat_schedule_id: string;
|
|
@@ -99292,6 +99342,8 @@ interface Routes {
|
|
|
99292
99342
|
message: string;
|
|
99293
99343
|
}>;
|
|
99294
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;
|
|
99295
99347
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
99296
99348
|
thermostat_daily_programs?: (Array<{
|
|
99297
99349
|
/** ID of the thermostat daily program. */
|
|
@@ -100414,7 +100466,8 @@ interface Routes {
|
|
|
100414
100466
|
}> | undefined;
|
|
100415
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. */
|
|
100416
100468
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
100417
|
-
/** 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. */
|
|
100418
100471
|
active_thermostat_schedule?: ({
|
|
100419
100472
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
100420
100473
|
thermostat_schedule_id: string;
|
|
@@ -100444,6 +100497,8 @@ interface Routes {
|
|
|
100444
100497
|
message: string;
|
|
100445
100498
|
}>;
|
|
100446
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;
|
|
100447
100502
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
100448
100503
|
thermostat_daily_programs?: (Array<{
|
|
100449
100504
|
/** ID of the thermostat daily program. */
|
|
@@ -101521,7 +101576,8 @@ interface Routes {
|
|
|
101521
101576
|
}> | undefined;
|
|
101522
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. */
|
|
101523
101578
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
101524
|
-
/** 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. */
|
|
101525
101581
|
active_thermostat_schedule?: ({
|
|
101526
101582
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
101527
101583
|
thermostat_schedule_id: string;
|
|
@@ -101551,6 +101607,8 @@ interface Routes {
|
|
|
101551
101607
|
message: string;
|
|
101552
101608
|
}>;
|
|
101553
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;
|
|
101554
101612
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
101555
101613
|
thermostat_daily_programs?: (Array<{
|
|
101556
101614
|
/** ID of the thermostat daily program. */
|
|
@@ -107966,7 +108024,8 @@ interface Routes {
|
|
|
107966
108024
|
}> | undefined;
|
|
107967
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. */
|
|
107968
108026
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
107969
|
-
/** 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. */
|
|
107970
108029
|
active_thermostat_schedule?: ({
|
|
107971
108030
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
107972
108031
|
thermostat_schedule_id: string;
|
|
@@ -107996,6 +108055,8 @@ interface Routes {
|
|
|
107996
108055
|
message: string;
|
|
107997
108056
|
}>;
|
|
107998
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;
|
|
107999
108060
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
108000
108061
|
thermostat_daily_programs?: (Array<{
|
|
108001
108062
|
/** ID of the thermostat daily program. */
|
|
@@ -109073,7 +109134,8 @@ interface Routes {
|
|
|
109073
109134
|
}> | undefined;
|
|
109074
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. */
|
|
109075
109136
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
109076
|
-
/** 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. */
|
|
109077
109139
|
active_thermostat_schedule?: ({
|
|
109078
109140
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
109079
109141
|
thermostat_schedule_id: string;
|
|
@@ -109103,6 +109165,8 @@ interface Routes {
|
|
|
109103
109165
|
message: string;
|
|
109104
109166
|
}>;
|
|
109105
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;
|
|
109106
109170
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
109107
109171
|
thermostat_daily_programs?: (Array<{
|
|
109108
109172
|
/** ID of the thermostat daily program. */
|
|
@@ -119549,7 +119613,8 @@ interface Routes {
|
|
|
119549
119613
|
}> | undefined;
|
|
119550
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. */
|
|
119551
119615
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
119552
|
-
/** 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. */
|
|
119553
119618
|
active_thermostat_schedule?: ({
|
|
119554
119619
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
119555
119620
|
thermostat_schedule_id: string;
|
|
@@ -119579,6 +119644,8 @@ interface Routes {
|
|
|
119579
119644
|
message: string;
|
|
119580
119645
|
}>;
|
|
119581
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;
|
|
119582
119649
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
119583
119650
|
thermostat_daily_programs?: (Array<{
|
|
119584
119651
|
/** ID of the thermostat daily program. */
|
|
@@ -123343,7 +123410,8 @@ interface Routes {
|
|
|
123343
123410
|
}> | undefined;
|
|
123344
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. */
|
|
123345
123412
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
123346
|
-
/** 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. */
|
|
123347
123415
|
active_thermostat_schedule?: ({
|
|
123348
123416
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
123349
123417
|
thermostat_schedule_id: string;
|
|
@@ -123373,6 +123441,8 @@ interface Routes {
|
|
|
123373
123441
|
message: string;
|
|
123374
123442
|
}>;
|
|
123375
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;
|
|
123376
123446
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
123377
123447
|
thermostat_daily_programs?: (Array<{
|
|
123378
123448
|
/** ID of the thermostat daily program. */
|
|
@@ -124450,7 +124520,8 @@ interface Routes {
|
|
|
124450
124520
|
}> | undefined;
|
|
124451
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. */
|
|
124452
124522
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
124453
|
-
/** 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. */
|
|
124454
124525
|
active_thermostat_schedule?: ({
|
|
124455
124526
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
124456
124527
|
thermostat_schedule_id: string;
|
|
@@ -124480,6 +124551,8 @@ interface Routes {
|
|
|
124480
124551
|
message: string;
|
|
124481
124552
|
}>;
|
|
124482
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;
|
|
124483
124556
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
124484
124557
|
thermostat_daily_programs?: (Array<{
|
|
124485
124558
|
/** ID of the thermostat daily program. */
|
|
@@ -132135,7 +132208,8 @@ interface Routes {
|
|
|
132135
132208
|
}> | undefined;
|
|
132136
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. */
|
|
132137
132210
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
132138
|
-
/** 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. */
|
|
132139
132213
|
active_thermostat_schedule?: ({
|
|
132140
132214
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
132141
132215
|
thermostat_schedule_id: string;
|
|
@@ -132165,6 +132239,8 @@ interface Routes {
|
|
|
132165
132239
|
message: string;
|
|
132166
132240
|
}>;
|
|
132167
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;
|
|
132168
132244
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
132169
132245
|
thermostat_daily_programs?: (Array<{
|
|
132170
132246
|
/** ID of the thermostat daily program. */
|
|
@@ -133244,7 +133320,8 @@ interface Routes {
|
|
|
133244
133320
|
}> | undefined;
|
|
133245
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. */
|
|
133246
133322
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
133247
|
-
/** 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. */
|
|
133248
133325
|
active_thermostat_schedule?: ({
|
|
133249
133326
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
133250
133327
|
thermostat_schedule_id: string;
|
|
@@ -133274,6 +133351,8 @@ interface Routes {
|
|
|
133274
133351
|
message: string;
|
|
133275
133352
|
}>;
|
|
133276
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;
|
|
133277
133356
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
133278
133357
|
thermostat_daily_programs?: (Array<{
|
|
133279
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;
|