generated from stijnvanhulle/template
-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1493 from kubb-labs/feat/plugin-client-url-function
fix: decouple uri
- Loading branch information
Showing
326 changed files
with
4,098 additions
and
2,760 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@kubb/plugin-client": minor | ||
--- | ||
|
||
decouple URI (with params) from fetching |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@kubb/plugin-client": patch | ||
--- | ||
|
||
use of URL and SearchParams to support queryParams for fetch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@kubb/plugin-client": patch | ||
--- | ||
|
||
add header in response object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
export { operations } from './operations.ts' | ||
export { addPet } from './petService/addPet.ts' | ||
export { deletePet } from './petService/deletePet.ts' | ||
export { findPetsByStatus } from './petService/findPetsByStatus.ts' | ||
export { findPetsByTags } from './petService/findPetsByTags.ts' | ||
export { getPetById } from './petService/getPetById.ts' | ||
export { getAddPetUrl, addPet } from './petService/addPet.ts' | ||
export { getDeletePetUrl, deletePet } from './petService/deletePet.ts' | ||
export { getFindPetsByStatusUrl, findPetsByStatus } from './petService/findPetsByStatus.ts' | ||
export { getFindPetsByTagsUrl, findPetsByTags } from './petService/findPetsByTags.ts' | ||
export { getGetPetByIdUrl, getPetById } from './petService/getPetById.ts' | ||
export { petService } from './petService/petService.ts' | ||
export { updatePet } from './petService/updatePet.ts' | ||
export { updatePetWithForm } from './petService/updatePetWithForm.ts' | ||
export { uploadFile } from './petService/uploadFile.ts' | ||
export { createPets } from './petsService/createPets.ts' | ||
export { getUpdatePetUrl, updatePet } from './petService/updatePet.ts' | ||
export { getUpdatePetWithFormUrl, updatePetWithForm } from './petService/updatePetWithForm.ts' | ||
export { getUploadFileUrl, uploadFile } from './petService/uploadFile.ts' | ||
export { getCreatePetsUrl, createPets } from './petsService/createPets.ts' | ||
export { petsService } from './petsService/petsService.ts' | ||
export { createUser } from './userService/createUser.ts' | ||
export { createUsersWithListInput } from './userService/createUsersWithListInput.ts' | ||
export { deleteUser } from './userService/deleteUser.ts' | ||
export { getUserByName } from './userService/getUserByName.ts' | ||
export { loginUser } from './userService/loginUser.ts' | ||
export { logoutUser } from './userService/logoutUser.ts' | ||
export { updateUser } from './userService/updateUser.ts' | ||
export { getCreateUserUrl, createUser } from './userService/createUser.ts' | ||
export { getCreateUsersWithListInputUrl, createUsersWithListInput } from './userService/createUsersWithListInput.ts' | ||
export { getDeleteUserUrl, deleteUser } from './userService/deleteUser.ts' | ||
export { getGetUserByNameUrl, getUserByName } from './userService/getUserByName.ts' | ||
export { getLoginUserUrl, loginUser } from './userService/loginUser.ts' | ||
export { getLogoutUserUrl, logoutUser } from './userService/logoutUser.ts' | ||
export { getUpdateUserUrl, updateUser } from './userService/updateUser.ts' | ||
export { userService } from './userService/userService.ts' |
13 changes: 8 additions & 5 deletions
13
examples/advanced/src/gen/clients/axios/petService/addPet.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
examples/advanced/src/gen/clients/axios/petService/findPetsByStatus.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
examples/advanced/src/gen/clients/axios/petService/getPetById.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
examples/advanced/src/gen/clients/axios/petService/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export { addPet } from './addPet.ts' | ||
export { deletePet } from './deletePet.ts' | ||
export { findPetsByStatus } from './findPetsByStatus.ts' | ||
export { findPetsByTags } from './findPetsByTags.ts' | ||
export { getPetById } from './getPetById.ts' | ||
export { getAddPetUrl, addPet } from './addPet.ts' | ||
export { getDeletePetUrl, deletePet } from './deletePet.ts' | ||
export { getFindPetsByStatusUrl, findPetsByStatus } from './findPetsByStatus.ts' | ||
export { getFindPetsByTagsUrl, findPetsByTags } from './findPetsByTags.ts' | ||
export { getGetPetByIdUrl, getPetById } from './getPetById.ts' | ||
export { petService } from './petService.ts' | ||
export { updatePet } from './updatePet.ts' | ||
export { updatePetWithForm } from './updatePetWithForm.ts' | ||
export { uploadFile } from './uploadFile.ts' | ||
export { getUpdatePetUrl, updatePet } from './updatePet.ts' | ||
export { getUpdatePetWithFormUrl, updatePetWithForm } from './updatePetWithForm.ts' | ||
export { getUploadFileUrl, uploadFile } from './uploadFile.ts' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.