trm-client 7.4.2 → 7.5.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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # <a href="https://docs.trmregistry.com/#/server/README"><img src="https://docs.trmregistry.com/_media/logo.png" height="40" alt="TRM"></a>
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
  [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-1.3.0-4baaaa.svg)](https://github.com/RegestaItalia/trm-docs/blob/main/CODE_OF_CONDUCT.md)
4
4
  [![trm-client License](https://img.shields.io/github/license/RegestaItalia/trm-client)](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,16 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2026-03-10 v7.5.0
12
+ -------------------
13
+ ! trm-core ^8.5.1
14
+ + dependency tree package objects counter
15
+
16
+ 2026-03-04 v7.4.3
17
+ -------------------
18
+ ! trm-core ^8.4.2
19
+ * find-dependencies devclass name
20
+
11
21
  2026-03-04 v7.4.2
12
22
  -------------------
13
23
  * fix cache expiry
@@ -27,7 +27,6 @@ class FindDependencies extends AbstractCommand_1.AbstractCommand {
27
27
  }
28
28
  handler() {
29
29
  return __awaiter(this, void 0, void 0, function* () {
30
- trm_commons_1.Logger.loading(`Searching for dependencies in package "${this.args.sapPackage.toUpperCase()}"...`);
31
30
  const dependencies = yield trm_core_1.SystemConnector.getPackageDependencies(this.args.sapPackage.toUpperCase(), true, true);
32
31
  const trmPackageDependencies = dependencies.trmPackageDependencies;
33
32
  const sapPackageDependencies = dependencies.abapPackageDependencies.filter(o => !o.isCustomerPackage);
@@ -52,7 +51,7 @@ class FindDependencies extends AbstractCommand_1.AbstractCommand {
52
51
  text: `Customer packages (${custPackageDependencies.length})`,
53
52
  children: custPackageDependencies.map(o => {
54
53
  return {
55
- text: `${o.abapPackage}`,
54
+ text: `${o.abapPackage.devclass} (${o.entries.length})`,
56
55
  children: o.entries.map(t => {
57
56
  return {
58
57
  text: t.tableName,
@@ -81,7 +80,7 @@ class FindDependencies extends AbstractCommand_1.AbstractCommand {
81
80
  text: `SAP packages (${sapPackageDependencies.length})`,
82
81
  children: sapPackageDependencies.map(o => {
83
82
  return {
84
- text: `${o.abapPackage}`,
83
+ text: `${o.abapPackage} (${o.entries.length})`,
85
84
  children: o.entries.map(t => {
86
85
  return {
87
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(`TRM - Transport Request Manager CLI
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";
@@ -16,6 +16,7 @@ class DummyConnector {
16
16
  getExistingObjects: false,
17
17
  getTransportObjects: false
18
18
  };
19
+ this.isStateless = true;
19
20
  this.getConnectionData = () => this._throw();
20
21
  this.getDest = () => 'NONE';
21
22
  this.getLogonLanguage = (c) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "7.4.2",
3
+ "version": "7.5.0",
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.4.1",
50
+ "trm-core": "^8.5.1",
51
51
  "trm-registry-types": "^2.1.0",
52
52
  "xml2js": "^0.6.2"
53
53
  },