trm-client 7.7.0 → 7.7.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/changelog.txt CHANGED
@@ -8,6 +8,10 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2026-03-23 v7.7.1
12
+ -------------------
13
+ * sapgui connections
14
+
11
15
  2026-03-23 v7.7.0
12
16
  -------------------
13
17
  * pack command usage
@@ -53,8 +53,8 @@ function getSapLogonConnections() {
53
53
  if (sapLandscape) {
54
54
  const sXml = fs.readFileSync(GlobalContext_1.GlobalContext.getInstance().getSettings().sapLandscape, { encoding: 'utf8', flag: 'r' });
55
55
  const result = yield (0, xml2js_1.xml2js)(sXml);
56
- try {
57
- result.Landscape.Services[0].Service.forEach((xmlObj) => {
56
+ result.Landscape.Services[0].Service.forEach((xmlObj) => {
57
+ try {
58
58
  var obj = xmlObj['$'];
59
59
  var addrMatches = obj.server.match(/(.*)\:(\d*)$/);
60
60
  var ashost = addrMatches[1];
@@ -75,9 +75,9 @@ function getSapLogonConnections() {
75
75
  ashost,
76
76
  saprouter
77
77
  });
78
- });
79
- }
80
- catch (_a) { }
78
+ }
79
+ catch (_a) { }
80
+ });
81
81
  }
82
82
  return systems;
83
83
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "7.7.0",
3
+ "version": "7.7.1",
4
4
  "description": "TRM (Transport Request Manager) Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",