feat: add remoteWebhookId in Flow

This commit is contained in:
Ali BARIN
2022-12-14 20:00:08 +01:00
parent 9a55333ce8
commit 0970db3295
3 changed files with 18 additions and 0 deletions

View File

@@ -76,6 +76,7 @@ export interface IFlow {
steps: IStep[];
createdAt: string;
updatedAt: string;
remoteWebhookId: string;
lastInternalId: () => Promise<string>;
}
@@ -279,6 +280,8 @@ export type IGlobalVariable = {
id: string;
lastInternalId: string;
isAlreadyProcessed?: (internalId: string) => boolean;
remoteWebhookId?: string;
setRemoteWebhookId?: (remoteWebhookId: string) => Promise<void>;
};
step?: {
id: string;