@punks/backend-entity-manager 0.0.129 → 0.0.130
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/cjs/index.js +3 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/base/entityActions.d.ts +1 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/base/entityActions.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -2193,6 +2193,9 @@ class NestEntityActions {
|
|
|
2193
2193
|
constructor(entityName, registry) {
|
|
2194
2194
|
this.services = registry.resolveEntityServicesCollection(entityName);
|
|
2195
2195
|
}
|
|
2196
|
+
get converter() {
|
|
2197
|
+
return this.services.resolveConverter();
|
|
2198
|
+
}
|
|
2196
2199
|
get manager() {
|
|
2197
2200
|
if (!this.actionsInstance) {
|
|
2198
2201
|
this.actionsInstance =
|