@seamapi/types 1.855.0 → 1.856.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
@@ -1095,6 +1095,12 @@ var device_metadata = zod.z.object({
1095
1095
  lock_mac: zod.z.string().describe(`Bluetooth MAC address for an Omnitec device.`),
1096
1096
  has_gateway: zod.z.boolean().describe(
1097
1097
  `Whether the Omnitec lock has a connected gateway for remote operations.`
1098
+ ),
1099
+ timezone_raw_offset_ms: zod.z.number().describe(
1100
+ `Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.`
1101
+ ),
1102
+ time_zone: zod.z.string().optional().describe(
1103
+ `IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.`
1098
1104
  )
1099
1105
  }).describe(`Metadata for an Omnitec device.`),
1100
1106
  tado_metadata: zod.z.object({
@@ -19677,13 +19683,23 @@ var openapi = {
19677
19683
  lock_name: {
19678
19684
  description: "Lock name for an Omnitec device.",
19679
19685
  type: "string"
19686
+ },
19687
+ time_zone: {
19688
+ description: "IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.",
19689
+ type: "string"
19690
+ },
19691
+ timezone_raw_offset_ms: {
19692
+ description: "Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.",
19693
+ format: "float",
19694
+ type: "number"
19680
19695
  }
19681
19696
  },
19682
19697
  required: [
19683
19698
  "lock_id",
19684
19699
  "lock_name",
19685
19700
  "lock_mac",
19686
- "has_gateway"
19701
+ "has_gateway",
19702
+ "timezone_raw_offset_ms"
19687
19703
  ],
19688
19704
  type: "object"
19689
19705
  },