@seamapi/types 1.329.0 → 1.329.1

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
@@ -3148,18 +3148,23 @@ var temperature_threshold_no_longer_exceeded_event = device_event.extend({
3148
3148
  `);
3149
3149
  var temperature_reached_set_point_event = device_event.extend({
3150
3150
  event_type: zod.z.literal("thermostat.temperature_reached_set_point"),
3151
- temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the thermostat."),
3152
- temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the thermostat."),
3151
+ temperature_celsius: zod.z.number().describe(
3152
+ "Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
3153
+ ),
3154
+ temperature_fahrenheit: zod.z.number().describe(
3155
+ "Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
3156
+ ),
3153
3157
  desired_temperature_celsius: zod.z.number().optional().describe(
3154
- "Desired temperature, in \xB0C, set by the thermostat's cooling or heating set point."
3158
+ "Desired temperature, in \xB0C, defined by the [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points)."
3155
3159
  ),
3156
3160
  desired_temperature_fahrenheit: zod.z.number().optional().describe(
3157
- "Desired temperature, in \xB0F, set by the thermostat's cooling or heating set point."
3161
+ "Desired temperature, in \xB0F, defined by the [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points)."
3158
3162
  )
3159
3163
  }).describe(`
3160
3164
  ---
3161
3165
  route_path: /thermostats
3162
3166
  ---
3167
+ A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading is within 1 \xB0C of the configured cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
3163
3168
  `);
3164
3169
  var device_events = [
3165
3170
  device_connected_event,
@@ -13121,6 +13126,7 @@ var openapi_default = {
13121
13126
  "x-route-path": "/thermostats"
13122
13127
  },
13123
13128
  {
13129
+ description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading is within 1 \xB0C of the configured cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
13124
13130
  properties: {
13125
13131
  connected_account_id: {
13126
13132
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -13133,12 +13139,12 @@ var openapi_default = {
13133
13139
  type: "string"
13134
13140
  },
13135
13141
  desired_temperature_celsius: {
13136
- description: "Desired temperature, in \xB0C, set by the thermostat's cooling or heating set point.",
13142
+ description: "Desired temperature, in \xB0C, defined by the [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
13137
13143
  format: "float",
13138
13144
  type: "number"
13139
13145
  },
13140
13146
  desired_temperature_fahrenheit: {
13141
- description: "Desired temperature, in \xB0F, set by the thermostat's cooling or heating set point.",
13147
+ description: "Desired temperature, in \xB0F, defined by the [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
13142
13148
  format: "float",
13143
13149
  type: "number"
13144
13150
  },
@@ -13162,12 +13168,12 @@ var openapi_default = {
13162
13168
  type: "string"
13163
13169
  },
13164
13170
  temperature_celsius: {
13165
- description: "Temperature, in \xB0C, reported by the thermostat.",
13171
+ description: "Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).",
13166
13172
  format: "float",
13167
13173
  type: "number"
13168
13174
  },
13169
13175
  temperature_fahrenheit: {
13170
- description: "Temperature, in \xB0F, reported by the thermostat.",
13176
+ description: "Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).",
13171
13177
  format: "float",
13172
13178
  type: "number"
13173
13179
  },