@seamapi/types 1.148.0 → 1.148.1
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 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -2215,6 +2215,14 @@ var openapi_default = {
|
|
|
2215
2215
|
accessory_keypad: {
|
|
2216
2216
|
description: "Represents the accessory keypad state.",
|
|
2217
2217
|
properties: {
|
|
2218
|
+
battery: {
|
|
2219
|
+
description: "Indicates if the keypad battery properties.",
|
|
2220
|
+
properties: {
|
|
2221
|
+
level: { maximum: 1, minimum: 0, type: "number" }
|
|
2222
|
+
},
|
|
2223
|
+
required: ["level"],
|
|
2224
|
+
type: "object"
|
|
2225
|
+
},
|
|
2218
2226
|
is_connected: {
|
|
2219
2227
|
description: "Indicates if the accessory_keypad is connected to the device.",
|
|
2220
2228
|
type: "boolean"
|