feat: Add dynamic fields structure to step arguments
This commit is contained in:
5
packages/types/index.d.ts
vendored
5
packages/types/index.d.ts
vendored
@@ -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>;
|
||||
|
Reference in New Issue
Block a user