fix: Type problems regarding global variable

This commit is contained in:
Faruk AYDIN
2022-10-06 00:49:24 +03:00
parent 8308265a62
commit 63ffd1f720
7 changed files with 21 additions and 24 deletions

View File

@@ -56,7 +56,7 @@ export interface IStep {
connectionId?: string;
status: string;
position: number;
parameters: Record<string, unknown>;
parameters: IJSONObject;
connection?: Partial<IConnection>;
flow: IFlow;
executionSteps: IExecutionStep[];
@@ -195,7 +195,7 @@ export type IHttpClientParams = {
baseURL?: string;
};
export type IGlobalVariableForConnection = {
export type IGlobalVariable = {
auth: {
set: (args: IJSONObject) => Promise<IConnection>;
data: IJSONObject;