feat(core): Improve debugging of sub-workflows (#11602)

This commit is contained in:
Mutasem Aldmour
2024-11-14 23:04:43 +01:00
committed by GitHub
parent f4ca4b792f
commit fd3254d587
36 changed files with 1843 additions and 265 deletions

View File

@@ -182,6 +182,10 @@ export interface IAiDataContent {
metadata: {
executionTime: number;
startTime: number;
subExecution?: {
workflowId: string;
executionId: string;
};
};
}
@@ -202,6 +206,10 @@ export interface ITableData {
columns: string[];
data: GenericValue[][];
hasJson: { [key: string]: boolean };
metadata: {
hasExecutionIds: boolean;
data: Array<INodeExecutionData['metadata'] | undefined>;
};
}
// Simple version of n8n-workflow.Workflow