refactor: remove placeholder join step

This commit is contained in:
lda
2026-09-05 17:47:57 +07:00 Verified
parent 043bda6a34
commit cccdbc0a47
42 changed files with 88 additions and 309 deletions
@@ -464,7 +464,6 @@ export interface WorkflowContractMap {
| DraftUseStep
| DraftForeachStep
| DraftInterruptStep
| DraftJoinStep
| DraftEndStep
| DraftWhenStep
| DraftChooseStep
@@ -1867,17 +1866,6 @@ export interface SchemaRef {
type?: string | string[] | null;
[k: string]: unknown;
}
/**
* Draft step that emits the current core join node.
*
* This interface was referenced by `WorkflowContractMap`'s JSON-Schema
* via the `definition` "DraftJoinStep".
*/
export interface DraftJoinStep {
join?: {
[k: string]: unknown;
};
}
/**
* Draft step that lowers to core `EndNode`.
*