fix: Type problems regarding global variable
This commit is contained in:
4
packages/types/index.d.ts
vendored
4
packages/types/index.d.ts
vendored
@@ -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;
|
||||
|
Reference in New Issue
Block a user