trm-client 7.4.3 → 7.5.1
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
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# <a href="https://docs.trmregistry.com/#/server/README"><img src="https://docs.trmregistry.com/
|
|
1
|
+
# <a href="https://docs.trmregistry.com/#/server/README"><img src="https://docs.trmregistry.com/logo.png" height="40" alt="TRM"></a>
|
|
2
2
|
|
|
3
3
|
[](https://github.com/RegestaItalia/trm-docs/blob/main/CODE_OF_CONDUCT.md)
|
|
4
4
|
[](https://github.com/RegestaItalia/trm-client)
|
|
@@ -14,18 +14,6 @@
|
|
|
14
14
|
|
|
15
15
|
**TRM (Transport Request Manager)** is a package manager inspired solution built leveraging CTS that simplifies SAP ABAP transports.
|
|
16
16
|
|
|
17
|
-
### Demo publish
|
|
18
|
-
|
|
19
|
-
<p align="center">
|
|
20
|
-
<img src="https://docs.trmregistry.com/_media/publish.gif" />
|
|
21
|
-
</p>
|
|
22
|
-
|
|
23
|
-
### Demo install
|
|
24
|
-
|
|
25
|
-
<p align="center">
|
|
26
|
-
<img src="https://docs.trmregistry.com/_media/install.gif" />
|
|
27
|
-
</p>
|
|
28
|
-
|
|
29
17
|
# Documentation
|
|
30
18
|
|
|
31
19
|
You can find the full documentation at [docs.trmregistry.com](https://docs.trmregistry.com).
|
package/changelog.txt
CHANGED
|
@@ -8,6 +8,15 @@ Legend
|
|
|
8
8
|
+ : added
|
|
9
9
|
- : removed
|
|
10
10
|
|
|
11
|
+
2026-03-10 v7.5.1
|
|
12
|
+
-------------------
|
|
13
|
+
* dependency tree package objects counter
|
|
14
|
+
|
|
15
|
+
2026-03-10 v7.5.0
|
|
16
|
+
-------------------
|
|
17
|
+
! trm-core ^8.5.1
|
|
18
|
+
+ dependency tree package objects counter
|
|
19
|
+
|
|
11
20
|
2026-03-04 v7.4.3
|
|
12
21
|
-------------------
|
|
13
22
|
! trm-core ^8.4.2
|
|
@@ -51,7 +51,7 @@ class FindDependencies extends AbstractCommand_1.AbstractCommand {
|
|
|
51
51
|
text: `Customer packages (${custPackageDependencies.length})`,
|
|
52
52
|
children: custPackageDependencies.map(o => {
|
|
53
53
|
return {
|
|
54
|
-
text: `${o.abapPackage.devclass}`,
|
|
54
|
+
text: `${o.abapPackage.devclass} (${o.entries.reduce((sum, entry) => sum + entry.dependency.length, 0)})`,
|
|
55
55
|
children: o.entries.map(t => {
|
|
56
56
|
return {
|
|
57
57
|
text: t.tableName,
|
|
@@ -80,7 +80,7 @@ class FindDependencies extends AbstractCommand_1.AbstractCommand {
|
|
|
80
80
|
text: `SAP packages (${sapPackageDependencies.length})`,
|
|
81
81
|
children: sapPackageDependencies.map(o => {
|
|
82
82
|
return {
|
|
83
|
-
text: `${o.abapPackage}`,
|
|
83
|
+
text: `${o.abapPackage} (${o.entries.reduce((sum, entry) => sum + entry.dependency.length, 0)})`,
|
|
84
84
|
children: o.entries.map(t => {
|
|
85
85
|
return {
|
|
86
86
|
text: chalk_1.default.underline(t.tableName),
|
package/dist/index.js
CHANGED
|
@@ -8,13 +8,14 @@ const dotenv_1 = __importDefault(require("dotenv"));
|
|
|
8
8
|
const commander_1 = require("commander");
|
|
9
9
|
const utils_1 = require("./utils");
|
|
10
10
|
const implementations_1 = require("./command/implementations");
|
|
11
|
+
const trm_core_1 = require("trm-core");
|
|
11
12
|
dotenv_1.default.config({
|
|
12
13
|
quiet: true
|
|
13
14
|
});
|
|
14
15
|
const program = new commander_1.Command();
|
|
15
16
|
program
|
|
16
17
|
.name(`trm`)
|
|
17
|
-
.description(
|
|
18
|
+
.description(`${trm_core_1.Transport.getTransportIcon()} TRM - Transport Request Manager CLI
|
|
18
19
|
|
|
19
20
|
Full documentation available at https://docs.trmregistry.com/
|
|
20
21
|
Public registry at https://trmregistry.com/
|
|
@@ -2,6 +2,7 @@ import { ISystemConnector, SystemConnectorSupportedBulk, TADIR } from "trm-core"
|
|
|
2
2
|
export declare class DummyConnector implements ISystemConnector {
|
|
3
3
|
_throw(): any;
|
|
4
4
|
supportedBulk: SystemConnectorSupportedBulk;
|
|
5
|
+
isStateless: boolean;
|
|
5
6
|
getConnectionData: () => any;
|
|
6
7
|
getDest: () => string;
|
|
7
8
|
getLogonLanguage: (c: boolean) => "X" | "XX";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trm-client",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.1",
|
|
4
4
|
"description": "TRM (Transport Request Manager) Client",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"lodash": "^4.17.21",
|
|
48
48
|
"semver": "^7.7.4",
|
|
49
49
|
"trm-commons": "^3.5.1",
|
|
50
|
-
"trm-core": "^8.
|
|
50
|
+
"trm-core": "^8.5.1",
|
|
51
51
|
"trm-registry-types": "^2.1.0",
|
|
52
52
|
"xml2js": "^0.6.2"
|
|
53
53
|
},
|