node-red-contrib-homebridge-automation 0.3.0-beta.11 → 0.3.0-beta.13
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/package.json +1 -1
- package/src/hbConfigNode.js +1 -1
- package/src/hbControlNode.js +1 -1
package/package.json
CHANGED
package/src/hbConfigNode.js
CHANGED
|
@@ -88,7 +88,7 @@ class HBConfigNode {
|
|
|
88
88
|
|
|
89
89
|
toList(perms) {
|
|
90
90
|
const supportedTypes = new Set([
|
|
91
|
-
'Battery', 'Carbon Dioxide Sensor', 'Carbon Monoxide Sensor', 'Camera Rtp Stream Management',
|
|
91
|
+
'Air Purifier', 'Air Quality Sensor', 'Battery', 'Carbon Dioxide Sensor', 'Carbon Monoxide Sensor', 'Camera Rtp Stream Management',
|
|
92
92
|
'Doorbell', 'Fan', 'Fanv2', 'Garage Door Opener', 'Humidity Sensor', 'Input Source',
|
|
93
93
|
'Leak Sensor', 'Lightbulb', 'Lock Mechanism', 'Motion Sensor', 'Occupancy Sensor',
|
|
94
94
|
'Outlet', 'Smoke Sensor', 'Speaker', 'Stateless Programmable Switch', 'Switch',
|
package/src/hbControlNode.js
CHANGED
|
@@ -68,7 +68,7 @@ class HbControlNode extends hbBaseNode {
|
|
|
68
68
|
this.error(`${error.message} for ${JSON.stringify(message.payload)}`);
|
|
69
69
|
results.push({ Error: `${error.message} for ${JSON.stringify(message.payload)}` });
|
|
70
70
|
fill = 'red';
|
|
71
|
-
|
|
71
|
+
this.hbConfigNode.disconnectClientNodes(this.hbDevice.instance);
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
/*
|