matterbridge-zigbee2mqtt 2.3.0-dev.1 → 2.3.0-dev.3
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 +3 -2
- package/README.md +2 -0
- package/dist/entity.js +10 -247
- package/dist/index.js +0 -35
- package/dist/payloadTypes.js +0 -23
- package/dist/platform.js +3 -50
- package/dist/zigbee2mqtt.js +22 -272
- package/dist/zigbee2mqttTypes.js +0 -23
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/tsconfig.production.json +19 -0
- package/dist/entity.d.ts +0 -492
- package/dist/entity.d.ts.map +0 -1
- package/dist/entity.js.map +0 -1
- package/dist/index.d.ts +0 -40
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/payloadTypes.d.ts +0 -25
- package/dist/payloadTypes.d.ts.map +0 -1
- package/dist/payloadTypes.js.map +0 -1
- package/dist/platform.d.ts +0 -88
- package/dist/platform.d.ts.map +0 -1
- package/dist/platform.js.map +0 -1
- package/dist/zigbee2mqtt.d.ts +0 -182
- package/dist/zigbee2mqtt.d.ts.map +0 -1
- package/dist/zigbee2mqtt.js.map +0 -1
- package/dist/zigbee2mqttTypes.d.ts +0 -350
- package/dist/zigbee2mqttTypes.d.ts.map +0 -1
- package/dist/zigbee2mqttTypes.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,18 +4,19 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
4
4
|
|
|
5
5
|
All notable changes to this project will be documented in this file.
|
|
6
6
|
|
|
7
|
-
## [2.3.0] - 2024-12-
|
|
7
|
+
## [2.3.0] - 2024-12-XX
|
|
8
8
|
|
|
9
9
|
### Added
|
|
10
10
|
|
|
11
11
|
- [matterbridge]: Verified to work with Matterbridge edge (matter.js new API).
|
|
12
|
-
- [covers]: Add position movement to the controller.
|
|
12
|
+
- [covers]: Add position movement updates to the controller.
|
|
13
13
|
- [covers]: Fix group cover at controller.
|
|
14
14
|
- [zigbeeEntity]: Add create async to ZigbeeDevice and ZigbeeGroup.
|
|
15
15
|
|
|
16
16
|
### Changed
|
|
17
17
|
|
|
18
18
|
- [package]: Updated dependencies.
|
|
19
|
+
- [plugin]: Requires Matterbridge 1.6.5.
|
|
19
20
|
|
|
20
21
|
### Fixed
|
|
21
22
|
|
package/README.md
CHANGED
|
@@ -17,6 +17,8 @@ Matterbridge zigbee2mqtt is a matterbridge production-level plugin that expose a
|
|
|
17
17
|
|
|
18
18
|
No hub or dedicated hardware needed.
|
|
19
19
|
|
|
20
|
+
Interested in super fast and autonomous automations for zigbee2mqtt? Try this: https://github.com/Luligu/zigbee2mqtt-automations
|
|
21
|
+
|
|
20
22
|
If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-zigbee2mqtt and sponsoring it.
|
|
21
23
|
|
|
22
24
|
## Prerequisites
|