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.
feat: Removal of
group.output
in favour of group.name
(no need to …
…specify the output/root)
- Loading branch information
1 parent
aee3979
commit f70cb2b
Showing
181 changed files
with
2,928 additions
and
2,192 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,20 @@ | ||
--- | ||
"@kubb/plugin-svelte-query": major | ||
"@kubb/plugin-react-query": major | ||
"@kubb/plugin-solid-query": major | ||
"@kubb/plugin-vue-query": major | ||
"@kubb/plugin-client": major | ||
"@kubb/plugin-faker": major | ||
"@kubb/plugin-redoc": major | ||
"@kubb/plugin-msw": major | ||
"@kubb/plugin-oas": major | ||
"@kubb/plugin-swr": major | ||
"@kubb/plugin-zod": major | ||
"@kubb/plugin-ts": major | ||
"@kubb/react": major | ||
"@kubb/core": major | ||
"@kubb/cli": major | ||
"@kubb/fs": major | ||
--- | ||
|
||
Removal of `group.output` in favour of `group.name`(no need to specify the output/root) |
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
12 changes: 12 additions & 0 deletions
12
examples/advanced/src/gen/clients/axios/petService/petService.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { addPet } from './addPet.ts' | ||
import { deletePet } from './deletePet.ts' | ||
import { findPetsByStatus } from './findPetsByStatus.ts' | ||
import { findPetsByTags } from './findPetsByTags.ts' | ||
import { getPetById } from './getPetById.ts' | ||
import { updatePet } from './updatePet.ts' | ||
import { updatePetWithForm } from './updatePetWithForm.ts' | ||
import { uploadFile } from './uploadFile.ts' | ||
|
||
export function petService() { | ||
return { updatePet, addPet, findPetsByStatus, findPetsByTags, getPetById, updatePetWithForm, deletePet, uploadFile } | ||
} |
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 +1,2 @@ | ||
export { createPets } from './createPets.ts' | ||
export { petsService } from './petsService.ts' |
5 changes: 5 additions & 0 deletions
5
examples/advanced/src/gen/clients/axios/petsService/petsService.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { createPets } from './createPets.ts' | ||
|
||
export function petsService() { | ||
return { createPets } | ||
} |
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: 11 additions & 0 deletions
11
examples/advanced/src/gen/clients/axios/userService/userService.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { createUser } from './createUser.ts' | ||
import { createUsersWithListInput } from './createUsersWithListInput.ts' | ||
import { deleteUser } from './deleteUser.ts' | ||
import { getUserByName } from './getUserByName.ts' | ||
import { loginUser } from './loginUser.ts' | ||
import { logoutUser } from './logoutUser.ts' | ||
import { updateUser } from './updateUser.ts' | ||
|
||
export function userService() { | ||
return { createUser, createUsersWithListInput, loginUser, logoutUser, getUserByName, updateUser, deleteUser } | ||
} |
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,32 +1,32 @@ | ||
export type { CreatePetsMutationKeySWR } from './petsSWRController/useCreatePetsSWR.ts' | ||
export type { AddPetMutationKeySWR } from './petSWRController/useAddPetSWR.ts' | ||
export type { DeletePetMutationKeySWR } from './petSWRController/useDeletePetSWR.ts' | ||
export type { FindPetsByStatusQueryKeySWR } from './petSWRController/useFindPetsByStatusSWR.ts' | ||
export type { FindPetsByTagsQueryKeySWR } from './petSWRController/useFindPetsByTagsSWR.ts' | ||
export type { GetPetByIdQueryKeySWR } from './petSWRController/useGetPetByIdSWR.ts' | ||
export type { UpdatePetMutationKeySWR } from './petSWRController/useUpdatePetSWR.ts' | ||
export type { UpdatePetWithFormMutationKeySWR } from './petSWRController/useUpdatePetWithFormSWR.ts' | ||
export type { UploadFileMutationKeySWR } from './petSWRController/useUploadFileSWR.ts' | ||
export type { CreateUsersWithListInputMutationKeySWR } from './userSWRController/useCreateUsersWithListInputSWR.ts' | ||
export type { CreateUserMutationKeySWR } from './userSWRController/useCreateUserSWR.ts' | ||
export type { DeleteUserMutationKeySWR } from './userSWRController/useDeleteUserSWR.ts' | ||
export type { GetUserByNameQueryKeySWR } from './userSWRController/useGetUserByNameSWR.ts' | ||
export type { LoginUserQueryKeySWR } from './userSWRController/useLoginUserSWR.ts' | ||
export type { LogoutUserQueryKeySWR } from './userSWRController/useLogoutUserSWR.ts' | ||
export type { UpdateUserMutationKeySWR } from './userSWRController/useUpdateUserSWR.ts' | ||
export { createPetsMutationKeySWR, useCreatePetsSWR } from './petsSWRController/useCreatePetsSWR.ts' | ||
export { addPetMutationKeySWR, useAddPetSWR } from './petSWRController/useAddPetSWR.ts' | ||
export { deletePetMutationKeySWR, useDeletePetSWR } from './petSWRController/useDeletePetSWR.ts' | ||
export { findPetsByStatusQueryKeySWR, findPetsByStatusQueryOptionsSWR, useFindPetsByStatusSWR } from './petSWRController/useFindPetsByStatusSWR.ts' | ||
export { findPetsByTagsQueryKeySWR, findPetsByTagsQueryOptionsSWR, useFindPetsByTagsSWR } from './petSWRController/useFindPetsByTagsSWR.ts' | ||
export { getPetByIdQueryKeySWR, getPetByIdQueryOptionsSWR, useGetPetByIdSWR } from './petSWRController/useGetPetByIdSWR.ts' | ||
export { updatePetMutationKeySWR, useUpdatePetSWR } from './petSWRController/useUpdatePetSWR.ts' | ||
export { updatePetWithFormMutationKeySWR, useUpdatePetWithFormSWR } from './petSWRController/useUpdatePetWithFormSWR.ts' | ||
export { uploadFileMutationKeySWR, useUploadFileSWR } from './petSWRController/useUploadFileSWR.ts' | ||
export { createUsersWithListInputMutationKeySWR, useCreateUsersWithListInputSWR } from './userSWRController/useCreateUsersWithListInputSWR.ts' | ||
export { createUserMutationKeySWR, useCreateUserSWR } from './userSWRController/useCreateUserSWR.ts' | ||
export { deleteUserMutationKeySWR, useDeleteUserSWR } from './userSWRController/useDeleteUserSWR.ts' | ||
export { getUserByNameQueryKeySWR, getUserByNameQueryOptionsSWR, useGetUserByNameSWR } from './userSWRController/useGetUserByNameSWR.ts' | ||
export { loginUserQueryKeySWR, loginUserQueryOptionsSWR, useLoginUserSWR } from './userSWRController/useLoginUserSWR.ts' | ||
export { logoutUserQueryKeySWR, logoutUserQueryOptionsSWR, useLogoutUserSWR } from './userSWRController/useLogoutUserSWR.ts' | ||
export { updateUserMutationKeySWR, useUpdateUserSWR } from './userSWRController/useUpdateUserSWR.ts' | ||
export type { AddPetMutationKeySWR } from './petController/useAddPetSWR.ts' | ||
export type { DeletePetMutationKeySWR } from './petController/useDeletePetSWR.ts' | ||
export type { FindPetsByStatusQueryKeySWR } from './petController/useFindPetsByStatusSWR.ts' | ||
export type { FindPetsByTagsQueryKeySWR } from './petController/useFindPetsByTagsSWR.ts' | ||
export type { GetPetByIdQueryKeySWR } from './petController/useGetPetByIdSWR.ts' | ||
export type { UpdatePetMutationKeySWR } from './petController/useUpdatePetSWR.ts' | ||
export type { UpdatePetWithFormMutationKeySWR } from './petController/useUpdatePetWithFormSWR.ts' | ||
export type { UploadFileMutationKeySWR } from './petController/useUploadFileSWR.ts' | ||
export type { CreatePetsMutationKeySWR } from './petsController/useCreatePetsSWR.ts' | ||
export type { CreateUsersWithListInputMutationKeySWR } from './userController/useCreateUsersWithListInputSWR.ts' | ||
export type { CreateUserMutationKeySWR } from './userController/useCreateUserSWR.ts' | ||
export type { DeleteUserMutationKeySWR } from './userController/useDeleteUserSWR.ts' | ||
export type { GetUserByNameQueryKeySWR } from './userController/useGetUserByNameSWR.ts' | ||
export type { LoginUserQueryKeySWR } from './userController/useLoginUserSWR.ts' | ||
export type { LogoutUserQueryKeySWR } from './userController/useLogoutUserSWR.ts' | ||
export type { UpdateUserMutationKeySWR } from './userController/useUpdateUserSWR.ts' | ||
export { addPetMutationKeySWR, useAddPetSWR } from './petController/useAddPetSWR.ts' | ||
export { deletePetMutationKeySWR, useDeletePetSWR } from './petController/useDeletePetSWR.ts' | ||
export { findPetsByStatusQueryKeySWR, findPetsByStatusQueryOptionsSWR, useFindPetsByStatusSWR } from './petController/useFindPetsByStatusSWR.ts' | ||
export { findPetsByTagsQueryKeySWR, findPetsByTagsQueryOptionsSWR, useFindPetsByTagsSWR } from './petController/useFindPetsByTagsSWR.ts' | ||
export { getPetByIdQueryKeySWR, getPetByIdQueryOptionsSWR, useGetPetByIdSWR } from './petController/useGetPetByIdSWR.ts' | ||
export { updatePetMutationKeySWR, useUpdatePetSWR } from './petController/useUpdatePetSWR.ts' | ||
export { updatePetWithFormMutationKeySWR, useUpdatePetWithFormSWR } from './petController/useUpdatePetWithFormSWR.ts' | ||
export { uploadFileMutationKeySWR, useUploadFileSWR } from './petController/useUploadFileSWR.ts' | ||
export { createPetsMutationKeySWR, useCreatePetsSWR } from './petsController/useCreatePetsSWR.ts' | ||
export { createUsersWithListInputMutationKeySWR, useCreateUsersWithListInputSWR } from './userController/useCreateUsersWithListInputSWR.ts' | ||
export { createUserMutationKeySWR, useCreateUserSWR } from './userController/useCreateUserSWR.ts' | ||
export { deleteUserMutationKeySWR, useDeleteUserSWR } from './userController/useDeleteUserSWR.ts' | ||
export { getUserByNameQueryKeySWR, getUserByNameQueryOptionsSWR, useGetUserByNameSWR } from './userController/useGetUserByNameSWR.ts' | ||
export { loginUserQueryKeySWR, loginUserQueryOptionsSWR, useLoginUserSWR } from './userController/useLoginUserSWR.ts' | ||
export { logoutUserQueryKeySWR, logoutUserQueryOptionsSWR, useLogoutUserSWR } from './userController/useLogoutUserSWR.ts' | ||
export { updateUserMutationKeySWR, useUpdateUserSWR } from './userController/useUpdateUserSWR.ts' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.