@seamapi/types 1.420.0 → 1.420.2
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 +8513 -365
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16603 -7186
- package/lib/seam/connect/models/devices/device.js +3 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +17242 -7825
- package/lib/seam/connect/openapi.js +8603 -458
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +11536 -3080
- package/src/lib/seam/connect/route-types.ts +2 -2
|
@@ -26143,7 +26143,7 @@ export interface Routes {
|
|
|
26143
26143
|
} | {
|
|
26144
26144
|
/** ID of the event. */
|
|
26145
26145
|
event_id: string;
|
|
26146
|
-
/** ID of the workspace associated with the event. */
|
|
26146
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
26147
26147
|
workspace_id: string;
|
|
26148
26148
|
/** Date and time at which the event was created. */
|
|
26149
26149
|
created_at: string;
|
|
@@ -27577,7 +27577,7 @@ export interface Routes {
|
|
|
27577
27577
|
} | {
|
|
27578
27578
|
/** ID of the event. */
|
|
27579
27579
|
event_id: string;
|
|
27580
|
-
/** ID of the workspace associated with the event. */
|
|
27580
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
27581
27581
|
workspace_id: string;
|
|
27582
27582
|
/** Date and time at which the event was created. */
|
|
27583
27583
|
created_at: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.420.
|
|
3
|
+
"version": "1.420.2",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"zod": "^3.24.0"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@seamapi/blueprint": "^0.50.
|
|
95
|
+
"@seamapi/blueprint": "^0.50.1",
|
|
96
96
|
"@types/node": "^20.8.10",
|
|
97
97
|
"concurrently": "^8.2.0",
|
|
98
98
|
"del-cli": "^5.0.0",
|
|
@@ -156,6 +156,9 @@ const auxiliary_heat_running = common_device_error.extend({
|
|
|
156
156
|
.literal('auxiliary_heat_running')
|
|
157
157
|
.describe(error_code_description),
|
|
158
158
|
}).describe(`
|
|
159
|
+
---
|
|
160
|
+
variant_group_key: thermostats
|
|
161
|
+
---
|
|
159
162
|
Indicates that the auxiliary heat is running.
|
|
160
163
|
`)
|
|
161
164
|
|