homebridge-easy-mqtt 1.4.0-beta.11 → 1.4.0-beta.12
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/CHANGELOG.md +2 -2
- package/README.md +25 -2
- package/config.schema.json +217 -3
- package/dist/accessory/abstract/helper.js +5 -2
- package/dist/accessory/abstract/helper.js.map +1 -1
- package/dist/accessory/garage.d.ts +17 -0
- package/dist/accessory/garage.js +110 -0
- package/dist/accessory/garage.js.map +1 -0
- package/dist/accessory/lock.d.ts +2 -2
- package/dist/accessory/lock.js +3 -3
- package/dist/accessory/lock.js.map +1 -1
- package/dist/homebridge-ui/public/index.html +1 -1
- package/dist/homebridge-ui/public/ui.js +1 -1
- package/dist/i18n/en.d.ts +30 -0
- package/dist/i18n/en.js +30 -0
- package/dist/i18n/en.js.map +1 -1
- package/dist/i18n/fr.d.ts +30 -0
- package/dist/i18n/i18n.d.ts +30 -0
- package/dist/i18n/ro.d.ts +30 -0
- package/dist/i18n/template.d.ts +30 -0
- package/dist/model/enums.d.ts +4 -0
- package/dist/model/enums.js +4 -0
- package/dist/model/enums.js.map +1 -1
- package/dist/model/types.d.ts +18 -0
- package/package.json +1 -1
package/dist/model/types.d.ts
CHANGED
|
@@ -186,6 +186,24 @@ export type PurifierConfig = ActiveClimateConfig & FilterMaintenanceConfig & {
|
|
|
186
186
|
valueModeManual?: string;
|
|
187
187
|
valueModePurifying?: string;
|
|
188
188
|
};
|
|
189
|
+
export type GarageDoorConfig = LockConfig & {
|
|
190
|
+
topicGetCurrentDoorState: string;
|
|
191
|
+
topicGetCurrentLockState?: string;
|
|
192
|
+
topicGetObstructionDetected: string;
|
|
193
|
+
topicGetTargetDoorState: string;
|
|
194
|
+
topicGetTargetLockState?: string;
|
|
195
|
+
topicSetTargetDoorState: string;
|
|
196
|
+
topicSetTargetLockState?: string;
|
|
197
|
+
valueDoorObstructed: string;
|
|
198
|
+
valueDoorStateClosed?: string;
|
|
199
|
+
valueDoorStateClosing?: string;
|
|
200
|
+
valueDoorStateOpen?: string;
|
|
201
|
+
valueDoorStateOpening?: string;
|
|
202
|
+
valueDoorStateStopped?: string;
|
|
203
|
+
valueLockStateJammed?: string;
|
|
204
|
+
valueLockStateSecured?: string;
|
|
205
|
+
valueLockStateUnsecured?: string;
|
|
206
|
+
};
|
|
189
207
|
export type LockConfig = BaseAccessoryConfig & {
|
|
190
208
|
topicGetCurrentLockState: string;
|
|
191
209
|
topicGetTargetLockState: string;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"displayName": "Homebridge Easy MQTT",
|
|
5
5
|
"description": "Homebridge plugin for easy control of MQTT devices",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"version": "1.4.0-beta.
|
|
7
|
+
"version": "1.4.0-beta.12",
|
|
8
8
|
"homepage": "https://github.com/mpatfield/homebridge-easy-mqtt#readme",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|