Skip to content

Commit

Permalink
Merge pull request #3 from HyunsDev:develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
HyunsDev authored Feb 24, 2024
2 parents 5c77a8e + 354f30d commit d9f0c0a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unibook-client",
"version": "1.0.3",
"version": "1.0.4",
"repository": "https://github.com/HyunsDev/unibook-client.git",
"author": "혀느현스 <[email protected]>",
"license": "Unlicense",
Expand Down
1 change: 1 addition & 0 deletions src/endpoint/book/endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export type ListBookReqQuery = {
export type ListBookReq = ListBookReqQuery;
export type ListBookRes = {
books: BookObject[];
total: number;
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/endpoint/order.endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type ListOrderReq = {
};
export type ListOrderRes = {
orders: OrderObject[];
total: number;
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/endpoint/user/book.endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ export type ListUserBookReqQuery = {
export type ListUserBookReq = ListUserBookReqPath & ListUserBookReqQuery;
export type ListUserBookRes = {
books: BookObject[];
total: number;
};

0 comments on commit d9f0c0a

Please sign in to comment.