@seamapi/types 1.258.2 → 1.258.3
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 +4 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +25 -27
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +3 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +3 -3
- package/lib/seam/connect/models/devices/device.d.ts +4 -4
- package/lib/seam/connect/models/devices/phone.d.ts +3 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +3 -3
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +0 -2
- package/lib/seam/connect/openapi.js +3 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -16
- package/package.json +2 -2
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +3 -6
- package/src/lib/seam/connect/route-types.ts +16 -16
package/dist/connect.cjs
CHANGED
|
@@ -160,7 +160,7 @@ var thermostat_schedule = zod.z.object({
|
|
|
160
160
|
device_id: zod.z.string().uuid(),
|
|
161
161
|
name: zod.z.string().optional(),
|
|
162
162
|
climate_preset_key: zod.z.string(),
|
|
163
|
-
max_override_period_minutes: zod.z.number().int().nonnegative()
|
|
163
|
+
max_override_period_minutes: zod.z.number().int().nonnegative(),
|
|
164
164
|
starts_at: zod.z.string().datetime(),
|
|
165
165
|
ends_at: zod.z.string().datetime(),
|
|
166
166
|
created_at: zod.z.string().datetime(),
|
|
@@ -5912,7 +5912,6 @@ var openapi_default = {
|
|
|
5912
5912
|
description: 'Collection of errors associated with the thermostat schedule, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.'
|
|
5913
5913
|
},
|
|
5914
5914
|
max_override_period_minutes: {
|
|
5915
|
-
default: 0,
|
|
5916
5915
|
minimum: 0,
|
|
5917
5916
|
type: "integer"
|
|
5918
5917
|
},
|
|
@@ -5927,6 +5926,7 @@ var openapi_default = {
|
|
|
5927
5926
|
"thermostat_schedule_id",
|
|
5928
5927
|
"device_id",
|
|
5929
5928
|
"climate_preset_key",
|
|
5929
|
+
"max_override_period_minutes",
|
|
5930
5930
|
"starts_at",
|
|
5931
5931
|
"ends_at",
|
|
5932
5932
|
"created_at"
|
|
@@ -6529,11 +6529,7 @@ var openapi_default = {
|
|
|
6529
6529
|
errors: {
|
|
6530
6530
|
description: 'Collection of errors associated with the thermostat schedule, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.'
|
|
6531
6531
|
},
|
|
6532
|
-
max_override_period_minutes: {
|
|
6533
|
-
default: 0,
|
|
6534
|
-
minimum: 0,
|
|
6535
|
-
type: "integer"
|
|
6536
|
-
},
|
|
6532
|
+
max_override_period_minutes: { minimum: 0, type: "integer" },
|
|
6537
6533
|
name: { type: "string" },
|
|
6538
6534
|
starts_at: { format: "date-time", type: "string" },
|
|
6539
6535
|
thermostat_schedule_id: { format: "uuid", type: "string" }
|
|
@@ -6542,6 +6538,7 @@ var openapi_default = {
|
|
|
6542
6538
|
"thermostat_schedule_id",
|
|
6543
6539
|
"device_id",
|
|
6544
6540
|
"climate_preset_key",
|
|
6541
|
+
"max_override_period_minutes",
|
|
6545
6542
|
"starts_at",
|
|
6546
6543
|
"ends_at",
|
|
6547
6544
|
"created_at"
|