@seamapi/types 1.145.0 → 1.147.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 +16 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +13 -1
- package/lib/seam/connect/models/devices/unmanaged-device.js +1 -0
- package/lib/seam/connect/models/devices/unmanaged-device.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +19 -0
- package/lib/seam/connect/openapi.js +16 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/unmanaged-device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +17 -0
- package/src/lib/seam/connect/route-types.ts +15 -0
package/dist/connect.cjs
CHANGED
|
@@ -2213,6 +2213,17 @@ var openapi_default = {
|
|
|
2213
2213
|
is_managed: { enum: [false], type: "boolean" },
|
|
2214
2214
|
properties: {
|
|
2215
2215
|
properties: {
|
|
2216
|
+
accessory_keypad: {
|
|
2217
|
+
description: "Represents the accessory keypad state.",
|
|
2218
|
+
properties: {
|
|
2219
|
+
is_connected: {
|
|
2220
|
+
description: "Indicates if the accessory_keypad is connected to the device.",
|
|
2221
|
+
type: "boolean"
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2224
|
+
required: ["is_connected"],
|
|
2225
|
+
type: "object"
|
|
2226
|
+
},
|
|
2216
2227
|
battery: {
|
|
2217
2228
|
description: 'Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage.',
|
|
2218
2229
|
properties: {
|
|
@@ -4244,6 +4255,11 @@ var openapi_default = {
|
|
|
4244
4255
|
type: "string"
|
|
4245
4256
|
},
|
|
4246
4257
|
acs_user_id: { format: "uuid", type: "string" },
|
|
4258
|
+
allowed_acs_entrance_ids: {
|
|
4259
|
+
default: [],
|
|
4260
|
+
items: { format: "uuid", type: "string" },
|
|
4261
|
+
type: "array"
|
|
4262
|
+
},
|
|
4247
4263
|
code: { pattern: "^\\d+$", type: "string" },
|
|
4248
4264
|
credential_manager_acs_system_id: {
|
|
4249
4265
|
format: "uuid",
|