@seamapi/types 1.525.0 → 1.527.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: {
@@ -41216,6 +41222,15 @@ var openapi_default = {
41216
41222
  description: "Deletes customer data including resources like spaces, properties, rooms, users, etc.\nThis will delete the partner resources and any related Seam resources (user identities, access grants, spaces).",
41217
41223
  operationId: "customersDeleteDataDelete",
41218
41224
  parameters: [
41225
+ {
41226
+ in: "query",
41227
+ name: "customer_keys",
41228
+ schema: {
41229
+ description: "List of customer keys to delete all data for.",
41230
+ items: { type: "string" },
41231
+ type: "array"
41232
+ }
41233
+ },
41219
41234
  {
41220
41235
  in: "query",
41221
41236
  name: "space_keys",
@@ -41426,6 +41441,11 @@ var openapi_default = {
41426
41441
  items: { type: "string" },
41427
41442
  type: "array"
41428
41443
  },
41444
+ customer_keys: {
41445
+ description: "List of customer keys to delete all data for.",
41446
+ items: { type: "string" },
41447
+ type: "array"
41448
+ },
41429
41449
  facility_keys: {
41430
41450
  description: "List of facility keys to delete.",
41431
41451
  items: { type: "string" },