@seamapi/types 1.934.0 → 1.936.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 +6 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +46 -0
- package/dist/index.cjs +6 -1
- 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-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -1
- package/lib/seam/connect/models/devices/device-provider.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/models/devices/device-provider.ts +1 -1
- 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.`
|
|
@@ -2283,6 +2284,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2283
2284
|
"nest",
|
|
2284
2285
|
"tedee",
|
|
2285
2286
|
"honeywell_resideo",
|
|
2287
|
+
"first_alert",
|
|
2286
2288
|
"visionline",
|
|
2287
2289
|
"assa_abloy_credential_service",
|
|
2288
2290
|
"dormakaba_ambiance",
|
|
@@ -2296,7 +2298,6 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2296
2298
|
"ultraloq",
|
|
2297
2299
|
"dormakaba_oracode",
|
|
2298
2300
|
"ring",
|
|
2299
|
-
"first_alert",
|
|
2300
2301
|
"korelock",
|
|
2301
2302
|
"keyincode",
|
|
2302
2303
|
"sifely",
|
|
@@ -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",
|