feat: Add dynamic fields structure to step arguments

This commit is contained in:
Faruk AYDIN
2023-02-08 23:27:12 +01:00
committed by Ali BARIN
parent 29a319a850
commit d16e292231
9 changed files with 144 additions and 19 deletions

View File

@@ -167,6 +167,7 @@ export interface IApp {
flowCount?: number;
beforeRequest?: TBeforeRequest[];
dynamicData?: IDynamicData;
dynamicFields?: IDynamicFields;
triggers?: ITrigger[];
actions?: IAction[];
connections?: IConnection[];
@@ -180,6 +181,10 @@ export interface IDynamicData {
[index: string]: any;
}
export interface IDynamicFields {
[index: string]: any;
}
export interface IAuth {
generateAuthUrl?($: IGlobalVariable): Promise<void>;
verifyCredentials?($: IGlobalVariable): Promise<void>;