rez_core 2.2.95 → 2.2.96

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.95",
3
+ "version": "2.2.96",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -462,6 +462,18 @@ export class EntityServiceImpl implements EntityService<BaseEntity> {
462
462
  );
463
463
  }
464
464
 
465
+ async getSingleResolvedData(
466
+ loggedInUser: UserData,
467
+ entityData: any,
468
+ entityType: string,
469
+ ): Promise<any> {
470
+ return this.resolverService.getResolvedData(
471
+ loggedInUser,
472
+ entityData,
473
+ entityType,
474
+ );
475
+ }
476
+
465
477
  async getResolvedEntityData(
466
478
  entityType: string,
467
479
  entityId: number,