@seamapi/types 1.467.0 → 1.469.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 +656 -23
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2251 -52
- package/dist/index.cjs +656 -23
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +0 -2
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-program.js +0 -1
- package/lib/seam/connect/models/thermostats/thermostat-program.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +344 -10
- package/lib/seam/connect/openapi.js +646 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1865 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +0 -2
- package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +0 -1
- package/src/lib/seam/connect/openapi.ts +654 -10
- package/src/lib/seam/connect/route-types.ts +2382 -0
package/package.json
CHANGED
|
@@ -129,7 +129,6 @@ export const thermostat_capability_properties = z
|
|
|
129
129
|
.describe(`
|
|
130
130
|
---
|
|
131
131
|
property_group_key: thermostats
|
|
132
|
-
undocumented: Unreleased.
|
|
133
132
|
---
|
|
134
133
|
Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat.
|
|
135
134
|
`),
|
|
@@ -137,7 +136,6 @@ export const thermostat_capability_properties = z
|
|
|
137
136
|
.describe(`
|
|
138
137
|
---
|
|
139
138
|
property_group_key: thermostats
|
|
140
|
-
undocumented: Unreleased.
|
|
141
139
|
---
|
|
142
140
|
Current [weekly program](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat.
|
|
143
141
|
`),
|
|
@@ -51,7 +51,6 @@ export const thermostat_daily_program = z.object({
|
|
|
51
51
|
}).describe(`
|
|
52
52
|
---
|
|
53
53
|
route_path: /thermostats/daily_programs
|
|
54
|
-
undocumented: Unreleased.
|
|
55
54
|
---
|
|
56
55
|
Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time.
|
|
57
56
|
`)
|