@seamapi/types 1.342.0 → 1.344.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 +8 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +23 -7
- package/lib/seam/connect/models/events/devices.d.ts +6 -6
- package/lib/seam/connect/models/events/devices.js +1 -1
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +4 -4
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +5 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/devices.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -3
- package/src/lib/seam/connect/route-types.ts +4 -4
package/dist/connect.cjs
CHANGED
|
@@ -3408,7 +3408,7 @@ var temperature_reached_set_point_event = device_event.extend({
|
|
|
3408
3408
|
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).
|
|
3409
3409
|
`);
|
|
3410
3410
|
var temperature_changed_event = device_event.extend({
|
|
3411
|
-
event_type: zod.z.literal("thermostat.
|
|
3411
|
+
event_type: zod.z.literal("thermostat.temperature_changed"),
|
|
3412
3412
|
temperature_celsius: zod.z.number().describe(
|
|
3413
3413
|
"Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
|
|
3414
3414
|
),
|
|
@@ -14451,7 +14451,7 @@ var openapi_default = {
|
|
|
14451
14451
|
type: "string"
|
|
14452
14452
|
},
|
|
14453
14453
|
event_type: {
|
|
14454
|
-
enum: ["thermostat.
|
|
14454
|
+
enum: ["thermostat.temperature_changed"],
|
|
14455
14455
|
type: "string"
|
|
14456
14456
|
},
|
|
14457
14457
|
occurred_at: {
|
|
@@ -24484,7 +24484,8 @@ var openapi_default = {
|
|
|
24484
24484
|
security: [
|
|
24485
24485
|
{ api_key: [] },
|
|
24486
24486
|
{ pat_with_workspace: [] },
|
|
24487
|
-
{ console_session_with_workspace: [] }
|
|
24487
|
+
{ console_session_with_workspace: [] },
|
|
24488
|
+
{ client_session: [] }
|
|
24488
24489
|
],
|
|
24489
24490
|
summary: "/devices/update",
|
|
24490
24491
|
tags: ["/devices"],
|
|
@@ -24541,7 +24542,8 @@ var openapi_default = {
|
|
|
24541
24542
|
security: [
|
|
24542
24543
|
{ api_key: [] },
|
|
24543
24544
|
{ pat_with_workspace: [] },
|
|
24544
|
-
{ console_session_with_workspace: [] }
|
|
24545
|
+
{ console_session_with_workspace: [] },
|
|
24546
|
+
{ client_session: [] }
|
|
24545
24547
|
],
|
|
24546
24548
|
summary: "/devices/update",
|
|
24547
24549
|
tags: ["/devices"],
|
|
@@ -24711,7 +24713,7 @@ var openapi_default = {
|
|
|
24711
24713
|
"thermostat.temperature_threshold_exceeded",
|
|
24712
24714
|
"thermostat.temperature_threshold_no_longer_exceeded",
|
|
24713
24715
|
"thermostat.temperature_reached_set_point",
|
|
24714
|
-
"thermostat.
|
|
24716
|
+
"thermostat.temperature_changed",
|
|
24715
24717
|
"enrollment_automation.deleted",
|
|
24716
24718
|
"phone.deactivated"
|
|
24717
24719
|
],
|
|
@@ -24792,7 +24794,7 @@ var openapi_default = {
|
|
|
24792
24794
|
"thermostat.temperature_threshold_exceeded",
|
|
24793
24795
|
"thermostat.temperature_threshold_no_longer_exceeded",
|
|
24794
24796
|
"thermostat.temperature_reached_set_point",
|
|
24795
|
-
"thermostat.
|
|
24797
|
+
"thermostat.temperature_changed",
|
|
24796
24798
|
"enrollment_automation.deleted",
|
|
24797
24799
|
"phone.deactivated"
|
|
24798
24800
|
],
|