zigbee-herdsman-converters 25.54.0 → 25.55.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 +16 -0
- package/dist/converters/fromZigbee.js +1 -1
- package/dist/converters/fromZigbee.js.map +1 -1
- package/dist/devices/lumi.d.ts.map +1 -1
- package/dist/devices/lumi.js +0 -1
- package/dist/devices/lumi.js.map +1 -1
- package/dist/devices/philips.d.ts.map +1 -1
- package/dist/devices/philips.js +7 -0
- package/dist/devices/philips.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +60 -0
- package/dist/devices/tuya.js.map +1 -1
- package/dist/devices/weten.js +1 -1
- package/dist/devices/weten.js.map +1 -1
- package/dist/lib/lumi.js +4 -4
- package/dist/lib/lumi.js.map +1 -1
- package/dist/lib/store.d.ts +2 -2
- package/dist/lib/store.d.ts.map +1 -1
- package/dist/lib/store.js +21 -14
- package/dist/lib/store.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [25.55.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v25.54.0...v25.55.0) (2025-10-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **add:** 929003808601 ([#10539](https://github.com/Koenkk/zigbee-herdsman-converters/issues/10539)) ([c5cd802](https://github.com/Koenkk/zigbee-herdsman-converters/commit/c5cd802be74deedfd5ca73dccffae7eafab8820c))
|
|
9
|
+
* **add:** BOT-R15W ([#10537](https://github.com/Koenkk/zigbee-herdsman-converters/issues/10537)) ([b1496d1](https://github.com/Koenkk/zigbee-herdsman-converters/commit/b1496d18419bedc6ef44d4904e18a607bf05d180))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **detect:** Detect `_TZ3000_qorepo2x` as Tuya TS0001_power https://github.com/Koenkk/zigbee2mqtt/issues/29202 ([7e56f60](https://github.com/Koenkk/zigbee-herdsman-converters/commit/7e56f600150b72ba5921eb72311476fdcf3ad44e))
|
|
15
|
+
* **detect:** Detect `_TZE284_6fk3gewc` as WETEN PCI E https://github.com/Koenkk/zigbee-herdsman-converters/issues/10538 ([5a01a59](https://github.com/Koenkk/zigbee-herdsman-converters/commit/5a01a593aff8354a265929f2ccfe116b3e12b964))
|
|
16
|
+
* **ignore:** bump the minor-patch group with 2 updates ([#10534](https://github.com/Koenkk/zigbee-herdsman-converters/issues/10534)) ([38f4c79](https://github.com/Koenkk/zigbee-herdsman-converters/commit/38f4c799ca8ac94a205a910c0fe8a51dc6352f83))
|
|
17
|
+
* Improve store ([#10529](https://github.com/Koenkk/zigbee-herdsman-converters/issues/10529)) ([4c4a6ab](https://github.com/Koenkk/zigbee-herdsman-converters/commit/4c4a6abfe0a24dd15bf3ec5a7161d742400630eb))
|
|
18
|
+
|
|
3
19
|
## [25.54.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v25.53.0...v25.54.0) (2025-10-26)
|
|
4
20
|
|
|
5
21
|
|
|
@@ -1463,7 +1463,7 @@ exports.command_stop = {
|
|
|
1463
1463
|
return;
|
|
1464
1464
|
if (options.simulated_brightness) {
|
|
1465
1465
|
clearInterval(globalStore.getValue(msg.endpoint, "simulated_brightness_timer"));
|
|
1466
|
-
globalStore.
|
|
1466
|
+
globalStore.clearValue(msg.endpoint, "simulated_brightness_timer");
|
|
1467
1467
|
}
|
|
1468
1468
|
const payload = { action: (0, utils_1.postfixWithEndpointName)("brightness_stop", msg, model, meta) };
|
|
1469
1469
|
(0, utils_1.addActionGroup)(payload, msg, model);
|