refactor: Redesign twitter trigger and actions

This commit is contained in:
Faruk AYDIN
2022-10-06 10:46:22 +03:00
parent 63ffd1f720
commit 77624acc01
18 changed files with 332 additions and 50 deletions

View File

@@ -197,13 +197,18 @@ export type IHttpClientParams = {
export type IGlobalVariable = {
auth: {
set: (args: IJSONObject) => Promise<IConnection>;
set: (args: IJSONObject) => Promise<null>;
data: IJSONObject;
};
app: IApp;
http: IHttpClient;
db: {
flow: IFlow;
flow: {
lastInternalId: string;
};
step: {
parameters: IJSONObject;
}
};
};