@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.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
|
}
|