@seamapi/types 1.380.0 → 1.380.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 +7 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +40 -35
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -5
- package/lib/seam/connect/models/devices/device.d.ts +7 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -5
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +3 -3
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +2 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +6 -1
- package/lib/seam/connect/openapi.js +6 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +19 -19
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +6 -3
- package/src/lib/seam/connect/route-types.ts +19 -19
package/dist/connect.cjs
CHANGED
|
@@ -161,7 +161,7 @@ var thermostat_schedule = zod.z.object({
|
|
|
161
161
|
climate_preset_key: zod.z.string().describe(
|
|
162
162
|
"Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules)."
|
|
163
163
|
),
|
|
164
|
-
max_override_period_minutes: zod.z.number().int().nonnegative().describe(
|
|
164
|
+
max_override_period_minutes: zod.z.number().int().nonnegative().nullable().optional().describe(
|
|
165
165
|
"Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions)."
|
|
166
166
|
),
|
|
167
167
|
starts_at: zod.z.string().datetime().describe(
|
|
@@ -11706,6 +11706,7 @@ var openapi_default = {
|
|
|
11706
11706
|
max_override_period_minutes: {
|
|
11707
11707
|
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](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
11708
11708
|
minimum: 0,
|
|
11709
|
+
nullable: true,
|
|
11709
11710
|
type: "integer"
|
|
11710
11711
|
},
|
|
11711
11712
|
name: {
|
|
@@ -11732,7 +11733,6 @@ var openapi_default = {
|
|
|
11732
11733
|
"thermostat_schedule_id",
|
|
11733
11734
|
"device_id",
|
|
11734
11735
|
"climate_preset_key",
|
|
11735
|
-
"max_override_period_minutes",
|
|
11736
11736
|
"starts_at",
|
|
11737
11737
|
"ends_at",
|
|
11738
11738
|
"created_at",
|
|
@@ -16905,6 +16905,7 @@ var openapi_default = {
|
|
|
16905
16905
|
max_override_period_minutes: {
|
|
16906
16906
|
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](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
16907
16907
|
minimum: 0,
|
|
16908
|
+
nullable: true,
|
|
16908
16909
|
type: "integer"
|
|
16909
16910
|
},
|
|
16910
16911
|
name: {
|
|
@@ -16931,7 +16932,6 @@ var openapi_default = {
|
|
|
16931
16932
|
"thermostat_schedule_id",
|
|
16932
16933
|
"device_id",
|
|
16933
16934
|
"climate_preset_key",
|
|
16934
|
-
"max_override_period_minutes",
|
|
16935
16935
|
"starts_at",
|
|
16936
16936
|
"ends_at",
|
|
16937
16937
|
"created_at",
|
|
@@ -31056,9 +31056,10 @@ var openapi_default = {
|
|
|
31056
31056
|
type: "boolean"
|
|
31057
31057
|
},
|
|
31058
31058
|
max_override_period_minutes: {
|
|
31059
|
-
default:
|
|
31059
|
+
default: null,
|
|
31060
31060
|
description: "Number of minutes for which a person at the thermostat or using the API 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).",
|
|
31061
31061
|
minimum: 0,
|
|
31062
|
+
nullable: true,
|
|
31062
31063
|
type: "integer"
|
|
31063
31064
|
},
|
|
31064
31065
|
name: {
|
|
@@ -31313,6 +31314,7 @@ var openapi_default = {
|
|
|
31313
31314
|
max_override_period_minutes: {
|
|
31314
31315
|
description: "Number of minutes for which a person at the thermostat or using the API 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).",
|
|
31315
31316
|
minimum: 0,
|
|
31317
|
+
nullable: true,
|
|
31316
31318
|
type: "integer"
|
|
31317
31319
|
},
|
|
31318
31320
|
name: {
|
|
@@ -31386,6 +31388,7 @@ var openapi_default = {
|
|
|
31386
31388
|
max_override_period_minutes: {
|
|
31387
31389
|
description: "Number of minutes for which a person at the thermostat or using the API 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).",
|
|
31388
31390
|
minimum: 0,
|
|
31391
|
+
nullable: true,
|
|
31389
31392
|
type: "integer"
|
|
31390
31393
|
},
|
|
31391
31394
|
name: {
|