trm-client 4.6.1 → 4.7.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/changelog.txt CHANGED
@@ -8,6 +8,11 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2025-06-03 v4.7.0
12
+ -------------------
13
+
14
+ ! trm-core ^7.0.0
15
+
11
16
  2025-05-29 v4.6.1
12
17
  -------------------
13
18
 
@@ -73,4 +73,5 @@ export declare class NoConnection implements ISystemConnector {
73
73
  executePostActivity: () => Promise<any>;
74
74
  readClassDescriptions: () => Promise<any>;
75
75
  isServerApisAllowed: () => Promise<any>;
76
+ changeTrOwner: () => Promise<any>;
76
77
  }
@@ -98,6 +98,7 @@ class NoConnection {
98
98
  this.executePostActivity = () => __awaiter(this, void 0, void 0, function* () { return this._throw(); });
99
99
  this.readClassDescriptions = () => __awaiter(this, void 0, void 0, function* () { return this._throw(); });
100
100
  this.isServerApisAllowed = () => __awaiter(this, void 0, void 0, function* () { return this._throw(); });
101
+ this.changeTrOwner = () => __awaiter(this, void 0, void 0, function* () { return this._throw(); });
101
102
  }
102
103
  _throw() {
103
104
  throw new Error(`No connection to SAP server.`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "4.6.1",
3
+ "version": "4.7.0",
4
4
  "description": "TRM (Transport Request Manager) Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -45,7 +45,7 @@
45
45
  "ini": "^4.1.1",
46
46
  "semver": "^7.5.4",
47
47
  "trm-commons": "^1.0.0",
48
- "trm-core": "^6.9.0",
48
+ "trm-core": "^7.0.0",
49
49
  "trm-registry-types": "^1.2.0",
50
50
  "xml2js": "^0.6.2"
51
51
  },