configurapi-runner-ws 1.1.0 → 1.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/wsAdapter.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "configurapi-runner-ws",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Websocket runner for configurapi.",
5
5
  "bin": {
6
6
  "configurapi-runner-ws": "src/app.mjs"
package/src/wsAdapter.js CHANGED
@@ -146,6 +146,7 @@ module.exports = {
146
146
  request.headers = data.headers || {};
147
147
  request.name = data.name || undefined;
148
148
  request.query = data.query || {};
149
+ request.params = data.params || {};
149
150
  request.payload = data.payload || undefined;
150
151
 
151
152
  request.headers['connectionId'] = ws.connectionId;