Update zigbee-shepherd-converters.

This commit is contained in:
Koen Kanters
2019-09-28 00:26:33 +02:00
parent 67f6ccc8a8
commit caf92c5e30
3 changed files with 8 additions and 8 deletions
+6 -6
View File
@@ -4644,9 +4644,9 @@
"dev": true
},
"react-is": {
"version": "16.9.0",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.9.0.tgz",
"integrity": "sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==",
"version": "16.10.0",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.10.0.tgz",
"integrity": "sha512-WRki2sBb7MTpYp7FtDEmSeGKX2vamYyq3rc9o7fKUG+/DHVyJu69NnvJsiSwwhh2Tt8XN40MQHkDBEXwyfxncQ==",
"dev": true
},
"read-pkg": {
@@ -13014,9 +13014,9 @@
}
},
"zigbee-herdsman-converters": {
"version": "11.1.10",
"resolved": "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-11.1.10.tgz",
"integrity": "sha512-Lt6DP6mwgeiL5YEUA60xNp3dzQWltBkf8LjlBK5DLthVVl4h2JbXX+io92ePU8TG+4aXy0bLRCcpsesxzGGVow==",
"version": "11.1.11",
"resolved": "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-11.1.11.tgz",
"integrity": "sha512-wFk1aWZHWFE45ma0v3BYEBmXyHDpwLOy2POhGFqCTBM/Td+8b6KS17clCKMRc9YAhgbf1/IIq0yDUmTfZKVacQ==",
"requires": {
"debounce": "^1.2.0"
}
+1 -1
View File
@@ -46,7 +46,7 @@
"semver": "*",
"winston": "*",
"zigbee-herdsman": "0.7.2",
"zigbee-herdsman-converters": "11.1.10"
"zigbee-herdsman-converters": "11.1.11"
},
"devDependencies": {
"eslint": "*",
+1 -1
View File
@@ -593,7 +593,7 @@ describe('Entity publish', () => {
it('Should use transition only once when setting brightness and color temperature for TRADFRI', async () => {
const device = zigbeeHerdsman.devices.bulb;
const endpoint = device.getEndpoint(1);
const payload = {brightness: 20, state: 'ON', color_temp: 200, transition: 20};
const payload = {state: 'ON', brightness: 20, color_temp: 200, transition: 20};
await MQTT.events.message('zigbee2mqtt/bulb/set', JSON.stringify(payload));
await flushPromises();
expect(endpoint.command).toHaveBeenCalledTimes(2);