rez_core 2.1.130 → 2.1.131

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.130",
3
+ "version": "2.1.131",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -147,15 +147,15 @@ export class EntityController {
147
147
  throw new NotFoundException(`No entity found for id "${id}"`);
148
148
  }
149
149
 
150
- const updatedEntity = await entityService.updateEntity(
150
+ return await entityService.updateEntity(
151
151
  entityData,
152
152
  loggedInUser as UserData,
153
153
  );
154
154
 
155
- return {
156
- success: true,
157
- data: updatedEntity,
158
- };
155
+ // return {
156
+ // success: true,
157
+ // data: updatedEntity,
158
+ // };
159
159
  }
160
160
 
161
161
  @Post('delete/:id')