@thingwala/node-red-contrib-geyserwala-connect 0.0.9 → 0.0.10

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log - Geyserwala Connect - Node-RED Plugin
2
2
 
3
+ ## [0.0.10] - 2026-03-14
4
+
5
+ ### Fixed
6
+
7
+ REST connector full topic handling
8
+
3
9
  ## [0.0.9] - 2026-02-15
4
10
 
5
11
  Add 'Full Topic' node option
package/README.md CHANGED
@@ -5,7 +5,7 @@ Geyserwala Connect - Node-RED Integration <!-- omit in toc -->
5
5
 
6
6
  ## Usage
7
7
 
8
- Use these nodes to integrate with your Geyserwala Connect to automate your Geyserwise system from Node-RED. For more detail see the [Integration](https://www.thingwala.com/geyserwala/connect/integration) section in the manual.
8
+ Use these nodes to integrate with your Geyserwala Connect to automate your geyser controller from Node-RED. For more detail see the [Integration](https://www.thingwala.com/geyserwala/connect/integration) section in the manual.
9
9
 
10
10
 
11
11
  # Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thingwala/node-red-contrib-geyserwala-connect",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Node-RED nodes for the Geyserwala Connect",
5
5
  "author": "Thingwala",
6
6
  "license": "MIT",
@@ -60,7 +60,7 @@ class GeyserwalaConnectorRest {
60
60
  }
61
61
  for (const node of this.subscriptions[key]) {
62
62
  try {
63
- node.onValue(blob[key])
63
+ node.onValue(`${this.host}:${this.port}/${key}`, blob[key])
64
64
  } catch (error) {
65
65
  this.RED.log.error(`{Geyserwala Connect} Handling messsage: ${error.message} [${key}] "${blob[key]}"`);
66
66
  }