fix(cli): Fix excessive instantiation type error for flattened execution (#3921)

* 📘 Fix excessive instantiation error

* ♻️ Simplify interface for TypeORM
This commit is contained in:
Iván Ovejero
2022-08-23 15:27:04 +02:00
committed by GitHub
parent 30326d7098
commit 1d4f92a657
2 changed files with 22 additions and 3 deletions

View File

@@ -227,7 +227,7 @@ export interface IExecutionFlattedDb extends IExecutionBase {
id: number | string;
data: string;
waitTill?: Date | null;
workflowData: IWorkflowBase;
workflowData: Omit<IWorkflowBase, 'pinData'>;
}
export interface IExecutionFlattedResponse extends IExecutionFlatted {