@seamapi/types 1.525.0 → 1.526.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
@@ -821,8 +821,11 @@ var device_metadata = zod.z.object({
821
821
  door_name: zod.z.string().describe(`Door name for a Genie device.`)
822
822
  }).describe(`Metadata for a Genie device.`),
823
823
  brivo_metadata: zod.z.object({
824
- device_name: zod.z.string().describe(`Device name for a Brivo device.`)
825
- }).describe(`Metadata for a Brivo device.`),
824
+ device_name: zod.z.string().describe(`Device name for a Brivo device.`),
825
+ activation_enabled: zod.z.boolean().describe(
826
+ `Indicates whether the Brivo access point has activation (remote unlock) enabled.`
827
+ )
828
+ }).partial().describe(`Metadata for a Brivo device.`),
826
829
  igloo_metadata: zod.z.object({
827
830
  device_id: zod.z.string().describe(`Device ID for an igloo device.`),
828
831
  bridge_id: zod.z.string().describe(`Bridge ID for an igloo device.`),
@@ -14763,12 +14766,15 @@ var openapi_default = {
14763
14766
  brivo_metadata: {
14764
14767
  description: "Metadata for a Brivo device.",
14765
14768
  properties: {
14769
+ activation_enabled: {
14770
+ description: "Indicates whether the Brivo access point has activation (remote unlock) enabled.",
14771
+ type: "boolean"
14772
+ },
14766
14773
  device_name: {
14767
14774
  description: "Device name for a Brivo device.",
14768
14775
  type: "string"
14769
14776
  }
14770
14777
  },
14771
- required: ["device_name"],
14772
14778
  type: "object"
14773
14779
  },
14774
14780
  controlbyweb_metadata: {