Skip to content

Commit

Permalink
fix: restore enums
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed May 1, 2024
1 parent a5ccf7a commit ab3f9af
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions client/typescript/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,14 +502,18 @@ export interface NotFoundErrorResponse {
* @export
* @interface Order
*/
export interface Order {
export enum Order {
asc = 'asc',
desc = 'desc',
}
/**
*
* @export
* @interface OrderBy
*/
export interface OrderBy {
export enum OrderBy {
name = 'name',
symbol = 'symbol',
}
/**
*
Expand Down

0 comments on commit ab3f9af

Please sign in to comment.