@seamapi/types 1.934.0 → 1.935.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 +5 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +46 -0
- package/dist/index.cjs +5 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +5 -0
- package/src/lib/seam/connect/route-types.ts +34 -0
package/dist/connect.cjs
CHANGED
|
@@ -1173,6 +1173,7 @@ var device_metadata = zod.z.object({
|
|
|
1173
1173
|
omnitec_metadata: zod.z.object({
|
|
1174
1174
|
lock_id: zod.z.number().describe(`Lock ID for an Omnitec device.`),
|
|
1175
1175
|
lock_name: zod.z.string().describe(`Lock name for an Omnitec device.`),
|
|
1176
|
+
lock_alias: zod.z.string().optional().describe(`Operator-assigned alias for an Omnitec device.`),
|
|
1176
1177
|
lock_mac: zod.z.string().describe(`Bluetooth MAC address for an Omnitec device.`),
|
|
1177
1178
|
has_gateway: zod.z.boolean().describe(
|
|
1178
1179
|
`Whether the Omnitec lock has a connected gateway for remote operations.`
|
|
@@ -20753,6 +20754,10 @@ var openapi = {
|
|
|
20753
20754
|
description: "Whether the Omnitec lock has a connected gateway for remote operations.",
|
|
20754
20755
|
type: "boolean"
|
|
20755
20756
|
},
|
|
20757
|
+
lock_alias: {
|
|
20758
|
+
description: "Operator-assigned alias for an Omnitec device.",
|
|
20759
|
+
type: "string"
|
|
20760
|
+
},
|
|
20756
20761
|
lock_id: {
|
|
20757
20762
|
description: "Lock ID for an Omnitec device.",
|
|
20758
20763
|
format: "float",
|