node-red-contrib-zwave-js 9.0.2 → 9.0.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 +12 -0
- package/package.json +6 -6
- package/zwave-js/zwave-js.js +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# node-red-contrib-zwave-js Change Log
|
|
2
2
|
|
|
3
|
+
- 9.0.4
|
|
4
|
+
|
|
5
|
+
**Maintenance Release**
|
|
6
|
+
- Update dependencies
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
- 9.0.3
|
|
10
|
+
|
|
11
|
+
**Maintenance Release**
|
|
12
|
+
- Update dependencies
|
|
13
|
+
- Update Node/UI status with regards to Route Rebuilding
|
|
14
|
+
|
|
3
15
|
- 9.0.2
|
|
4
16
|
|
|
5
17
|
**Bug Fixes**
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-zwave-js",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "The most powerful, high performing and highly polished Z-Wave node for Node-RED based on Z-Wave JS. If you want a fully featured Z-Wave framework in your Node-RED instance, you have found it.",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"limiter": "^2.1.0",
|
|
8
8
|
"lodash": "^4.17.21",
|
|
9
|
-
"winston": "^3.
|
|
10
|
-
"winston-transport": "^4.
|
|
11
|
-
"zwave-js": "^12.
|
|
9
|
+
"winston": "^3.13.0",
|
|
10
|
+
"winston-transport": "^4.7.0",
|
|
11
|
+
"zwave-js": "^12.5.6"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"eslint": "^
|
|
15
|
-
"prettier": "^3.
|
|
14
|
+
"eslint": "^9.1.1",
|
|
15
|
+
"prettier": "^3.2.5"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"validate": "node-red-dev validate -o validation_result.json"
|
package/zwave-js/zwave-js.js
CHANGED
|
@@ -1212,9 +1212,9 @@ module.exports = function (RED) {
|
|
|
1212
1212
|
SetFlowNodeStatus({
|
|
1213
1213
|
fill: 'yellow',
|
|
1214
1214
|
shape: 'dot',
|
|
1215
|
-
text: 'Node
|
|
1215
|
+
text: 'Rebuild Node Routes Started: ' + Params[0]
|
|
1216
1216
|
});
|
|
1217
|
-
UI.Status('Node
|
|
1217
|
+
UI.Status('Rebuild Node Routes Started: ' + Params[0]);
|
|
1218
1218
|
const HealResponse = await Driver.controller.rebuildNodeRoutes(
|
|
1219
1219
|
Params[0]
|
|
1220
1220
|
);
|
|
@@ -1222,16 +1222,16 @@ module.exports = function (RED) {
|
|
|
1222
1222
|
SetFlowNodeStatus({
|
|
1223
1223
|
fill: 'green',
|
|
1224
1224
|
shape: 'dot',
|
|
1225
|
-
text: 'Node
|
|
1225
|
+
text: 'Rebuild Node Routes Successful: ' + Params[0]
|
|
1226
1226
|
});
|
|
1227
|
-
UI.Status('Node
|
|
1227
|
+
UI.Status('Rebuild Node Routes Successful ' + Params[0]);
|
|
1228
1228
|
} else {
|
|
1229
1229
|
SetFlowNodeStatus({
|
|
1230
1230
|
fill: 'red',
|
|
1231
1231
|
shape: 'dot',
|
|
1232
|
-
text: 'Node
|
|
1232
|
+
text: 'Rebuild Node Routes Unsuccessful: ' + Params[0]
|
|
1233
1233
|
});
|
|
1234
|
-
UI.Status('Node
|
|
1234
|
+
UI.Status('Rebuild Node Routes Unsuccessful: ' + Params[0]);
|
|
1235
1235
|
}
|
|
1236
1236
|
Send(
|
|
1237
1237
|
ReturnNode,
|
|
@@ -1248,9 +1248,9 @@ module.exports = function (RED) {
|
|
|
1248
1248
|
SetFlowNodeStatus({
|
|
1249
1249
|
fill: 'yellow',
|
|
1250
1250
|
shape: 'dot',
|
|
1251
|
-
text: '
|
|
1251
|
+
text: 'Route Rebuilding Started.'
|
|
1252
1252
|
});
|
|
1253
|
-
UI.Status('
|
|
1253
|
+
UI.Status('Route Rebuilding Started.');
|
|
1254
1254
|
break;
|
|
1255
1255
|
|
|
1256
1256
|
case 'stopRebuildingRoutes':
|
|
@@ -1259,9 +1259,9 @@ module.exports = function (RED) {
|
|
|
1259
1259
|
SetFlowNodeStatus({
|
|
1260
1260
|
fill: 'blue',
|
|
1261
1261
|
shape: 'dot',
|
|
1262
|
-
text: '
|
|
1262
|
+
text: 'Route Rebuilding Stopped.'
|
|
1263
1263
|
});
|
|
1264
|
-
UI.Status('
|
|
1264
|
+
UI.Status('Route Rebuilding Stopped.');
|
|
1265
1265
|
RestoreReadyStatus();
|
|
1266
1266
|
break;
|
|
1267
1267
|
|
|
@@ -1930,7 +1930,7 @@ module.exports = function (RED) {
|
|
|
1930
1930
|
'VALUE_ID_LIST',
|
|
1931
1931
|
'GET_VALUE_RESPONSE',
|
|
1932
1932
|
'GET_VALUE_METADATA_RESPONSE',
|
|
1933
|
-
|
|
1933
|
+
'VALUE_TIMESTAMP'
|
|
1934
1934
|
];
|
|
1935
1935
|
|
|
1936
1936
|
const TimestampSubjects = [
|