@yousolution/node-red-contrib-you-sap-service-layer 0.2.5 → 0.2.6

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ # [0.2.6] - 2025-01-16
6
+
7
+ - Change Manage Empty Respose on ServiceSAP node
8
+
5
9
  # [0.2.5] - 2025-01-16
6
10
 
7
11
  - Bug Fix NextLink Node on Manage Url Value
@@ -19,7 +19,7 @@ module.exports = function (RED) {
19
19
  const options = { method: 'POST', hasRawQuery: false, isService: true, data: data };
20
20
  const login = Support.login;
21
21
  const result = await Support.sendRequest({ node, msg, config, axios, login, options });
22
- msg.payload = VerifyErrorSL(node, msg, result.data);//result.data;
22
+ msg.payload = VerifyErrorSL(node, msg, result.data, true);//result.data;
23
23
  msg.statusCode = result.status;
24
24
  if(msg.payload) {
25
25
  node.status({ fill: 'green', shape: 'dot', text: 'success' });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yousolution/node-red-contrib-you-sap-service-layer",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Unofficial module SAP Service Layer for NODE-RED",
5
5
  "license": "MIT",
6
6
  "scripts": {