@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 +7 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +64 -0
- package/dist/index.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +1 -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.d.ts +4 -0
- package/lib/seam/connect/openapi.js +5 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +5 -1
- package/src/lib/seam/connect/route-types.ts +34 -0
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: {
|