@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.466.1",
3
+ "version": "1.468.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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()
@@ -22,6 +22,7 @@ export const device_capability_flags = z
22
22
  can_simulate_connection: z.boolean(),
23
23
  can_simulate_disconnection: z.boolean(),
24
24
  can_unlock_with_code: z.boolean(),
25
+ can_run_thermostat_programs: z.boolean(),
25
26
  })
26
27
  .partial()
27
28