@kohost/api-client 3.4.7 → 3.6.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/cjs/schemas/definitions.json +0 -2
- package/dist/cjs/schemas/lock.json +7 -0
- package/dist/esm/Models.js +7 -2
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +7 -2
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/AlarmSchema.d.ts +0 -2
- package/dist/types/schemas/CameraSchema.d.ts +0 -2
- package/dist/types/schemas/CategorySchema.d.ts +0 -2
- package/dist/types/schemas/CourtesySchema.d.ts +0 -2
- package/dist/types/schemas/CredentialSchema.d.ts +0 -2
- package/dist/types/schemas/DimmerSchema.d.ts +0 -2
- package/dist/types/schemas/GatewaySchema.d.ts +0 -2
- package/dist/types/schemas/LockSchema.d.ts +1 -2
- package/dist/types/schemas/MediaSourceSchema.d.ts +0 -2
- package/dist/types/schemas/MotionSensorSchema.d.ts +0 -2
- package/dist/types/schemas/ProductSchema.d.ts +0 -2
- package/dist/types/schemas/ReservationSchema.d.ts +0 -2
- package/dist/types/schemas/RoomSchema.d.ts +1 -20
- package/dist/types/schemas/SpaceSchema.d.ts +0 -2
- package/dist/types/schemas/SwitchSchema.d.ts +0 -2
- package/dist/types/schemas/SystemUserSchema.d.ts +0 -2
- package/dist/types/schemas/ThermostatSchema.d.ts +0 -2
- package/dist/types/schemas/UserSchema.d.ts +0 -2
- package/dist/types/schemas/WindowCoveringSchema.d.ts +0 -2
- package/package.json +1 -1
|
@@ -36,6 +36,13 @@
|
|
|
36
36
|
"description": "AutoLock: Lock automatically locks after set time. Normal - Lock needs told to lock or unlock.",
|
|
37
37
|
"default": "normal"
|
|
38
38
|
},
|
|
39
|
+
"supportedModes": {
|
|
40
|
+
"type": "array",
|
|
41
|
+
"uniqueItems": true,
|
|
42
|
+
"items": {
|
|
43
|
+
"enum": ["normal", "autoLock", "emergencyOpen", "emergencyClose"]
|
|
44
|
+
}
|
|
45
|
+
},
|
|
39
46
|
"batteryLevel": {
|
|
40
47
|
"$ref": "definitions.json#/definitions/batteryLevel"
|
|
41
48
|
},
|
package/dist/esm/Models.js
CHANGED
|
@@ -7233,7 +7233,6 @@ var require_definitions = __commonJS({
|
|
|
7233
7233
|
"kohost",
|
|
7234
7234
|
"lg",
|
|
7235
7235
|
"lg-webos",
|
|
7236
|
-
"rtsp",
|
|
7237
7236
|
"lapi",
|
|
7238
7237
|
"lirc",
|
|
7239
7238
|
"mews",
|
|
@@ -7250,7 +7249,6 @@ var require_definitions = __commonJS({
|
|
|
7250
7249
|
"stay-n-touch",
|
|
7251
7250
|
"storable",
|
|
7252
7251
|
"twilio",
|
|
7253
|
-
"unifi",
|
|
7254
7252
|
"valcom",
|
|
7255
7253
|
"vizio",
|
|
7256
7254
|
"wisenet",
|
|
@@ -8517,6 +8515,13 @@ var require_lock = __commonJS({
|
|
|
8517
8515
|
description: "AutoLock: Lock automatically locks after set time. Normal - Lock needs told to lock or unlock.",
|
|
8518
8516
|
default: "normal"
|
|
8519
8517
|
},
|
|
8518
|
+
supportedModes: {
|
|
8519
|
+
type: "array",
|
|
8520
|
+
uniqueItems: true,
|
|
8521
|
+
items: {
|
|
8522
|
+
enum: ["normal", "autoLock", "emergencyOpen", "emergencyClose"]
|
|
8523
|
+
}
|
|
8524
|
+
},
|
|
8520
8525
|
batteryLevel: {
|
|
8521
8526
|
$ref: "definitions.json#/definitions/batteryLevel"
|
|
8522
8527
|
},
|