rez_core 2.1.99 → 2.1.100

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.1.99",
3
+ "version": "2.1.100",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -96,6 +96,9 @@ export class EntityServiceImpl implements EntityService<BaseEntity> {
96
96
  [STATUS_ACTIVE, loggedInUser?.organization_id || 0],
97
97
  );
98
98
 
99
+ console.log('Status List:', statusList); // Debug log
100
+ console.log('Entity Data Before Save:', entityData); // Debug log
101
+
99
102
  entityData.created_date = new Date();
100
103
  if (loggedInUser) {
101
104
  entityData.created_by = loggedInUser.id;