@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.
@@ -3583,7 +3583,6 @@ export interface Routes {
3583
3583
  workspace_id: string
3584
3584
  name: string
3585
3585
  is_sandbox: boolean
3586
- connect_partner_name: string | null
3587
3586
  }>
3588
3587
  }
3589
3588
  }
@@ -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(),