rez_core 2.2.165 → 2.2.166

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": "2.2.165",
3
+ "version": "2.2.166",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -318,6 +318,7 @@ export class EntityServiceImpl implements EntityService<BaseEntity> {
318
318
  if (!entityData.enterprise_id)
319
319
  entityData.enterprise_id = loggedInUser.enterprise_id;
320
320
  }
321
+ console.log(entityData, 'WWWWWWWWW');
321
322
  await repoService.update(entityData.id, entityData);
322
323
  return await repoService.findOne({ where: { id: entityData.id } });
323
324
  }