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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "5.0.92",
3
+ "version": "5.0.94",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -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
- targetEntityType: targetEntityType,
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];