@seamapi/types 1.833.0 → 1.834.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 CHANGED
@@ -982,7 +982,10 @@ var device_metadata = zod.z.object({
982
982
  wireless_keypad_id: zod.z.number().describe(`ID for a wireless keypad for a TTLock device.`),
983
983
  wireless_keypad_name: zod.z.string().describe(`Name for a wireless keypad for a TTLock device.`)
984
984
  })
985
- ).optional().describe(`Wireless keypads for a TTLock device.`)
985
+ ).optional().describe(`Wireless keypads for a TTLock device.`),
986
+ timezone_raw_offset_ms: zod.z.number().nullable().optional().describe(
987
+ `Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times \u2014 a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value.`
988
+ )
986
989
  }).describe(`Metadata for a TTLock device.`),
987
990
  seam_bridge_metadata: zod.z.object({
988
991
  unlock_method: zod.z.enum(["bridge", "doorking"]).optional().describe(`Unlock method for Seam Bridge.`),
@@ -19178,6 +19181,12 @@ var openapi = {
19178
19181
  format: "float",
19179
19182
  type: "number"
19180
19183
  },
19184
+ timezone_raw_offset_ms: {
19185
+ description: `Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times \u2014 a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value.`,
19186
+ format: "float",
19187
+ nullable: true,
19188
+ type: "number"
19189
+ },
19181
19190
  wireless_keypads: {
19182
19191
  description: "Wireless keypads for a TTLock device.",
19183
19192
  items: {