@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
package/dist/connect.d.cts
CHANGED
|
@@ -147776,6 +147776,10 @@ interface Routes {
|
|
|
147776
147776
|
heating_set_point_celsius?: number | undefined;
|
|
147777
147777
|
/** [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. */
|
|
147778
147778
|
heating_set_point_fahrenheit?: number | undefined;
|
|
147779
|
+
} | {
|
|
147780
|
+
hvac_mode_setting: 'eco';
|
|
147781
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
147782
|
+
device_id: string;
|
|
147779
147783
|
};
|
|
147780
147784
|
commonParams: {};
|
|
147781
147785
|
formData: {};
|
package/dist/index.cjs
CHANGED
|
@@ -52420,6 +52420,18 @@ var openapi_default = {
|
|
|
52420
52420
|
},
|
|
52421
52421
|
required: ["hvac_mode_setting", "device_id"],
|
|
52422
52422
|
type: "object"
|
|
52423
|
+
},
|
|
52424
|
+
{
|
|
52425
|
+
properties: {
|
|
52426
|
+
device_id: {
|
|
52427
|
+
description: "ID of the thermostat device for which you want to set the HVAC mode.",
|
|
52428
|
+
format: "uuid",
|
|
52429
|
+
type: "string"
|
|
52430
|
+
},
|
|
52431
|
+
hvac_mode_setting: { enum: ["eco"], type: "string" }
|
|
52432
|
+
},
|
|
52433
|
+
required: ["hvac_mode_setting", "device_id"],
|
|
52434
|
+
type: "object"
|
|
52423
52435
|
}
|
|
52424
52436
|
]
|
|
52425
52437
|
}
|