From 286a39662dd51e6c3e60009b97fc6311f397fc55 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 12 Aug 2024 06:28:33 +0530 Subject: [PATCH] feat: add scrapeListAuto to custom actions --- maxun-core/src/types/workflow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maxun-core/src/types/workflow.ts b/maxun-core/src/types/workflow.ts index 459cfa88..f7cf180d 100644 --- a/maxun-core/src/types/workflow.ts +++ b/maxun-core/src/types/workflow.ts @@ -28,7 +28,7 @@ type MethodNames = { [K in keyof T]: T[K] extends Function ? K : never; }[keyof T]; -export type CustomFunctions = 'scrape' | 'scrapeSchema' | 'scroll' | 'screenshot' | 'script' | 'enqueueLinks' | 'flag' | 'scrapeList'; +export type CustomFunctions = 'scrape' | 'scrapeSchema' | 'scroll' | 'screenshot' | 'script' | 'enqueueLinks' | 'flag' | 'scrapeList' | 'scrapeListAuto'; export type What = { action: MethodNames | CustomFunctions,