Remove legacy orchestration and MCP aliases; reroute recursive pipeline API

This commit is contained in:
2026-02-23 16:02:20 -05:00
parent 62e2491cde
commit 1363bceecc
15 changed files with 88 additions and 102 deletions

View File

@@ -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;