rez_core 5.0.92 → 5.0.94
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/dist/module/meta/service/entity-dynamic.service.js +1 -1
- package/dist/module/meta/service/entity-dynamic.service.js.map +1 -1
- package/dist/module/meta/service/resolver.service.js +2 -0
- package/dist/module/meta/service/resolver.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/meta/service/entity-dynamic.service.ts +1 -1
- package/src/module/meta/service/resolver.service.ts +2 -1
package/package.json
CHANGED
|
@@ -400,7 +400,7 @@ export class EntityDynamicService {
|
|
|
400
400
|
source_entity_id: id,
|
|
401
401
|
source_entity_type: entityType,
|
|
402
402
|
target_entity_id: targetEntityId,
|
|
403
|
-
|
|
403
|
+
target_entity_type: targetEntityType,
|
|
404
404
|
relation_type: relationType,
|
|
405
405
|
});
|
|
406
406
|
}
|
|
@@ -38,6 +38,8 @@ export class ResolverService {
|
|
|
38
38
|
entityData: any,
|
|
39
39
|
entityType: string,
|
|
40
40
|
): Promise<any> {
|
|
41
|
+
console.log('entityData - ', entityData);
|
|
42
|
+
console.log('\nentityType - ', entityType);
|
|
41
43
|
const attributeItems =
|
|
42
44
|
await this.attributeMasterRepo.findAttributesByMappedEntityType(
|
|
43
45
|
entityType,
|
|
@@ -45,7 +47,6 @@ export class ResolverService {
|
|
|
45
47
|
);
|
|
46
48
|
|
|
47
49
|
const resolvedEntityData = { ...entityData };
|
|
48
|
-
|
|
49
50
|
for (const attr of attributeItems) {
|
|
50
51
|
const field = attr.attribute_key;
|
|
51
52
|
const codeValue = entityData[field];
|