trm-core 7.4.4 → 7.4.5

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,11 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2025-08-17 v7.4.5
12
+ -------------------
13
+ ! node-r3trans ^2.0.1
14
+ * r3trans options in getContent method
15
+
11
16
  2025-07-30 v7.4.4
12
17
  -------------------
13
18
  ! node-r3trans ^2.0.0
@@ -138,7 +138,7 @@ class TrmArtifact {
138
138
  if (!this._content) {
139
139
  this._content = {};
140
140
  try {
141
- const transportBinaries = yield this.getTransportBinaries();
141
+ const transportBinaries = yield this.getTransportBinaries(r3transConfig);
142
142
  const r3trans = new node_r3trans_1.R3trans(r3transConfig);
143
143
  for (const transportBinary of transportBinaries) {
144
144
  const tableEntries = yield r3trans.getTableEntries(transportBinary.binaries.data);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-core",
3
- "version": "7.4.4",
3
+ "version": "7.4.5",
4
4
  "description": "TRM (Transport Request Manager) Core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -54,7 +54,7 @@
54
54
  "lodash": "^4.17.21",
55
55
  "minimatch": "^10.0.1",
56
56
  "node-html-parser": "^7.0.1",
57
- "node-r3trans": "^2.0.0",
57
+ "node-r3trans": "^2.0.1",
58
58
  "object-keys-normalizer": "^1.0.1",
59
59
  "opener": "^1.5.2",
60
60
  "parse-multipart-data": "^1.5.0",