@punks/backend-entity-manager 0.0.134 → 0.0.136
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 +14 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/templates/pipelines/instance/index.d.ts +1 -0
- package/dist/esm/index.js +14 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/templates/pipelines/instance/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export declare class PipelineInstance<TPipelineInput, TPipelineOutput, TContext>
|
|
|
5
5
|
private readonly input;
|
|
6
6
|
private readonly context;
|
|
7
7
|
private status;
|
|
8
|
+
private readonly logger;
|
|
8
9
|
constructor(definition: PipelineDefinition<TPipelineInput, TPipelineOutput, TContext>, input: TPipelineInput, context: TContext);
|
|
9
10
|
execute(): Promise<PipelineResult<TPipelineInput, TPipelineOutput>>;
|
|
10
11
|
private buildInitialStepState;
|