Optional
Readonly
decoratesThis is similar to dependencies, but is used to say that a given step decorates another one. This imbues two requirements: The step must take the output of the decorated step as input, and produce the same output as the decorated step.
If so, it is ensured that this step is executed after the step it decorates, but before any step that depends on it.
Readonly
dependenciesGive the names of other steps this one requires to be completed as a prerequisite (e.g., to gain access to their input). Does not have to be transitive, this will be checked by the scheduler of the pipeline.
Readonly
descriptionHuman-readable description of this step
Readonly
executedReadonly
humanHuman-readable name of this step
Readonly
nameName of the respective step, it does not have to be unique in general but only unique per-pipeline.
In other words, you can have multiple steps with a name like parse
as long as you use only one of them in a given pipeline.
This is, because these names are required in the IPipelineStep#dependencies field to refer to other steps this one relies on.
Readonly
printerHow to visualize the results of the respective step to the user?
Readonly
processorThe main processor that essentially performs the logic of this step
Readonly
requiredInput configuration required to perform the respective steps. Required inputs of dependencies do not have to, but can be repeated.
Use the pattern `undefined as unknown as T` to indicate that the value is required but not provided.
Defines what is to be known of a single step in a pipeline. It wraps around a single processor function, providing additional information. Steps will be executed synchronously, in-sequence, based on their dependencies.