🚀 feat(api): add UploadFileTypeAPI type definition

This commit adds a new type definition for the UploadFileTypeAPI, which includes a single property file_path of type string. This type will be used to define the response of an API endpoint that handles file uploads.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-21 10:20:48 -03:00
commit 0d7df8a330

View file

@ -46,3 +46,7 @@ export type BuildStatusTypeAPI = {
export type InitTypeAPI = {
flowId: string;
};
export type UploadFileTypeAPI = {
file_path: string;
};