@seamapi/types 1.454.0 → 1.455.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 +12 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -0
- package/dist/index.cjs +12 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +13 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
|
@@ -64678,6 +64678,10 @@ export interface Routes {
|
|
|
64678
64678
|
heating_set_point_celsius?: number | undefined;
|
|
64679
64679
|
/** [Heating set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °F that you want to set for the thermostat. You must set one of the `heating_set_point` parameters. */
|
|
64680
64680
|
heating_set_point_fahrenheit?: number | undefined;
|
|
64681
|
+
} | {
|
|
64682
|
+
hvac_mode_setting: 'eco';
|
|
64683
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
64684
|
+
device_id: string;
|
|
64681
64685
|
};
|
|
64682
64686
|
commonParams: {};
|
|
64683
64687
|
formData: {};
|
package/package.json
CHANGED
|
@@ -50905,6 +50905,19 @@ export default {
|
|
|
50905
50905
|
required: ['hvac_mode_setting', 'device_id'],
|
|
50906
50906
|
type: 'object',
|
|
50907
50907
|
},
|
|
50908
|
+
{
|
|
50909
|
+
properties: {
|
|
50910
|
+
device_id: {
|
|
50911
|
+
description:
|
|
50912
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
50913
|
+
format: 'uuid',
|
|
50914
|
+
type: 'string',
|
|
50915
|
+
},
|
|
50916
|
+
hvac_mode_setting: { enum: ['eco'], type: 'string' },
|
|
50917
|
+
},
|
|
50918
|
+
required: ['hvac_mode_setting', 'device_id'],
|
|
50919
|
+
type: 'object',
|
|
50920
|
+
},
|
|
50908
50921
|
],
|
|
50909
50922
|
},
|
|
50910
50923
|
},
|
|
@@ -76783,6 +76783,11 @@ export interface Routes {
|
|
|
76783
76783
|
/** [Heating set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °F that you want to set for the thermostat. You must set one of the `heating_set_point` parameters. */
|
|
76784
76784
|
heating_set_point_fahrenheit?: number | undefined
|
|
76785
76785
|
}
|
|
76786
|
+
| {
|
|
76787
|
+
hvac_mode_setting: 'eco'
|
|
76788
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
76789
|
+
device_id: string
|
|
76790
|
+
}
|
|
76786
76791
|
commonParams: {}
|
|
76787
76792
|
formData: {}
|
|
76788
76793
|
jsonResponse: {
|