@seamapi/types 0.20.0 → 0.20.1
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 +1 -5772
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -7844
- package/lib/seam/connect/openapi.d.ts +1 -7844
- package/lib/seam/connect/openapi.js +1 -5772
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +0 -1
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +25 -25
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +35 -34
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +4 -4
- package/lib/seam/connect/unstable/models/managed-device.d.ts +48 -48
- package/lib/seam/connect/unstable/models/unmanaged-device.d.ts +6 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -5772
- package/src/lib/seam/connect/route-types.ts +0 -1
- package/src/lib/seam/connect/unstable/models/capability-properties/index.ts +1 -1
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +2 -0
|
@@ -23,4 +23,4 @@ export const capability_properties = access_code_capability_properties
|
|
|
23
23
|
.merge(thermostat_capability_properties.partial())
|
|
24
24
|
|
|
25
25
|
export type { AccessCodeConstraint } from './access-code.js'
|
|
26
|
-
export type { ClimateSetting } from './thermostat.js'
|
|
26
|
+
export type { ClimateSetting, HvacModeSetting } from './thermostat.js'
|
|
@@ -27,6 +27,8 @@ export const climate_setting_schedule = z
|
|
|
27
27
|
|
|
28
28
|
export const hvac_mode_setting = z.enum(['off', 'heat', 'cool', 'heatcool'])
|
|
29
29
|
|
|
30
|
+
export type HvacModeSetting = z.infer<typeof hvac_mode_setting>
|
|
31
|
+
|
|
30
32
|
export const thermostat_capability_properties = z.object({
|
|
31
33
|
temperature_fahrenheit: z.number(),
|
|
32
34
|
temperature_celsius: z.number(),
|