trm-core 7.1.0 → 7.2.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,10 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2025-06-03 v7.2.0
12
+ -------------------
13
+ * find dependency with custom object not found without devc reference
14
+
11
15
  2025-06-03 v7.1.0
12
16
  -------------------
13
17
  * change tr owner on install tr update
@@ -190,18 +190,16 @@ const _getTadirDependencies = (tadirDependencies) => __awaiter(void 0, void 0, v
190
190
  }
191
191
  else {
192
192
  devclass = yield _getRootDevclass(tadir.devclass);
193
- if (devclass) {
194
- if (!tadirDependencies.find(o => o.object.PGMID === 'R3TR' && o.object.OBJECT === 'DEVC' && o.object.OBJ_NAME === devclass)) {
195
- tadirDependencies.push({
196
- object: {
197
- PGMID: 'R3TR',
198
- OBJECT: 'DEVC',
199
- OBJ_NAME: devclass,
200
- DEVCLASS: devclass
201
- },
202
- foundIn: tadir
203
- });
204
- }
193
+ if (devclass && !tadirDependencies.find(o => o.object.PGMID === 'R3TR' && o.object.OBJECT === 'DEVC' && o.object.OBJ_NAME === devclass)) {
194
+ tadirDependencies.push({
195
+ object: {
196
+ PGMID: 'R3TR',
197
+ OBJECT: 'DEVC',
198
+ OBJ_NAME: devclass,
199
+ DEVCLASS: devclass
200
+ },
201
+ foundIn: tadir
202
+ });
205
203
  append = false;
206
204
  }
207
205
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-core",
3
- "version": "7.1.0",
3
+ "version": "7.2.0",
4
4
  "description": "TRM (Transport Request Manager) Core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",