@seamapi/types 1.189.0 → 1.191.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 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +63 -8
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +1 -1
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +1 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/events/devices.d.ts +13 -13
- package/lib/seam/connect/models/events/devices.js +7 -2
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +1 -0
- package/src/lib/seam/connect/models/devices/capability-properties/index.ts +1 -0
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +2 -0
- package/src/lib/seam/connect/models/events/devices.ts +7 -2
- package/src/lib/seam/connect/schemas.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -19,6 +19,7 @@ __export(schemas_exports, {
|
|
|
19
19
|
acs_user: () => acs_user,
|
|
20
20
|
action_attempt: () => action_attempt,
|
|
21
21
|
client_session: () => client_session,
|
|
22
|
+
climate_setting_schedule: () => climate_setting_schedule,
|
|
22
23
|
connect_webview: () => connect_webview,
|
|
23
24
|
connected_account: () => connected_account,
|
|
24
25
|
custom_metadata: () => custom_metadata,
|
|
@@ -1827,7 +1828,13 @@ var disconnection_error_code = zod.z.enum([
|
|
|
1827
1828
|
---
|
|
1828
1829
|
The error code associated with the event, if any.
|
|
1829
1830
|
`);
|
|
1830
|
-
var lock_method = zod.z.enum([
|
|
1831
|
+
var lock_method = zod.z.enum([
|
|
1832
|
+
"keycode",
|
|
1833
|
+
"manual",
|
|
1834
|
+
"automatic",
|
|
1835
|
+
"unknown",
|
|
1836
|
+
"seamapi"
|
|
1837
|
+
]).describe(`
|
|
1831
1838
|
---
|
|
1832
1839
|
title: Lock Lock/Unlock Method
|
|
1833
1840
|
---
|