@seamapi/types 1.785.0 → 1.786.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 +6 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +63 -0
- package/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +3 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +4 -0
- package/src/lib/seam/connect/route-types.ts +42 -0
package/dist/connect.cjs
CHANGED
|
@@ -1079,6 +1079,9 @@ var device_metadata = zod.z.object({
|
|
|
1079
1079
|
product_type: zod.z.string().describe(`Product type for a Sensi device.`),
|
|
1080
1080
|
dual_setpoints_not_supported: zod.z.boolean().optional().describe(
|
|
1081
1081
|
`Set to true when the device does not support the /dual-setpoints API endpoint.`
|
|
1082
|
+
),
|
|
1083
|
+
enforced_setpoint_range_celsius: zod.z.tuple([zod.z.number(), zod.z.number()]).optional().describe(
|
|
1084
|
+
`Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error.`
|
|
1082
1085
|
)
|
|
1083
1086
|
}).describe(`Metadata for a Sensi device.`),
|
|
1084
1087
|
keynest_metadata: zod.z.object({
|
|
@@ -18337,6 +18340,9 @@ var openapi_default = {
|
|
|
18337
18340
|
description: "Set to true when the device does not support the /dual-setpoints API endpoint.",
|
|
18338
18341
|
type: "boolean"
|
|
18339
18342
|
},
|
|
18343
|
+
enforced_setpoint_range_celsius: {
|
|
18344
|
+
description: "Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error."
|
|
18345
|
+
},
|
|
18340
18346
|
product_type: {
|
|
18341
18347
|
description: "Product type for a Sensi device.",
|
|
18342
18348
|
type: "string"
|