chore(ui): regen api client

This commit is contained in:
psychedelicious 2023-06-22 12:42:02 +10:00
parent 285195bf72
commit 19a6e5dad8

View File

@ -78,6 +78,32 @@ export class BoardsService {
});
}
/**
* Get Board
* Gets a board
* @returns BoardDTO Successful Response
* @throws ApiError
*/
public static getBoard({
boardId,
}: {
/**
* The id of board to get
*/
boardId: string,
}): CancelablePromise<BoardDTO> {
return __request(OpenAPI, {
method: 'GET',
url: '/api/v1/boards/{board_id}',
path: {
'board_id': boardId,
},
errors: {
422: `Validation Error`,
},
});
}
/**
* Delete Board
* Deletes a board