trm-client 10.0.6 → 10.0.8

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,14 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2026-07-07 v10.0.8
12
+ -------------------
13
+ * gui settings
14
+
15
+ 2026-07-07 v10.0.7
16
+ -------------------
17
+ * gui settings
18
+
11
19
  2026-07-07 v10.0.5
12
20
  -------------------
13
21
  + alias name return in pick sap connection
@@ -125,9 +125,6 @@ class GlobalContext {
125
125
  return this.cloneArrayOfInstances(this._connections);
126
126
  }
127
127
  setSetting(key, value) {
128
- if (this._settings[key] === undefined) {
129
- throw new Error(`Invalid key ${key}.`);
130
- }
131
128
  const filePath = this.getSettingsFilePath();
132
129
  this._settings[key] = value;
133
130
  this.generateSettingsFile(this._settings, filePath);
@@ -220,10 +217,6 @@ class GlobalContext {
220
217
  settingsData.guiRegistryAutoConnectAlias = defaultSettings.guiRegistryAutoConnectAlias;
221
218
  this.generateSettingsFile(settingsData, filePath);
222
219
  }
223
- if (!settingsData.guiSystemAutoConnectAlias) {
224
- settingsData.guiSystemAutoConnectAlias = defaultSettings.guiSystemAutoConnectAlias;
225
- this.generateSettingsFile(settingsData, filePath);
226
- }
227
220
  if (settingsData.globalNodeModules) {
228
221
  delete settingsData.globalNodeModules;
229
222
  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.8",
4
4
  "description": "TRM (Transport Request Manager) Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",