trm-client 4.7.0 → 4.8.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/changelog.txt CHANGED
@@ -8,6 +8,12 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2025-06-04 v4.8.0
12
+ -------------------
13
+
14
+ ! trm-core ^7.2.1
15
+ ! overwrite flag in install/update ignores existing objects replace
16
+
11
17
  2025-06-03 v4.7.0
12
18
  -------------------
13
19
 
@@ -55,7 +55,8 @@ function install(commandArgs) {
55
55
  safe: commandArgs.safe,
56
56
  noDependencies: commandArgs.noDependencies,
57
57
  noObjectTypes: commandArgs.noObjectTypes,
58
- noSapEntries: commandArgs.noSapEntries
58
+ noSapEntries: commandArgs.noSapEntries,
59
+ noExistingObjects: commandArgs.overwrite
59
60
  },
60
61
  import: {
61
62
  noLang: commandArgs.noLanguageTransport,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "4.7.0",
3
+ "version": "4.8.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": "^7.0.0",
48
+ "trm-core": "^7.2.1",
49
49
  "trm-registry-types": "^1.2.0",
50
50
  "xml2js": "^0.6.2"
51
51
  },