feat(editor): Add option to create sub workflow from workflows list in Execute Workflow node (#11706)

This commit is contained in:
Ricardo Espinoza
2024-11-19 10:09:06 -05:00
committed by GitHub
parent b38ce14ec9
commit c265d44841
9 changed files with 242 additions and 21 deletions

View File

@@ -239,6 +239,10 @@ export interface IWorkflowDataUpdate {
meta?: WorkflowMetadata;
}
export interface IWorkflowDataCreate extends IWorkflowDataUpdate {
projectId?: string;
}
export interface IWorkflowToShare extends IWorkflowDataUpdate {
meta: WorkflowMetadata;
}