@seamapi/types 1.292.2 → 1.293.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 +20 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +69 -0
- package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js → assa-abloy-vostio.js} +1 -1
- package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js.map → assa-abloy-vostio.js.map} +1 -1
- package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js → dormakaba-community.js} +1 -1
- package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js.map → dormakaba-community.js.map} +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +2 -2
- package/lib/seam/connect/models/acs/metadata/index.js +2 -2
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -0
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +3 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +8 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +13 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/index.ts +2 -2
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +15 -0
- package/src/lib/seam/connect/route-types.ts +34 -0
- /package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.d.ts → assa-abloy-vostio.d.ts} +0 -0
- /package/lib/seam/connect/models/acs/metadata/{dormakaba_community.d.ts → dormakaba-community.d.ts} +0 -0
- /package/src/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.ts → assa-abloy-vostio.ts} +0 -0
- /package/src/lib/seam/connect/models/acs/metadata/{dormakaba_community.ts → dormakaba-community.ts} +0 -0
package/dist/connect.cjs
CHANGED
|
@@ -180,6 +180,13 @@ var thermostat_schedule = zod.z.object({
|
|
|
180
180
|
starts_at: zod.z.string().datetime().describe(
|
|
181
181
|
"Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format."
|
|
182
182
|
),
|
|
183
|
+
unstable_is_override_allowed: zod.z.boolean().optional().describe(
|
|
184
|
+
`
|
|
185
|
+
---
|
|
186
|
+
undocumented: Unstable
|
|
187
|
+
---
|
|
188
|
+
Indicates whether a person at the thermostat can change the thermostat's settings.`
|
|
189
|
+
),
|
|
183
190
|
ends_at: zod.z.string().datetime().describe(
|
|
184
191
|
"Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format."
|
|
185
192
|
),
|
|
@@ -7251,6 +7258,11 @@ var openapi_default = {
|
|
|
7251
7258
|
description: "ID of the thermostat schedule.",
|
|
7252
7259
|
format: "uuid",
|
|
7253
7260
|
type: "string"
|
|
7261
|
+
},
|
|
7262
|
+
unstable_is_override_allowed: {
|
|
7263
|
+
description: "Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
7264
|
+
type: "boolean",
|
|
7265
|
+
"x-undocumented": "Unstable"
|
|
7254
7266
|
}
|
|
7255
7267
|
},
|
|
7256
7268
|
required: [
|
|
@@ -8000,6 +8012,11 @@ var openapi_default = {
|
|
|
8000
8012
|
description: "ID of the thermostat schedule.",
|
|
8001
8013
|
format: "uuid",
|
|
8002
8014
|
type: "string"
|
|
8015
|
+
},
|
|
8016
|
+
unstable_is_override_allowed: {
|
|
8017
|
+
description: "Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
8018
|
+
type: "boolean",
|
|
8019
|
+
"x-undocumented": "Unstable"
|
|
8003
8020
|
}
|
|
8004
8021
|
},
|
|
8005
8022
|
required: [
|
|
@@ -18833,6 +18850,7 @@ var openapi_default = {
|
|
|
18833
18850
|
description: "Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
18834
18851
|
type: "string"
|
|
18835
18852
|
},
|
|
18853
|
+
is_override_allowed: { default: false, type: "boolean" },
|
|
18836
18854
|
max_override_period_minutes: {
|
|
18837
18855
|
default: 0,
|
|
18838
18856
|
description: "Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
@@ -19084,6 +19102,7 @@ var openapi_default = {
|
|
|
19084
19102
|
description: "Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
19085
19103
|
type: "string"
|
|
19086
19104
|
},
|
|
19105
|
+
is_override_allowed: { type: "boolean" },
|
|
19087
19106
|
max_override_period_minutes: {
|
|
19088
19107
|
description: "Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
19089
19108
|
minimum: 0,
|
|
@@ -19153,6 +19172,7 @@ var openapi_default = {
|
|
|
19153
19172
|
description: "Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
19154
19173
|
type: "string"
|
|
19155
19174
|
},
|
|
19175
|
+
is_override_allowed: { type: "boolean" },
|
|
19156
19176
|
max_override_period_minutes: {
|
|
19157
19177
|
description: "Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
19158
19178
|
minimum: 0,
|