trm-client 10.0.6 → 10.0.7

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-07-07 v10.0.5
12
+ -------------------
13
+ * gui settings
14
+
11
15
  2026-07-07 v10.0.5
12
16
  -------------------
13
17
  + alias name return in pick sap connection
@@ -125,7 +125,7 @@ class GlobalContext {
125
125
  return this.cloneArrayOfInstances(this._connections);
126
126
  }
127
127
  setSetting(key, value) {
128
- if (this._settings[key] === undefined) {
128
+ if (!Object.prototype.hasOwnProperty.call(this._settings, key)) {
129
129
  throw new Error(`Invalid key ${key}.`);
130
130
  }
131
131
  const filePath = this.getSettingsFilePath();
@@ -220,10 +220,6 @@ class GlobalContext {
220
220
  settingsData.guiRegistryAutoConnectAlias = defaultSettings.guiRegistryAutoConnectAlias;
221
221
  this.generateSettingsFile(settingsData, filePath);
222
222
  }
223
- if (!settingsData.guiSystemAutoConnectAlias) {
224
- settingsData.guiSystemAutoConnectAlias = defaultSettings.guiSystemAutoConnectAlias;
225
- this.generateSettingsFile(settingsData, filePath);
226
- }
227
223
  if (settingsData.globalNodeModules) {
228
224
  delete settingsData.globalNodeModules;
229
225
  this.generateSettingsFile(settingsData, filePath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "10.0.6",
3
+ "version": "10.0.7",
4
4
  "description": "TRM (Transport Request Manager) Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",