@yousolution/node-red-contrib-you-sap-service-layer 0.0.3 → 0.0.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 +13 -3
- package/data/package.json +2 -2
- package/nodes/closeSap.html +2 -2
- package/nodes/createSap.html +7 -7
- package/nodes/crossJoinSap.html +269 -263
- package/nodes/deleteSap.html +7 -7
- package/nodes/getSap.html +7 -7
- package/nodes/listSap.html +5 -5
- package/nodes/manipulateEntitySap.html +177 -0
- package/nodes/manipulateEntitySap.js +43 -0
- package/nodes/nextLink.html +1 -1
- package/nodes/patchSap.html +6 -6
- package/nodes/serviceSap.html +207 -0
- package/nodes/serviceSap.js +41 -0
- package/nodes/support.js +29 -3
- package/package.json +4 -2
- package/resources/entities.json +59 -0
- package/resources/services.json +343 -0
- package/test/manipulateEntitySap.spec.js +191 -0
- package/test/serviceSap.spec.js +170 -0
- package/test/support.spec.js +280 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
# [0.0.
|
|
5
|
+
# [0.0.5] - 2022-05-27
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- Change cross join
|
|
8
|
+
- Fix html icons
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
# [0.0.4] - 2022-05-12
|
|
11
|
+
|
|
12
|
+
- Add all services of SAP service layer
|
|
13
|
+
- Add manipulate entity
|
|
10
14
|
|
|
11
15
|
# [0.0.3] - 2022-04-15
|
|
12
16
|
|
|
13
17
|
- Refactoring and add unit tests
|
|
18
|
+
|
|
19
|
+
# [0.0.1] - 2021-11-22
|
|
20
|
+
|
|
21
|
+
### First release.
|
|
22
|
+
|
|
23
|
+
- First public release of unofficial SAP Service Layer for NODE-RED.
|
package/data/package.json
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@types/node-red": "^1.1.1",
|
|
8
|
-
"@yousolution/node-red-contrib-you-sap-service-layer": "file:yousolution-node-red-contrib-you-sap-service-layer-0.0.
|
|
9
|
-
"@yousolution/node-red-contrib-you-yousolution.cloud": "
|
|
8
|
+
"@yousolution/node-red-contrib-you-sap-service-layer": "file:yousolution-node-red-contrib-you-sap-service-layer-0.0.4.tgz",
|
|
9
|
+
"@yousolution/node-red-contrib-you-yousolution.cloud": "0.0.1",
|
|
10
10
|
"faker": "^6.6.6",
|
|
11
11
|
"node-red-contrib-sse-client": "~0.2.2",
|
|
12
12
|
"node-red-node-email": "~1.14.0"
|
package/nodes/closeSap.html
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
</div>
|
|
32
32
|
|
|
33
33
|
<div class="form-row">
|
|
34
|
-
<label for="node-input-type"><i class="fa fa-
|
|
34
|
+
<label for="node-input-type"><i class="fa fa-cube"></i> Entity</label>
|
|
35
35
|
<select name="node-input-entity" id="node-input-entity">
|
|
36
36
|
<option value="DeliveryNotes">DeliveryNotes</option>
|
|
37
37
|
<option value="Drafts">Drafts</option>
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
</div>
|
|
43
43
|
|
|
44
44
|
<div class="form-row">
|
|
45
|
-
<label for="node-input-type"><i class="fa fa-
|
|
45
|
+
<label for="node-input-type"><i class="fa fa-key"></i> entityId</label>
|
|
46
46
|
<input type="text" id="node-input-entityId">
|
|
47
47
|
<input type="hidden" id="node-input-entityId-type">
|
|
48
48
|
</div>
|
package/nodes/createSap.html
CHANGED
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
</div>
|
|
62
62
|
|
|
63
63
|
<div class="form-row">
|
|
64
|
-
<label for="node-input-type"><i class="fa fa-
|
|
64
|
+
<label for="node-input-type"><i class="fa fa-cube"></i> Entity</label>
|
|
65
65
|
<select name="node-input-entity" id="node-input-entity">
|
|
66
66
|
<option value="AccountCategory">AccountCategory</option>
|
|
67
67
|
<option value="AccountSegmentations">AccountSegmentations</option>
|
|
@@ -305,33 +305,33 @@
|
|
|
305
305
|
</div>
|
|
306
306
|
|
|
307
307
|
<div class="form-row" style="display:none" id="container-udo">
|
|
308
|
-
<label for="node-input-udo"><i class="fa fa-
|
|
308
|
+
<label for="node-input-udo"><i class="fa fa-gears"></i> UDO</label>
|
|
309
309
|
<input type="text" id="node-input-udo" placeholder="UDO Name">
|
|
310
310
|
</div>
|
|
311
311
|
|
|
312
312
|
<div class="form-row" style="display:none" id="container-udt">
|
|
313
|
-
<label for="node-input-udt"><i class="fa fa-
|
|
313
|
+
<label for="node-input-udt"><i class="fa fa-gears"></i> UDT</label>
|
|
314
314
|
<input type="text" id="node-input-udt" placeholder="udt Name">
|
|
315
315
|
</div>
|
|
316
316
|
|
|
317
317
|
<div class="form-row" style="display:none" id="container-partnerName">
|
|
318
|
-
<label for="node-input-udpartnerName"><i class="fa fa-
|
|
318
|
+
<label for="node-input-udpartnerName"><i class="fa fa-gears"></i> PartnerName</label>
|
|
319
319
|
<input type="text" id="node-input-partnerName" placeholder="PartnerName">
|
|
320
320
|
</div>
|
|
321
321
|
|
|
322
322
|
<div class="form-row" style="display:none" id="container-scriptName">
|
|
323
|
-
<label for="node-input-scriptName"><i class="fa fa-
|
|
323
|
+
<label for="node-input-scriptName"><i class="fa fa-gears"></i> ScriptName</label>
|
|
324
324
|
<input type="text" id="node-input-scriptName" placeholder="ScriptName">
|
|
325
325
|
</div>
|
|
326
326
|
|
|
327
327
|
<div class="form-row">
|
|
328
|
-
<label for="node-input-type"><i class="fa fa-
|
|
328
|
+
<label for="node-input-type"><i class="fa fa-gears"></i> Headers</label>
|
|
329
329
|
<input type="text" id="node-input-headers">
|
|
330
330
|
<input type="hidden" id="node-input-headers-type">
|
|
331
331
|
</div>
|
|
332
332
|
|
|
333
333
|
<div class="form-row">
|
|
334
|
-
<label for="node-input-type"><i class="fa fa-
|
|
334
|
+
<label for="node-input-type"><i class="fa fa-gears"></i> BodyPost</label>
|
|
335
335
|
<input type="text" id="node-input-bodyPost">
|
|
336
336
|
<input type="hidden" id="node-input-bodyPost-type">
|
|
337
337
|
</div>
|