matterbridge-zigbee2mqtt 2.3.0-dev.2 → 2.3.0-dev.4
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 +1 -1
- package/README.md +2 -0
- package/dist/entity.js +1 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/tsconfig.production.json +3 -9
package/CHANGELOG.md
CHANGED
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
|
package/dist/entity.js
CHANGED
|
@@ -964,6 +964,7 @@ export class ZigbeeDevice extends ZigbeeEntity {
|
|
|
964
964
|
}
|
|
965
965
|
if (!zigbeeDevice.verifyMutableDevice(zigbeeDevice.bridgedDevice))
|
|
966
966
|
return zigbeeDevice;
|
|
967
|
+
zigbeeDevice.mutableDevice.clear();
|
|
967
968
|
zigbeeDevice.logPropertyMap();
|
|
968
969
|
zigbeeDevice.bridgedDevice.addCommandHandler('identify', async (data) => {
|
|
969
970
|
zigbeeDevice.log.debug(`Command identify called for ${zigbeeDevice.ien}${device.friendly_name}${rs}${db} endpoint: ${data.endpoint.number} request identifyTime:${data.request.identifyTime} `);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-zigbee2mqtt",
|
|
3
|
-
"version": "2.3.0-dev.
|
|
3
|
+
"version": "2.3.0-dev.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-zigbee2mqtt",
|
|
9
|
-
"version": "2.3.0-dev.
|
|
9
|
+
"version": "2.3.0-dev.4",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"moment": "2.30.1",
|
package/package.json
CHANGED
package/tsconfig.production.json
CHANGED
|
@@ -8,12 +8,6 @@
|
|
|
8
8
|
"sourceMap": false,
|
|
9
9
|
"removeComments": true
|
|
10
10
|
},
|
|
11
|
-
"include": [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"exclude": [
|
|
15
|
-
"**/*.spec.ts",
|
|
16
|
-
"**/*.test.ts",
|
|
17
|
-
"**/__test__/*"
|
|
18
|
-
]
|
|
19
|
-
}
|
|
11
|
+
"include": ["src/**/*.ts"],
|
|
12
|
+
"exclude": ["**/*.spec.ts", "**/*.test.ts", "**/__test__/*"]
|
|
13
|
+
}
|