Skip to content

Commit

Permalink
chore(ui): regen api client
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Jun 22, 2023
1 parent 285195b commit 19a6e5d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions invokeai/frontend/web/src/services/api/services/BoardsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 19a6e5d

Please sign in to comment.