@seamapi/types 1.656.0 → 1.657.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
@@ -1062,7 +1062,8 @@ var device_metadata = zod.z.object({
1062
1062
  }).partial().describe(`Metadata for a KeyNest device.`),
1063
1063
  ultraloq_metadata: zod.z.object({
1064
1064
  device_id: zod.z.string().describe(`Device ID for an Ultraloq device.`),
1065
- device_name: zod.z.string().describe(`Device name for an Ultraloq device.`)
1065
+ device_name: zod.z.string().describe(`Device name for an Ultraloq device.`),
1066
+ device_type: zod.z.string().describe(`Device type for an Ultraloq device.`)
1066
1067
  }).describe(`Metadata for an Ultraloq device.`)
1067
1068
  }).partial().describe(`
1068
1069
  ---
@@ -16147,9 +16148,13 @@ var openapi_default = {
16147
16148
  device_name: {
16148
16149
  description: "Device name for an Ultraloq device.",
16149
16150
  type: "string"
16151
+ },
16152
+ device_type: {
16153
+ description: "Device type for an Ultraloq device.",
16154
+ type: "string"
16150
16155
  }
16151
16156
  },
16152
- required: ["device_id", "device_name"],
16157
+ required: ["device_id", "device_name", "device_type"],
16153
16158
  type: "object"
16154
16159
  },
16155
16160
  visionline_metadata: {