@punks/backend-entity-manager 0.0.136 → 0.0.137
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.map +1 -1
- package/dist/cjs/types/platforms/nest/pipelines/template/template.d.ts +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/pipelines/template/template.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- /package/dist/cjs/types/platforms/nest/__test__/tests/pipelines/{simple_pipeline.test.d.ts → simple-pipeline.test.d.ts} +0 -0
- /package/dist/esm/types/platforms/nest/__test__/tests/pipelines/{simple_pipeline.test.d.ts → simple-pipeline.test.d.ts} +0 -0
|
@@ -3,7 +3,7 @@ import { IPipelineTemplateBuilder } from "../builder/types";
|
|
|
3
3
|
import { PipelineUtils } from "./utils";
|
|
4
4
|
import { PipelineTemplateProps } from "../../decorators";
|
|
5
5
|
export declare abstract class NestPipelineTemplate<TPipelineInput, TPipelineOutput, TContext> {
|
|
6
|
-
|
|
6
|
+
protected readonly logger: import("@punks/backend-core").ILogger;
|
|
7
7
|
protected readonly utils: PipelineUtils<TPipelineInput, TPipelineOutput, TContext>;
|
|
8
8
|
private cachedDefinition;
|
|
9
9
|
protected abstract buildTemplate(builder: IPipelineTemplateBuilder<TPipelineInput, TContext>): PipelineDefinition<TPipelineInput, TPipelineOutput, TContext>;
|