trm-core 7.4.1 → 7.4.3
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/README.md +1 -1
- package/changelog.txt +9 -0
- package/dist/protocol/Protocol.js +2 -5
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ TRM is a software designed to make transports between SAP ECC/S4 systems easy.
|
|
|
16
16
|
|
|
17
17
|
# Requirements
|
|
18
18
|
|
|
19
|
-
- [Node
|
|
19
|
+
- [Node >=22.12.0](https://github.com/nodejs/node/releases/tag/v22.12.0)
|
|
20
20
|
|
|
21
21
|
# Documentation <!-- {docsify-remove} -->
|
|
22
22
|
|
package/changelog.txt
CHANGED
|
@@ -8,6 +8,15 @@ Legend
|
|
|
8
8
|
+ : added
|
|
9
9
|
- : removed
|
|
10
10
|
|
|
11
|
+
2025-07-30 v7.4.3
|
|
12
|
+
-------------------
|
|
13
|
+
! trm-commons ^2.0.0 as peer dependency
|
|
14
|
+
|
|
15
|
+
2025-07-29 v7.4.2
|
|
16
|
+
-------------------
|
|
17
|
+
! enforce node engine >=22.12.0 with post install script
|
|
18
|
+
! protocol-registry ^2.0.0
|
|
19
|
+
|
|
11
20
|
2025-07-29 7.4.1
|
|
12
21
|
-------------------
|
|
13
22
|
! trm-commons ^2.0.0
|
|
@@ -26,12 +26,9 @@ class Protocol {
|
|
|
26
26
|
const nodePath = process.execPath;
|
|
27
27
|
const address = this._server.address();
|
|
28
28
|
const url = `http://localhost:${address.port}`;
|
|
29
|
-
yield protocol_registry_1.default.register({
|
|
30
|
-
protocol: "trm",
|
|
31
|
-
command: `"${nodePath}" "${path_1.default.join(__dirname, "./callback.js")}" ${url} $_URL_`,
|
|
29
|
+
yield protocol_registry_1.default.register(`trm`, `"${nodePath}" "${path_1.default.join(__dirname, "./callback.js")}" ${url} $_URL_`, {
|
|
32
30
|
override: true,
|
|
33
|
-
terminal:
|
|
34
|
-
script: false
|
|
31
|
+
terminal: true
|
|
35
32
|
});
|
|
36
33
|
}));
|
|
37
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trm-core",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.3",
|
|
4
4
|
"description": "TRM (Transport Request Manager) Core",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -58,16 +58,18 @@
|
|
|
58
58
|
"object-keys-normalizer": "^1.0.1",
|
|
59
59
|
"opener": "^1.5.2",
|
|
60
60
|
"parse-multipart-data": "^1.5.0",
|
|
61
|
-
"protocol-registry": "^
|
|
61
|
+
"protocol-registry": "^2.0.0",
|
|
62
62
|
"semver": "^7.5.4",
|
|
63
63
|
"semver-sort": "^1.0.0",
|
|
64
64
|
"spdx-license-ids": "^3.0.13",
|
|
65
|
-
"trm-commons": "^2.0.0",
|
|
66
65
|
"trm-registry-types": "^1.1.1",
|
|
67
66
|
"uuid": "^9.0.1",
|
|
68
67
|
"xml-beautify": "^1.2.3",
|
|
69
68
|
"xml-js": "^1.6.11"
|
|
70
69
|
},
|
|
70
|
+
"peerDependencies": {
|
|
71
|
+
"trm-commons": "^2.0.0"
|
|
72
|
+
},
|
|
71
73
|
"devDependencies": {
|
|
72
74
|
"@types/adm-zip": "^0.5.0",
|
|
73
75
|
"@types/cli-progress": "^3.11.3",
|
|
@@ -82,6 +84,7 @@
|
|
|
82
84
|
"@types/semver-sort": "^0.0.1",
|
|
83
85
|
"@types/stack-trace": "^0.0.33",
|
|
84
86
|
"@types/uuid": "^9.0.8",
|
|
87
|
+
"trm-commons": "^2.0.0",
|
|
85
88
|
"jest": "^29.7.0",
|
|
86
89
|
"rimraf": "^6.0.1",
|
|
87
90
|
"ts-jest": "^29.1.2",
|
|
@@ -89,6 +92,6 @@
|
|
|
89
92
|
"typescript": "^5.8.2"
|
|
90
93
|
},
|
|
91
94
|
"engines": {
|
|
92
|
-
"node": "
|
|
95
|
+
"node": ">=22.12.0"
|
|
93
96
|
}
|
|
94
|
-
}
|
|
97
|
+
}
|