diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 980062e3d1..887483a63d 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -2811,9 +2811,9 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "inquirer": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.4.1.tgz", - "integrity": "sha512-/Jw+qPZx4EDYsaT6uz7F4GJRNFMRdKNeUZw3ZnKV8lyuUgz/YWRCSUAJMZSVhSq4Ec0R2oYnyi6b3d4JXcL5Nw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.0.tgz", + "integrity": "sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA==", "dev": true, "requires": { "ansi-escapes": "^3.2.0", @@ -2822,7 +2822,7 @@ "cli-width": "^2.0.0", "external-editor": "^3.0.3", "figures": "^2.0.0", - "lodash": "^4.17.11", + "lodash": "^4.17.12", "mute-stream": "0.0.7", "run-async": "^2.2.0", "rxjs": "^6.4.0", @@ -5191,9 +5191,9 @@ } }, "spdx-license-ids": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz", - "integrity": "sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", + "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", "dev": true }, "split-string": { @@ -12489,9 +12489,9 @@ } }, "zigbee-shepherd-converters": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/zigbee-shepherd-converters/-/zigbee-shepherd-converters-10.1.2.tgz", - "integrity": "sha512-jPRa8rsF+fGtHjGeggzeki7tswOklvKUaWuF9KgImWysEWyvR8XpKx+0Z6I13PdvGaBsC5wTAQebjzNJ/Wcxyg==", + "version": "10.1.3", + "resolved": "https://registry.npmjs.org/zigbee-shepherd-converters/-/zigbee-shepherd-converters-10.1.3.tgz", + "integrity": "sha512-+nOTLtKe4GLD/M0+FyWxFYtVkMisEo+56Ud4Fsf3+2hBR37LBwxAQe73CR6j3wCH6hO/xF7xPXNbjk6CHUHccg==", "requires": { "chai": "*", "debounce": "*", diff --git a/package.json b/package.json index f2259f539a..e90aa28292 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "semver": "*", "winston": "2.4.2", "zigbee-herdsman": "0.1.16", - "zigbee-shepherd-converters": "10.1.2", + "zigbee-shepherd-converters": "10.1.3", "deep-diff": "*" }, "devDependencies": { diff --git a/test/devicePublish.test.js b/test/devicePublish.test.js index 53da8b582f..ad662634e5 100644 --- a/test/devicePublish.test.js +++ b/test/devicePublish.test.js @@ -486,7 +486,7 @@ describe('DevicePublish', () => { 'lightingColorCtrl', 'moveToColor', 'functional', - {colorx: 17085, colory: 44000, transtime: 0}, + {colorx: 17806, colory: 43155, transtime: 0}, cfg.default, null, expect.any(Function)); @@ -495,7 +495,7 @@ describe('DevicePublish', () => { expect(publishEntityState).toHaveBeenCalledTimes(1); expect(publishEntityState).toHaveBeenNthCalledWith(1, '0x00000016', - {color: {x: 0.2607, y: 0.6714}}); + {color: {x: 0.2717, y: 0.6585}}); }); it('Should publish messages to zigbee devices with color rgb string', async () => { @@ -510,7 +510,7 @@ describe('DevicePublish', () => { 'lightingColorCtrl', 'moveToColor', 'functional', - {colorx: 17085, colory: 44000, transtime: 0}, + {colorx: 17806, colory: 43155, transtime: 0}, cfg.default, null, expect.any(Function)); @@ -519,7 +519,7 @@ describe('DevicePublish', () => { expect(publishEntityState).toHaveBeenCalledTimes(1); expect(publishEntityState).toHaveBeenNthCalledWith(1, '0x00000017', - {color: {x: 0.2607, y: 0.6714}}); + {color: {x: 0.2717, y: 0.6585}}); } );