zigbee-herdsman-converters 19.2.0 → 19.2.1
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 +7 -0
- package/devices/lumi.js +2 -2
- package/devices/lumi.js.map +1 -1
- package/lib/lumi.d.ts +2 -0
- package/lib/lumi.d.ts.map +1 -1
- package/lib/lumi.js +5 -1
- package/lib/lumi.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [19.2.1](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v19.2.0...v19.2.1) (2024-03-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ignore:** fix a18cdee95434aa7b71294a34c34f3703cf18d33b ([3770d59](https://github.com/Koenkk/zigbee-herdsman-converters/commit/3770d59b11ad9397a03fc9b9ca0e0003e55fff5a))
|
|
9
|
+
|
|
3
10
|
## [19.2.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v19.1.1...v19.2.0) (2024-03-14)
|
|
4
11
|
|
|
5
12
|
|
package/devices/lumi.js
CHANGED
|
@@ -3272,7 +3272,7 @@ const definitions = [
|
|
|
3272
3272
|
extend: [
|
|
3273
3273
|
(0, modernExtend_1.deviceEndpoints)({ endpoints: { 'white': 1, 'rgb': 2 } }),
|
|
3274
3274
|
lumiLight({ colorTemp: true, powerOutageMemory: 'light', endpointNames: ['white'] }),
|
|
3275
|
-
lumiLight({ colorTemp: true, color: { modes: ['xy', 'hs'] }, endpointNames: ['rgb'] }),
|
|
3275
|
+
lumiLight({ colorTemp: true, deviceTemperature: false, powerOutageCount: false, color: { modes: ['xy', 'hs'] }, endpointNames: ['rgb'] }),
|
|
3276
3276
|
lumiZigbeeOTA(),
|
|
3277
3277
|
],
|
|
3278
3278
|
},
|
|
@@ -3284,7 +3284,7 @@ const definitions = [
|
|
|
3284
3284
|
extend: [
|
|
3285
3285
|
(0, modernExtend_1.deviceEndpoints)({ endpoints: { 'white': 1, 'rgb': 2 } }),
|
|
3286
3286
|
lumiLight({ colorTemp: true, powerOutageMemory: 'light', endpointNames: ['white'] }),
|
|
3287
|
-
lumiLight({ colorTemp: true, color: { modes: ['xy', 'hs'] }, endpointNames: ['rgb'] }),
|
|
3287
|
+
lumiLight({ colorTemp: true, deviceTemperature: false, powerOutageCount: false, color: { modes: ['xy', 'hs'] }, endpointNames: ['rgb'] }),
|
|
3288
3288
|
lumiZigbeeOTA(),
|
|
3289
3289
|
],
|
|
3290
3290
|
},
|