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.
@@ -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.11",
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",