Skip to content

Commit

Permalink
Merge pull request #23 from HyunsDev:develop
Browse files Browse the repository at this point in the history
fix: 엔드포인트 주소 오류 수정
  • Loading branch information
HyunsDev authored Mar 5, 2024
2 parents 74cd45b + 3d4e30a commit 7995cc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.22",
"version": "1.0.23",
"repository": "https://github.com/HyunsDev/unibook-client.git",
"author": "혀느현스 <[email protected]>",
"license": "Unlicense",
Expand Down
2 changes: 1 addition & 1 deletion src/endpoint/book/section/export/endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ExportSectionPDF: Endpoint<
ExportSectionPDFRes
> = {
method: "POST",
path: (e) => `/books/${e.bookId}/sections/${e.sectionId}/pdf`,
path: (e) => `/books/${e.bookId}/sections/${e.sectionId}/export/pdf`,
pathParams: ["bookId", "sectionId"],
};
export type ExportSectionPDFReqPath = {
Expand Down

0 comments on commit 7995cc9

Please sign in to comment.