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/dist/module/meta/service/entity-service-impl.service.d.ts +1 -0
- package/dist/module/meta/service/entity-service-impl.service.js +3 -0
- package/dist/module/meta/service/entity-service-impl.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/meta/service/entity-service-impl.service.ts +12 -0
package/package.json
CHANGED
|
@@ -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,
|