🚀 feat(api): add BuildStatusTypeAPI to represent the status of a build

The BuildStatusTypeAPI is added to represent the status of a build. It contains a boolean value indicating whether the build was successful or not.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-12 17:03:22 -03:00
commit bc499b285d

View file

@ -38,3 +38,7 @@ export type errorsTypeAPI = {
imports: { errors: Array<string> };
};
export type PromptTypeAPI = { input_variables: Array<string> };
export type BuildStatusTypeAPI = {
built: boolean;
};