Skip to content

Commit 2714595

Browse files
committed
update packages
1 parent e4d5fbc commit 2714595

86 files changed

Lines changed: 4855 additions & 772 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.skills/components-generators/SKILL.md

Lines changed: 0 additions & 46 deletions
This file was deleted.

.skills/plugin-architecture/SKILL.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

examples/advanced/kubb-log.log

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export { getAddFilesUrl, addFiles } from './addFiles.ts'
2+
export { getAddPetUrl, addPet } from './addPet.ts'
3+
export { getDeletePetUrl, deletePet } from './deletePet.ts'
4+
export { getFindPetsByStatusUrl, findPetsByStatus } from './findPetsByStatus.ts'
5+
export { getFindPetsByTagsUrl, findPetsByTags } from './findPetsByTags.ts'
6+
export { getGetPetByIdUrl, getPetById } from './getPetById.ts'
7+
export { petService } from './petService.ts'
8+
export { getUpdatePetUrl, updatePet } from './updatePet.ts'
9+
export { getUpdatePetWithFormUrl, updatePetWithForm } from './updatePetWithForm.ts'
10+
export { getUploadFileUrl, uploadFile } from './uploadFile.ts'
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export { getCreatePetsUrl, createPets } from './createPets.ts'
2+
export { petsService } from './petsService.ts'
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export { getCreateUserUrl, createUser } from './createUser.ts'
2+
export { getCreateUsersWithListInputUrl, createUsersWithListInput } from './createUsersWithListInput.ts'
3+
export { getDeleteUserUrl, deleteUser } from './deleteUser.ts'
4+
export { getGetUserByNameUrl, getUserByName } from './getUserByName.ts'
5+
export { getLoginUserUrl, loginUser } from './loginUser.ts'
6+
export { getLogoutUserUrl, logoutUser } from './logoutUser.ts'
7+
export { getUpdateUserUrl, updateUser } from './updateUser.ts'
8+
export { userService } from './userService.ts'
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export { addFilesMutationKey, addFilesMutationOptions, useAddFiles } from './useAddFiles.ts'
2+
export { addPetMutationKey, addPetMutationOptions, useAddPet } from './useAddPet.ts'
3+
export { deletePetMutationKey, deletePetMutationOptions, useDeletePet } from './useDeletePet.ts'
4+
export { findPetsByStatusQueryKey, findPetsByStatusQueryOptions, useFindPetsByStatus } from './useFindPetsByStatus.ts'
5+
export { findPetsByTagsQueryKey, findPetsByTagsQueryOptions, useFindPetsByTags } from './useFindPetsByTags.ts'
6+
export { findPetsByTagsInfiniteQueryKey, findPetsByTagsInfiniteQueryOptions, useFindPetsByTagsInfinite } from './useFindPetsByTagsInfinite.ts'
7+
export { getPetByIdQueryKey, getPetByIdQueryOptions, useGetPetById } from './useGetPetById.ts'
8+
export { updatePetMutationKey, updatePetMutationOptions, useUpdatePet } from './useUpdatePet.ts'
9+
export { updatePetWithFormMutationKey, updatePetWithFormMutationOptions, useUpdatePetWithForm } from './useUpdatePetWithForm.ts'
10+
export { uploadFileMutationKey, uploadFileMutationOptions, useUploadFile } from './useUploadFile.ts'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { createPetsMutationKey, createPetsMutationOptions, useCreatePets } from './useCreatePets.ts'
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export { createUserMutationKey, createUserMutationOptions, useCreateUser } from './useCreateUser.ts'
2+
export { createUsersWithListInputMutationKey, createUsersWithListInputMutationOptions, useCreateUsersWithListInput } from './useCreateUsersWithListInput.ts'
3+
export { deleteUserMutationKey, deleteUserMutationOptions, useDeleteUser } from './useDeleteUser.ts'
4+
export { getUserByNameQueryKey, getUserByNameQueryOptions, useGetUserByName } from './useGetUserByName.ts'
5+
export { loginUserQueryKey, loginUserQueryOptions, useLoginUser } from './useLoginUser.ts'
6+
export { logoutUserQueryKey, logoutUserQueryOptions, useLogoutUser } from './useLogoutUser.ts'
7+
export { updateUserMutationKey, updateUserMutationOptions, useUpdateUser } from './useUpdateUser.ts'
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
export { addFilesStatus200, addFilesStatus405, addFilesData, addFilesResponse } from './addFiles.ts'
2+
export { addPetStatus405, addPetStatusDefault, addPetData, addPetResponse } from './addPet.ts'
3+
export { deletePetHeaderApiKey, deletePetPathPetId, deletePetStatus400, deletePetResponse } from './deletePet.ts'
4+
export { findPetsByStatusPathStepId, findPetsByStatusStatus200, findPetsByStatusStatus400, findPetsByStatusResponse } from './findPetsByStatus.ts'
5+
export {
6+
findPetsByTagsQueryTags,
7+
findPetsByTagsQueryPage,
8+
findPetsByTagsQueryPageSize,
9+
findPetsByTagsHeaderXEXAMPLE,
10+
findPetsByTagsStatus200,
11+
findPetsByTagsStatus400,
12+
findPetsByTagsResponse,
13+
} from './findPetsByTags.ts'
14+
export { getPetByIdPathPetId, getPetByIdStatus200, getPetByIdStatus400, getPetByIdStatus404, getPetByIdResponse } from './getPetById.ts'
15+
export {
16+
updatePetStatus200,
17+
updatePetStatus202,
18+
updatePetStatus400,
19+
updatePetStatus404,
20+
updatePetStatus405,
21+
updatePetData,
22+
updatePetResponse,
23+
} from './updatePet.ts'
24+
export {
25+
updatePetWithFormPathPetId,
26+
updatePetWithFormQueryName,
27+
updatePetWithFormQueryStatus,
28+
updatePetWithFormStatus405,
29+
updatePetWithFormResponse,
30+
} from './updatePetWithForm.ts'
31+
export { uploadFilePathPetId, uploadFileQueryAdditionalMetadata, uploadFileStatus200, uploadFileData, uploadFileResponse } from './uploadFile.ts'

0 commit comments

Comments
 (0)