@seamapi/types 1.466.1 → 1.468.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 +716 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2389 -10
- package/dist/index.cjs +716 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +119 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +14 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +16 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/openapi.d.ts +367 -0
- package/lib/seam/connect/openapi.js +681 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1965 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +14 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +691 -0
- package/src/lib/seam/connect/route-types.ts +2843 -293
package/package.json
CHANGED
|
@@ -222,5 +222,19 @@ export const thermostat_capability_properties = z
|
|
|
222
222
|
---
|
|
223
223
|
Current [temperature threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds) set for the thermostat.
|
|
224
224
|
`),
|
|
225
|
+
thermostat_daily_program_period_precision_minutes: z.number().optional()
|
|
226
|
+
.describe(`
|
|
227
|
+
---
|
|
228
|
+
property_group_key: thermostats
|
|
229
|
+
---
|
|
230
|
+
Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour.
|
|
231
|
+
`),
|
|
232
|
+
max_thermostat_daily_program_periods_per_day: z.number().optional()
|
|
233
|
+
.describe(`
|
|
234
|
+
---
|
|
235
|
+
property_group_key: thermostats
|
|
236
|
+
---
|
|
237
|
+
Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4.
|
|
238
|
+
`),
|
|
225
239
|
})
|
|
226
240
|
.partial()
|