trm-client 4.5.0 → 4.6.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
@@ -56,3 +56,5 @@ Make sure to open an issue first.
56
56
  Contributions will be merged upon approval.
57
57
 
58
58
  [Click here](https://docs.trmregistry.com/#/CONTRIBUTING) for the full list of TRM contribution guidelines.
59
+
60
+ [<img src="https://trmregistry.com/public/contributors?image=true">](https://docs.trmregistry.com/#/?id=contributors)
package/changelog.txt CHANGED
@@ -8,6 +8,12 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2025-05-08 v4.6.0
12
+ -------------------
13
+
14
+ ! trm-core ^6.8.0
15
+ * saprouter in alias
16
+
11
17
  2025-05-08 v4.5.0
12
18
  -------------------
13
19
 
@@ -66,12 +66,14 @@ class SystemAlias {
66
66
  dest: o.connection.dest,
67
67
  ashost: o.connection.ashost,
68
68
  sysnr: o.connection.sysnr,
69
- saprouter: o.connection.saprouter,
70
69
  client: o.login.client,
71
70
  user: o.login.user,
72
71
  passwd: o.login.passwd,
73
72
  lang: o.login.lang
74
73
  };
74
+ if (o.connection.saprouter) {
75
+ oContent[o.alias].saprouter = o.connection.saprouter;
76
+ }
75
77
  }
76
78
  else if (o.type === utils_1.SystemConnectorType.REST) {
77
79
  oContent[o.alias] = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "4.5.0",
3
+ "version": "4.6.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.7.0",
48
+ "trm-core": "^6.8.0",
49
49
  "trm-registry-types": "^1.2.0",
50
50
  "xml2js": "^0.6.2"
51
51
  },