mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
chore(ui): regen api client
This commit is contained in:
parent
285195bf72
commit
19a6e5dad8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user