trm-client 10.0.7 → 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,7 +8,11 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
- 2026-07-07 v10.0.5
11
+ 2026-07-07 v10.0.8
12
+ -------------------
13
+ * gui settings
14
+
15
+ 2026-07-07 v10.0.7
12
16
  -------------------
13
17
  * gui settings
14
18
 
@@ -125,9 +125,6 @@ class GlobalContext {
125
125
  return this.cloneArrayOfInstances(this._connections);
126
126
  }
127
127
  setSetting(key, value) {
128
- if (!Object.prototype.hasOwnProperty.call(this._settings, key)) {
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "10.0.7",
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",