@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 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"