@seamapi/types 1.147.1 → 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 +20 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +68 -0
- package/lib/seam/connect/models/devices/managed-device.d.ts +50 -0
- package/lib/seam/connect/models/devices/managed-device.js +6 -0
- package/lib/seam/connect/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +25 -0
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +20 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +44 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/managed-device.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +21 -0
- package/src/lib/seam/connect/route-types.ts +66 -0
package/dist/connect.cjs
CHANGED
|
@@ -688,6 +688,18 @@ var openapi_default = {
|
|
|
688
688
|
accessory_keypad: {
|
|
689
689
|
description: "Represents the accessory keypad state.",
|
|
690
690
|
properties: {
|
|
691
|
+
battery: {
|
|
692
|
+
description: "Indicates if the keypad battery properties.",
|
|
693
|
+
properties: {
|
|
694
|
+
level: {
|
|
695
|
+
maximum: 1,
|
|
696
|
+
minimum: 0,
|
|
697
|
+
type: "number"
|
|
698
|
+
}
|
|
699
|
+
},
|
|
700
|
+
required: ["level"],
|
|
701
|
+
type: "object"
|
|
702
|
+
},
|
|
691
703
|
is_connected: {
|
|
692
704
|
description: "Indicates if the accessory_keypad is connected to the device.",
|
|
693
705
|
type: "boolean"
|
|
@@ -2203,6 +2215,14 @@ var openapi_default = {
|
|
|
2203
2215
|
accessory_keypad: {
|
|
2204
2216
|
description: "Represents the accessory keypad state.",
|
|
2205
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
|
+
},
|
|
2206
2226
|
is_connected: {
|
|
2207
2227
|
description: "Indicates if the accessory_keypad is connected to the device.",
|
|
2208
2228
|
type: "boolean"
|