zigbee-herdsman-converters 25.90.0 → 25.92.0
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/CHANGELOG.md +44 -0
- package/dist/devices/ewelink.d.ts.map +1 -1
- package/dist/devices/ewelink.js +2 -1
- package/dist/devices/ewelink.js.map +1 -1
- package/dist/devices/gledopto.js +1 -1
- package/dist/devices/gledopto.js.map +1 -1
- package/dist/devices/inovelli.js +1 -1
- package/dist/devices/inovelli.js.map +1 -1
- package/dist/devices/lightsolutions.d.ts.map +1 -1
- package/dist/devices/lightsolutions.js +7 -0
- package/dist/devices/lightsolutions.js.map +1 -1
- package/dist/devices/lincukoo.d.ts.map +1 -1
- package/dist/devices/lincukoo.js +8 -0
- package/dist/devices/lincukoo.js.map +1 -1
- package/dist/devices/lumi.d.ts.map +1 -1
- package/dist/devices/lumi.js +60 -54
- package/dist/devices/lumi.js.map +1 -1
- package/dist/devices/philips.d.ts.map +1 -1
- package/dist/devices/philips.js +10 -2
- package/dist/devices/philips.js.map +1 -1
- package/dist/devices/somfy.d.ts.map +1 -1
- package/dist/devices/somfy.js +7 -0
- package/dist/devices/somfy.js.map +1 -1
- package/dist/devices/sonoff.d.ts.map +1 -1
- package/dist/devices/sonoff.js +42 -53
- package/dist/devices/sonoff.js.map +1 -1
- package/dist/devices/third_reality.d.ts.map +1 -1
- package/dist/devices/third_reality.js +98 -34
- package/dist/devices/third_reality.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +119 -8
- package/dist/devices/tuya.js.map +1 -1
- package/dist/lib/lumi.d.ts +5 -0
- package/dist/lib/lumi.d.ts.map +1 -1
- package/dist/lib/lumi.js +250 -0
- package/dist/lib/lumi.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"philips.d.ts","sourceRoot":"","sources":["../../src/devices/philips.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAC,oBAAoB,EAAS,MAAM,cAAc,CAAC;AA0J/D,eAAO,MAAM,WAAW,EAAE,oBAAoB,
|
|
1
|
+
{"version":3,"file":"philips.d.ts","sourceRoot":"","sources":["../../src/devices/philips.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAC,oBAAoB,EAAS,MAAM,cAAc,CAAC;AA0J/D,eAAO,MAAM,WAAW,EAAE,oBAAoB,EA+gJ7C,CAAC"}
|
package/dist/devices/philips.js
CHANGED
|
@@ -217,10 +217,18 @@ exports.definitions = [
|
|
|
217
217
|
extend: [philips.m.light({ colorTemp: { range: [153, 454] } })],
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
|
-
zigbeeModel: ["929003809401"],
|
|
220
|
+
zigbeeModel: ["929003809201", "929003809401"],
|
|
221
221
|
model: "929003809401",
|
|
222
222
|
vendor: "Philips",
|
|
223
|
-
description: "Hue White and Color Ambiance GU10 (Centura)",
|
|
223
|
+
description: "Hue White and Color Ambiance GU10 (Centura - Black)",
|
|
224
|
+
whiteLabel: [
|
|
225
|
+
{
|
|
226
|
+
model: "929003809201",
|
|
227
|
+
vendor: "Philips",
|
|
228
|
+
description: "Hue White and Color Ambiance GU10 (Centura - Silver)",
|
|
229
|
+
fingerprint: [{ modelID: "929003809201" }],
|
|
230
|
+
},
|
|
231
|
+
],
|
|
224
232
|
extend: [philips.m.light({ colorTemp: { range: [153, 500] }, color: { modes: ["xy", "hs"], enhancedHue: true } })],
|
|
225
233
|
},
|
|
226
234
|
{
|