From bc499b285db181aadcf7baed091ca3b828143c3e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 12 Jun 2023 17:03:22 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20feat(api):=20add=20BuildStatusTy?= =?UTF-8?q?peAPI=20to=20represent=20the=20status=20of=20a=20build=20The=20?= =?UTF-8?q?BuildStatusTypeAPI=20is=20added=20to=20represent=20the=20status?= =?UTF-8?q?=20of=20a=20build.=20It=20contains=20a=20boolean=20value=20indi?= =?UTF-8?q?cating=20whether=20the=20build=20was=20successful=20or=20not.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/types/api/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/frontend/src/types/api/index.ts b/src/frontend/src/types/api/index.ts index 8d26c4e15..a07e9e7ed 100644 --- a/src/frontend/src/types/api/index.ts +++ b/src/frontend/src/types/api/index.ts @@ -38,3 +38,7 @@ export type errorsTypeAPI = { imports: { errors: Array }; }; export type PromptTypeAPI = { input_variables: Array }; + +export type BuildStatusTypeAPI = { + built: boolean; +};