From 3c1a65ae232ea180c53a9ac21ecaf98e45a4355e Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Fri, 24 Jan 2025 04:12:12 +0800 Subject: [PATCH] add extract action type in frontend (#1631) --- skyvern-frontend/src/api/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skyvern-frontend/src/api/types.ts b/skyvern-frontend/src/api/types.ts index 8190a4f4..608def33 100644 --- a/skyvern-frontend/src/api/types.ts +++ b/skyvern-frontend/src/api/types.ts @@ -145,6 +145,7 @@ export const ActionTypes = { wait: "wait", terminate: "terminate", SolveCaptcha: "solve_captcha", + extract: "extract", } as const; export type ActionType = (typeof ActionTypes)[keyof typeof ActionTypes]; @@ -160,6 +161,7 @@ export const ReadableActionTypes: { wait: "Wait", terminate: "Terminate", solve_captcha: "Solve Captcha", + extract: "Extract Data", }; export type Option = {