From baf5221bffbcbb5f409fba1acb0e2d9b5ab11631 Mon Sep 17 00:00:00 2001 From: ykeremy Date: Tue, 8 Oct 2024 16:18:27 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'skyvern-fronte?= =?UTF-8?q?nd/src/'=20with=20remote=20'skyvern-frontend/src/'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Before: ![image](https://github.com/user-attachments/assets/b1655bb8-34ab-4c85-b079-acffdeb5d562) After: ![image](https://github.com/user-attachments/assets/ffb3c310-ac88-4f8a-9049-f1a44b3a0816) > [!IMPORTANT] > Add `terminate` action type to `ActionTypes` and `ReadableActionTypes` in `types.ts`. > > - **Action Types**: > - Add `terminate` to `ActionTypes` and `ReadableActionTypes` in `types.ts`. > > This description was created by [Ellipsis](https://www.ellipsis.dev?ref=Skyvern-AI%2Fskyvern-cloud&utm_source=github&utm_medium=referral) for 08bc92e35312de00b2e7fb85624b41fc3b423f96. It will automatically update as commits are pushed. --- 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 eaa1496ac..931e7ad43 100644 --- a/skyvern-frontend/src/api/types.ts +++ b/skyvern-frontend/src/api/types.ts @@ -198,6 +198,7 @@ export const ActionTypes = { UploadFile: "upload_file", complete: "complete", wait: "wait", + terminate: "terminate", } as const; export type ActionType = (typeof ActionTypes)[keyof typeof ActionTypes]; @@ -211,6 +212,7 @@ export const ReadableActionTypes: { upload_file: "Upload File", complete: "Complete", wait: "Wait", + terminate: "Terminate", }; export type Option = {