Remove legacy orchestration and MCP aliases; reroute recursive pipeline API
This commit is contained in:
@@ -65,13 +65,7 @@ export type PipelineNode = {
|
||||
export type PipelineEdge = {
|
||||
from: string;
|
||||
to: string;
|
||||
on?:
|
||||
| "success"
|
||||
| "validation_fail"
|
||||
| "failure"
|
||||
| "always"
|
||||
| "onTaskComplete"
|
||||
| "onValidationFail";
|
||||
on?: "success" | "validation_fail" | "failure" | "always";
|
||||
event?: DomainEventType;
|
||||
when?: RouteCondition[];
|
||||
};
|
||||
@@ -278,8 +272,6 @@ function parsePipelineEdge(value: unknown): PipelineEdge {
|
||||
"validation_fail",
|
||||
"failure",
|
||||
"always",
|
||||
"onTaskComplete",
|
||||
"onValidationFail",
|
||||
];
|
||||
|
||||
const rawOn = value.on;
|
||||
|
||||
Reference in New Issue
Block a user