refactor: Pass connection, flow and step as params to apps

This commit is contained in:
Faruk AYDIN
2022-08-21 20:25:04 +03:00
parent cd6c5216ff
commit 44e3de8534
18 changed files with 60 additions and 85 deletions

View File

@@ -15,6 +15,7 @@ export interface IConnection {
verified: boolean;
count: number;
flowCount: number;
appData?: IApp;
createdAt: string;
}
@@ -57,6 +58,7 @@ export interface IStep {
executionSteps: IExecutionStep[];
// FIXME: remove this property once execution steps are properly exposed via queries
output: IJSONObject;
appData?: IApp;
}
export interface IFlow {