Update zigbee-herdsman-converters to 14.0.44 (#6055)

* Update zigbee-herdsman-converters to 14.0.44

* Update availability.test.js

Co-authored-by: Koenkk <Koenkk@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
This commit is contained in:
github-actions[bot]
2021-02-02 22:50:22 +01:00
committed by GitHub
co-authored by Koenkk Koen Kanters
parent ed7f12eb89
commit f042b9df2c
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -14527,9 +14527,9 @@
}
},
"zigbee-herdsman-converters": {
"version": "14.0.43",
"resolved": "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.43.tgz",
"integrity": "sha512-ADjA05nVHi4JFuMRyAzNwmdwjzVME3gh+6w2xxN9E77hVEMOz5/43g23ldTyFN2+kryTrrOzrUXeLi9Oe7SoaQ==",
"version": "14.0.44",
"resolved": "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.44.tgz",
"integrity": "sha512-B1w6THiO+4flWYpBPfgsQvcoZlVGkI3m+ywgWV71L5y+1NAUhmoD63JPDBNQG9shwPLsPk0wOJ5ROkX2qJRnVw==",
"requires": {
"axios": "^0.21.1",
"buffer-crc32": "^0.2.13",
+1 -1
View File
@@ -52,7 +52,7 @@
"winston-syslog": "^2.4.4",
"ws": "^7.3.1",
"zigbee-herdsman": "0.13.61",
"zigbee-herdsman-converters": "14.0.43",
"zigbee-herdsman-converters": "14.0.44",
"zigbee2mqtt-frontend": "0.3.23"
},
"devDependencies": {
+1 -1
View File
@@ -175,7 +175,7 @@ describe('Availability', () => {
expect(endpoint.read).toHaveBeenCalledTimes(4);
expect(endpoint.read).toHaveBeenCalledWith('genLevelCtrl', ['currentLevel']);
expect(endpoint.read).toHaveBeenCalledWith('genOnOff', ['onOff']);
expect(endpoint.read).toHaveBeenCalledWith('lightingColorCtrl', ['currentX', 'currentY']);
expect(endpoint.read).toHaveBeenCalledWith('lightingColorCtrl', ['currentX', 'currentY', 'currentHue', 'currentSaturation']);
expect(endpoint.read).toHaveBeenCalledWith('lightingColorCtrl', ['colorTemperature']);
});