@seamapi/types 1.680.0 → 1.681.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 +8 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +64 -0
- package/dist/index.cjs +8 -1
- 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 +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.d.ts +4 -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 +6 -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
|
@@ -822,7 +822,10 @@ var device_metadata = zod.z.object({
|
|
|
822
822
|
lock_type: zod.z.string().describe(`Lock type for a Salto KS device.`),
|
|
823
823
|
battery_level: zod.z.string().describe(`Battery level for a Salto KS device.`),
|
|
824
824
|
locked_state: zod.z.string().describe(`Locked state for a Salto KS device.`),
|
|
825
|
-
model: zod.z.string().optional().describe(`Model for a Salto KS device.`)
|
|
825
|
+
model: zod.z.string().optional().describe(`Model for a Salto KS device.`),
|
|
826
|
+
has_custom_pin_subscription: zod.z.boolean().optional().describe(
|
|
827
|
+
`Indicates whether the site has a Salto KS subscription that supports custom PINs.`
|
|
828
|
+
)
|
|
826
829
|
}).describe(`Metadata for a Salto KS device.`),
|
|
827
830
|
genie_metadata: zod.z.object({
|
|
828
831
|
device_name: zod.z.string().describe(`Lock name for a Genie device.`),
|
|
@@ -16051,6 +16054,10 @@ var openapi_default = {
|
|
|
16051
16054
|
description: "Customer reference for a Salto KS device.",
|
|
16052
16055
|
type: "string"
|
|
16053
16056
|
},
|
|
16057
|
+
has_custom_pin_subscription: {
|
|
16058
|
+
description: "Indicates whether the site has a Salto KS subscription that supports custom PINs.",
|
|
16059
|
+
type: "boolean"
|
|
16060
|
+
},
|
|
16054
16061
|
lock_id: {
|
|
16055
16062
|
description: "Lock ID for a Salto KS device.",
|
|
16056
16063
|
type: "string"
|