From 1386ac4780a46ba1a7806a340bbe8ef2764b35b8 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Wed, 16 Apr 2025 00:47:52 -0700 Subject: [PATCH] null_action means doing nothing and taking a screenshot (#2162) --- 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 ac6873ec..0b365316 100644 --- a/skyvern-frontend/src/api/types.ts +++ b/skyvern-frontend/src/api/types.ts @@ -180,6 +180,7 @@ export const ActionTypes = { KeyPress: "keypress", Scroll: "scroll", Move: "move", + NullAction: "null_action", } as const; export type ActionType = (typeof ActionTypes)[keyof typeof ActionTypes]; @@ -200,6 +201,7 @@ export const ReadableActionTypes: { keypress: "Press Keys", scroll: "Scroll", move: "Move", + null_action: "Screenshot", }; export type Option = {